/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Raleway", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: linear-gradient(to right, #ffffff, #ff9a9e, #fad0c4);

  /* Background color for the entire website, including individual sections */
  --default-color: #2f3138;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0e1b4d;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f82249;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.65);
  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f82249;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f2f3;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000820;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #001553;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

* {
  font-family: 'Poppins', sans-serif;
  /* Change 'Poppins' to your preferred font */
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/



body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  
}

#about .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.row {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; /* This ensures the content is centered properly */
}

.content {
  text-align: left; /* Keeps the left-aligned text */
}

a {
  color: black;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: bold;
}

/* modal form */

/* sub heading */
.sub-heading {
  font-style: italic;

  color: #03152e;
}

/* sub heading end */

.company_link {
  color: red;
}

/* gallery title */
.gallery-title {
  font-style: italic;
  font-weight: bold;
  font-size: 1.0rem;
  margin-bottom: 0.5px;
  background: linear-gradient(45deg, #ff4500, #ffae42, #ff0000, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* gallery title end */

/* animated style */
.animated-image {
  animation: bounce 2s infinite;
  height: 23rem;
  margin-top: 25px;
  margin-left: 51px;
  border-radius: 10px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.about-animated {
  animation: pulse 2s infinite alternate;
  height: 23rem;
  width: 31rem;
  margin-top: 26px;
  border-radius: 10px;
  margin-left: 38px;
}


@keyframes pulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.about-story {
  animation: pulse 2s infinite alternate;
  height: 23rem;
  margin-top: 25px;
  margin-left: 10px;
  border-radius: 10px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.animated-vission {
  animation: shake 0.5s infinite alternate;
  height: 23rem;
  margin-top: 20px;
  border-radius: 10px;
}

@keyframes shake {
  0% {
    transform: translateX(-5px);
  }

  100% {
    transform: translateX(5px);
  }
}

.bouncing-icon {

  animation: bounce 3s infinite, pulse 1s infinite;

}

/* animated style end*/

/* button gallery */
.view-more-btn {
  font-size: 8px;
  padding: 7px;
  text-decoration: none;
  color: #000000;
  background: #000000;
  padding: 8px 14px;
  border-radius: 5px;
  transition: 0.3s ease;
}

.view-small-btn {
  font-size: 12px;
  padding: 2px 4px;
  border: none;
  background: #ffd700;
  color: #000;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
  transition: 0.3s ease;
}

.small-btn:hover {
  background: #ffae42;
}

/* button gallery end */


/* Whatsaapp icon */
.fixed-whatsapp-button {
  position: fixed;
  bottom: 64px;
  right: 8px;
  background-color: #25D366;
  color: white;
  font-size: 35px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-decoration: none;
}

.fixed-whatsapp-button:hover {
  background-color: #1EBE5D;
}

/* Whatsaapp icon end */

/* call icon */
.fixed-call-button {
  position: fixed;
  bottom: 65px; 
  left: 20px;
  background: linear-gradient(135deg, #007bff, #00c6ff); 
  color: rgb(255, 255, 255);
  padding: 15px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 22px;
  z-index: 999;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.fixed-call-button:hover {
  transform: scale(1.1);
  background-color: rgb(3, 3, 111);
}
/* call icon end */

/* fixed enquiry button */

@media (min-width: 992px) {
  .fixed-buttons-left {
    display: none !important;
  }
}

.fixed-buttons-left {
  position: fixed;
  right: 0;
  top: 15%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
  animation: blinkButton 3s infinite;
}

@keyframes blinkButton {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.fixed-buttons-left a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 8px 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px 0 0 30px;
  color: white;
  background: linear-gradient(120deg, #c40202 0%, #c10000 40%, #ff0000 50%, #da0000 60%, #ff0000 100%);
  background-size: 300% 300%;
  animation: whiteStripeBlink 3s infinite;
  box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.fixed-buttons-left a:hover {
  background: white !important;
  color: black !important;
}

.fixed-buttons-left a:hover lord-icon {
  filter: none !important;
}

.fixed-buttons-left lord-icon {
  width: 65px;
  height: 65px;
}

/* Keyframe for subtle moving white stripe */
@keyframes whiteStripeBlink {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* fixed enquiry button end */


/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* enquiry form *//* Inquiry Form */
.page-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  overflow: hidden;
  z-index: 1;
}


@keyframes float {

  0%,
  100% {
      transform: translateY(0) scale(1);
  }

  50% {
      transform: translateY(-20px) scale(1.05);
  }
}

/* Premium Card */
.premium-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 10px 25px rgba(0, 0, 0, 0.05);
  ;
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
  perspective: 1000px;
  margin: 2rem 0;
}

.card-inner {
  position: relative;
  padding: 3rem;
  z-index: 1;
}

.card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
  z-index: -1;
}

/* 3D Tilt Container */
.tilt-container {
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

/* Progress Steps */
.progress-container {
  margin-bottom: 2.5rem;
}

.progress-bar {
  height: 6px;
  background-color: rgba(203, 213, 225, 0.5);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  border-radius: 10px;
  transition: width 0.5s ease;
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.form-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: -1.08rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.form-header .subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 80%;
  margin: 0 auto;
}

/* Premium Form */
.premium-form {
  position: relative;
}

.form-step {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }

  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.step-title {
  margin-bottom: 2rem;
}

.step-title h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-title h3 i {
  color: #6366f1;
}

.step-title p {
  color: #64748b;
  font-size: 1rem;
}

/* Custom Floating Labels */
.custom-floating {
  position: relative;
}

.input-group {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.29);
  transition: all 0.3s ease;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.input-group:focus-within {
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.1);
  border-color: #6366f1;
}

.input-group-text {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #6366f1;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
}

.form-control,
.form-select {
  border: none;
  padding: 1rem 1.25rem;
  height: auto;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-family);
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.9);
}

.form-floating label {
  padding-left: 4rem;
  color: #64748b;
  font-weight: 400;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  transform: scale(0.85) translateY(-0.75rem) translateX(-0.5rem);
  color: #6366f1;
  opacity: 1;
}

.form-progress {
  height: 3px;
  width: 0;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  transition: width 0.3s ease;
  margin-top: 2px;
  border-radius: 3px;
}

.form-floating:focus-within .form-progress {
  width: 100%;
}

.message-group {
  min-height: 150px;
}

textarea.form-control {
  min-height: 150px;
  resize: none;
}

.character-counter {
  text-align: right;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* Contact Preference */


/* Form Navigation */
.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
}

.btn-prev,
.btn-next,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-prev {
  background: rgba(203, 213, 225, 0.3);
  color: #64748b;
}

.btn-prev:hover {
  background: rgba(203, 213, 225, 0.5);
  transform: translateX(-3px);
}

.btn-next,
.btn-submit {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-next:hover,
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-submit {
  min-width: 180px;
  position: relative;
  overflow: hidden;
  margin-left: 35%;
}

.btn-icon {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.btn-submit:hover .btn-icon {
  opacity: 1;
  transform: translateX(0);
}

.btn-submit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn-submit:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
      transform: scale(0, 0);
      opacity: 0.5;
  }

  100% {
      transform: scale(20, 20);
      opacity: 0;
  }
}

/* Validation Styles */
.is-invalid {
  border-color: var(--error-color) !important;
}

.invalid-feedback {
  color: var(--error-color);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.invalid-feedback i {
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .card-inner {
      padding: 2.5rem;
  }

  .form-header h2 {
      font-size: 2rem;
  }

  .form-header .subtitle {
      font-size: 1rem;
      max-width: 90%;
  }

  .step-icon {
      width: 45px;
      height: 45px;
      font-size: 1.1rem;
  }

  .step-label {
      font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .card-inner {
      padding: 2rem 1.5rem;
  }

  .form-header h2 {
      font-size: 1.8rem;
  }

  .form-header .subtitle {
      font-size: 0.95rem;
      max-width: 100%;
  }

  .step-title h3 {
      font-size: 1.3rem;
  }

  .step-title p {
      font-size: 0.95rem;
  }

  .step-icon {
      width: 40px;
      height: 40px;
      font-size: 1rem;
  }

  .step-label {
      font-size: 0.75rem;
  }

  .preference-options {
      flex-direction: column;
  }

  .preference-option {
      width: 100%;
  }

  .btn-prev,
  .btn-next,
  .btn-submit {
      padding: 0.7rem 1.25rem;
      font-size: 0.95rem;
  }
  .btn-submit {
    min-width: 140px;
    position: relative;
    overflow: hidden;
    margin-left: 28%;
  }
}

@media (max-width: 576px) {
  .steps-container {
      display: none;
  }

  .form-header h2 {
      font-size: 1.6rem;
  }

  .form-header .subtitle {
      font-size: 0.9rem;
  }

  .success-message h3 {
      font-size: 1.6rem;
  }

  .success-message p {
      font-size: 0.95rem;
      max-width: 100%;
  }
}

/* enquiry form end */

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* testimonial */
.bg-colour-testimonial{
  background: linear-gradient(135deg, #bfbfde, #16213e); /* Dark Gradient */
    color: white;  /* Text color */
    padding: 40px;
    text-align: center;
    border-radius: 10px;
}
.testimonial-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8EC5FC, #E0C3FC);
  padding: 50px;
  color: #fff;
  min-height: 100vh;
  margin-bottom: -60px;
}

.testimonial-container {
  display: flex;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  width: 100%;
  transition: 0.3s ease-in-out;
  margin-top: 4rem;

}

.testimonial-container:hover {
  transform: scale(1.02);
}

.testimonial-image {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #f9f9f9;
}

.testimonial-image img {
  width: 100%;
  max-width: 250px;
  height: auto;
}

.testimonial-form {
  width: 60%;
  padding: 40px;
}

.testimonial-form h2 {
  color: #333;
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.testimonial-form label {
  display: block;
  font-weight: 600;
  color: #555;
  margin-top: 10px;
  font-size: 14px;
}

.testimonial-form input,
.testimonial-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 16px;
  background: #f3f3f3;
  transition: 0.3s ease-in-out;
}

.testimonial-form input:focus,
.testimonial-form textarea:focus {
  border-color: #6a11cb;
  background: #fff;
}

.testimonial-form textarea {
  resize: none;
  height: 100px;
}

/* Star Rating */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  font-size: 24px;
  cursor: pointer;
  margin-top: 5px;
}

.star-rating input {
  display: none;
}

.star-rating label {
  color:  #8a8a8a;
  padding: 5px;
  transition: 0.3s;
  font-size: 2rem;
  margin-top: -10px;
  width: 15%;
}


.star-rating input:checked~label,
.star-rating label:hover,
.star-rating label:hover~label {
  color: #ffbb33;
}

.testimonial-form button {
  width: 40%;
  padding: 5px 0px;
  margin-top: 20px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #2575fc, #6a11cb);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  font-weight: bold;
}

.testimonial-form button:hover {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  transform: translateY(-2px);
}

#testimonials {
  margin-bottom: -8.6rem;
}


/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    max-width: 90%;
    margin-top: 2rem;
  }

  .testimonial-image {
    width: 100%;
    padding: 15px;
  }

  .testimonial-image img {
    max-width: 200px;
  }

  .testimonial-form {
    width: 100%;
    padding: 20px;
  }

  .testimonial-form h2 {
    font-size: 20px;
  }

  .testimonial-form label {
    font-size: 16px;
  }

  .testimonial-form input,
  .testimonial-form textarea {
    font-size: 14px;
    padding: 10px;
  }

  .star-rating {
    font-size: 20px;
  }


  .testimonial-form button {
    width: 37%;
    margin-left: 5.8rem;
    font-size: 12px;
    padding: 6px 0;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 30px 15px;
  }

  .testimonial-container {
    max-width: 100%;
  }

  .testimonial-form {
    padding: 15px;
  }

  .testimonial-form h2 {
    font-size: 18px;
  }

  .testimonial-form input,
  .testimonial-form textarea {
    font-size: 12px;
    padding: 8px;
  }

  .star-rating {
    font-size: 18px;
  }

  .testimonial-form button {
    width: 37%;
    margin-left: 5.8rem;
    font-size: 12px;
    padding: 6px 0;
  }
}


/* testimonial end */

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

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

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: border-box;
  /* Use border-box for better spacing control */
  min-height: 320px;
  /* Adjust based on content */
  max-width: 600px;
  /* Set a reasonable width */
  width: 100%;
  /* Ensure it adapts to the container */
  padding: 20px;
  margin: 10px auto;
  /* Center it horizontally */
  box-shadow: 0px 4px 10px rgba(11, 6, 6, 0.5);
  border-radius: 8px;
  /* Optional: for rounded corners */
  background: #fff;
  /* Optional: Add a background */
  text-align: center;
  /* Ensures text is centered */
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  top: 23%;
  left: 36%;
  border-radius: 50%;
  /* position: relative; */
  z-index: 2;
  display: block;
  margin: 8px auto 0 auto;
  /* Centers the image */
  box-shadow: 0 0 10px 6px var(--background-color);
  /* Blurred border effect */
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0px;
  margin-top: 6%;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 20px 20px;
  background: color-mix(in srgb, #382f2f, #00000017 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  text-align: center;
  max-height: 112px;
  height: 200px;

}


.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  visibility: visible !important;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}


.testimonial-animated-text {
  color: blue;
  text-align: center;
}

.centered-rating {
  text-align: center;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  background: #0008207c;
  height: 65px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 9.07rem;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}
@media (max-width: 768px) {
  .header{
    margin-top: 2rem;
  }

}



.scrolled .header {
  --background-color: rgb(9 12 37);
  background-color: var(--background-color);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.3);
}

/* Global Header on Scroll
------------------------------*/

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.footer-top .row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
}


.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 16px;
  position: relative;
  margin-top: 4rem;
  padding: 0px 0;
}



.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 20px;
}

.footer .footer-about .logo img {
  max-height: 45px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 15px;
  color: (in srgb, var(--default-color), transparent 25%);
  margin-bottom: 7px;
}

.footer-description {
  color: #6c757d;
}

.footer h4 {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #6c757d;
}

.footer .footer-links ul li {
  padding: 5px 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  font-size: 15px;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .map-container {
  height: 230px;
  width: 76%;
  border-radius: 8px;
  overflow: hidden;
}

.footer .social-links {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 8px;
  margin-left: -40%;
  font-size: 1px;
}
.footer-navs{
  margin-left:-6rem ;
}
.footer-navs_{
  margin-left:-16rem ;
}
@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.footer-subscribe {
  margin-top: 20px;
  color: white;
  margin-right: 28%;
  animation: blink 2s infinite;
}
@media (max-width: 768px) {
  .footer-subscribe {
    margin: 20px auto 7px auto;
    text-align: center;
    margin-right: 0;           /* Reset the large screen right margin */
    display: block;            /* Ensure it's block-level for margin auto to work */
  }
}
.footer .social-links a {
  font-size: 20px;
  background: linear-gradient(45deg, #ff0e0e, #ff4500, #ff6347, #ff1493, #ff0e0e);
  background-size: 300% 300%;
  color: white;
  padding: 10px;
  margin: 5px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  animation: moveColors 4s linear infinite;
}

@keyframes moveColors {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.footer .social-links a:hover {
  background: var(--accent-color);
  text-decoration: none;
}


.footer .subscribe-btn {
  background: var(--accent-color);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 0px 15px;
  border-radius: 30px;
  text-align: center;
  display: block;
  margin: 20px -19px;
  transition: 0.3s;
  text-decoration: none;
}

.footer .subscribe-btn:hover {
  background: var(--default-color);
  color: #000000;
}

.footer-logo {
  width: 165px;
  height: 11rem;
  margin-bottom: -28px;
  margin-top: -17%;
  margin-left: -13rem;
}

.subscribe-container {
  display: flex;
  align-items: center;
  background: rgb(255 255 255);
  border-radius: 20px;
  padding: 18px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 73%;
}



.subscribe-input {
  flex: 1;
  border: none;
  background: transparent;
  color: #010726;
  padding: 5px;
  outline: none;
  font-size: 16px;
}

.footer-contact p i {
  margin-right: 10px; /* Adds space between the icon and text */
  font-size: 18px; /* Adjust icon size if needed */
  color: #ffffff; /* Change to your preferred color */
}

.footer-contact p {
  display: flex;
  align-items: center;
}


.subscribe-btn {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  border: none;
  padding: 0px 18px;
  /* Increased padding for better button size */
  border-radius: 20px;
  /* Larger button with rounded corners */
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  /* Adjusted text size to fit button */
  transition: transform 0.3s;
  height: 40px;
  /* Increased button height */
  line-height: 40px;
  /* Ensures text is vertically centered */
}


.subscribe-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #2575fc, #6a11cb);
}


@media (max-width: 768px) {
  .footer .container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }

  .footer-about {
    order: 3;
    width: 100%;
  }

  .footer .footer-links {
    width: 48%;
    text-align: left;
  }

  .footer .footer-links:first-child {
    order: 1;
  }

  .footer .footer-links:last-child {
    order: 2;
    text-align: right;
  }

  .footer .col-lg-4.col-md-6 {
    order: 4;
    width: 100%;
    text-align: center;
  }

  .footer .map-container {
    width: 100%;
    height: 19rem;
    margin-top: 15px;
  }

  .subscribe-container {
    width: 100%;
    justify-content: center;
  }

  .subscribe-input {
    font-size: 14px;
  }

  .subscribe-btn {
    font-size: 14px;
    padding: 8px 20px;
  }

  .footer .social-links {
    text-align: center;
    margin-left: 0;
    margin-top: 15px;
  }

  .foot-bottom {
    text-align: center;
    padding: 10px 0;
  }

  .foot-content {
    flex-direction: column;
  }

  .foot-content p {
    text-align: center;
    margin-bottom: 5px;
  }
  .footer-logo {
    width: 66%;
    height: 15rem;
    margin-bottom: -28px;
    margin-top: -17%;
    margin-left: 3%;
  }
  .footer-navs{
    margin-left:0rem ;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.foot-bottom {
  background: #000820;
  /* Use your footer background color */
  padding: 10px 20px;
  font-size: 14px;
  color: white;
}

.foot-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  /* Ensures responsiveness */
}

.foot-content p {
  margin: 0;
  padding: 5px 0;

}

.foot-content .left {
  text-align: left;
}

.foot-content .right {
  text-align: right;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .foot-content {
    flex-direction: column;
    text-align: center;
  }

  .foot-content .left,
  .foot-content .right {
    text-align: center;
  }
}

.event-section {
  padding: 20px;
  margin: 10px 0;
  text-align: center;
}

.event-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.event-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.event-list li {
  padding: 8px 0;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: #000000;
  --heading-color: var(--contrast-color);
  --default-color: var(--contrast-color);
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: #ffffff;
  padding: 100px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  margin-bottom: -9%; 
}




@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
    margin-bottom: -32%;

  }
}

/* 


@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

section,
.section {
  color: var(--default-color);
  padding: 77px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  background: linear-gradient(90deg, 
  #ffc4c7,
    #fad0c4,  
    #fad0c4,  
    #d4c2ff,  
    #ffcccc, 
    #fffebd,    
  );


  background-size: 300% 300%;
  animation: gradientMove 6s infinite alternate ease-in-out;
  margin-bottom: -50px;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
} */

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: -4 px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 0px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  /* Initially hidden */
  height: 3px;
  top: 38px;
  background: linear-gradient(to right,
      rgb(139, 0, 0) 0%,
      /* Dark Red */
      rgb(178, 34, 34) 25%,
      /* Firebrick Red */
      rgb(220, 20, 60) 50%,
      /* Crimson */
      rgb(255, 99, 71) 75%,
      /* Light Red (Tomato) */
      rgb(255, 255, 255) 100%
      /* White */
    );

  left: 0;
  bottom: 0;

  /* Animation effect */
  animation: leftToRightBlink 2s infinite ease-in-out;
}

@keyframes leftToRightBlink {
  0% {
    width: 0;
  }

  50% {
    width: 100%;
  }

  /* Match previous width */

}

/* Unique Pop Sections */
.gallery-grid {
  text-align: center;
  margin-top: 40px;
}

.gallery-grid .grid {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.grid-item img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.grid-item img:hover {
  transform: scale(1.1);
}

/* Latest Uploads */
.latest-uploads {
  background: #f8f9fa;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
}

.latest-uploads marquee {
  font-size: 18px;
  font-weight: bold;
  color: #d9534f;
}

/* Counter Section */
.counter-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.counter-box {
  text-align: center;
  background: linear-gradient(135deg, #ff512f, #dd2476);
  padding: 20px;
  color: white;
  border-radius: 10px;
}

.counter-box h2 {
  font-size: 36px;
  margin: 0;
}

.counter-box p {
  font-size: 16px;
  margin: 5px 0 0;
}

/* Call to Action */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #ff512f, #dd2476);
  color: white;
  padding: 30px;
  width: 50%;
  margin-top: 40px;
  border-radius: 10px;
}

.cta-button {
  background: white;
  color: var(--heading-color);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.1s;
}

.cta-button:hover {
  background: #0056b3;
  color: white;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.about-colour-section {
  background: linear-gradient(135deg, #0d0538, #becee9); /* Gradient Color */
  padding: 60px 0; /* Add padding for better spacing */
  color: #fff; /* Change text color for better contrast */
}

.about-colour-section .content h2,
.about-colour-section .content p,
.about-colour-section .content ul li {
  color: #fff; /* Ensure readability on gradient background */
}

.about-colour-section .content ul li i {
  color: #ffdd57; /* Highlight checkmarks */
}



/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/
.speakers {
  --default-color: #d50606;
}


.speakers .member .member-info {
  position: absolute;
  padding: 15px 0;
  bottom: -7%;
  /* Keep it fixed at the bottom */
  width: 100%;
  /* Ensure full width */
  height: 47%;
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.speakers .member:hover .member-info {
  bottom: 0;
  /* Prevent movement on hover */
}

.speakers .member {
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}


.speakers .member .member-info-content h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 16px;
}

.speakers .member .member-info-content h4 a {
  color: var(--contrast-color);
}

.speakers .member .member-info-content h4 a:hover {
  color: var(--accent-color);
}

.speakers .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.speakers .member .social {
  text-align: center;
  padding-top: 10px;
}

.speakers .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0 4px;
  display: inline-block;
}

.speakers .member .social a:hover {
  color: var(--default-color);
}

.speakers .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.speakers .member:hover .member-info {
  bottom: 0;
}

.view-more-btn {
  font-size: 16px;
  color: #ffffff;
  /* Dark red text */
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: color 0.3s ease;
}

.view-more-btn:hover {
  color: #ffffff;
  /* Slightly brighter red on hover */
}


/* Owl Carousel Adjustments */
.owl-carousel .owl-item {
  display: flex;
  justify-content: center;
}

.owl-carousel .member {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}



/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
.schedule {
  --background-color: color-mix(in srgb, var(--alt-background-color), transparent 95%);
}

.schedule .nav-tabs {
  text-align: center;
  margin: auto;
  display: block;
  border-bottom: 0;
  margin-bottom: 30px;
}

.schedule .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
}

.schedule .nav-tabs a {
  border: none;
  border-radius: 50px;
  font-weight: 600;
  background-color: var(--heading-color);
  color: var(--contrast-color);
  padding: 10px 100px;
}

@media (max-width: 991px) {
  .schedule .nav-tabs a {
    padding: 8px 60px;
  }
}

@media (max-width: 767px) {
  .schedule .nav-tabs a {
    padding: 8px 50px;
  }
}

@media (max-width: 480px) {
  .schedule .nav-tabs a {
    padding: 8px 30px;
  }
}

.schedule .nav-tabs a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.schedule .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 30px auto;
}

@media (min-width: 991px) {
  .schedule .sub-heading {
    width: 75%;
  }
}

.schedule .tab-pane {
  transition: ease-in-out 0.2s;
}

.schedule .schedule-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
}

.schedule .schedule-item time {
  padding-bottom: 5px;
  display: inline-block;
}

.schedule .schedule-item .speaker {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 10px 10px 0;
}

.schedule .schedule-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}

.schedule .schedule-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.schedule .schedule-item h4 span {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: normal;
  font-size: 16px;
}

.schedule .schedule-item p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
.venue .container-fluid {
  margin-bottom: 3px;
}

.venue .venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.venue .venue-info {
  background: url("../img/venue-info-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

.venue .venue-info:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.venue .venue-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--contrast-color);
}

@media (max-width: 574px) {
  .venue .venue-info h3 {
    font-size: 24px;
  }
}

.venue .venue-info p {
  color: var(--contrast-color);
  margin-bottom: 0;
}

.venue .venue-gallery-container {
  padding-right: 12px;
}

.venue .venue-gallery {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
  padding: 12px;
}

.venue .venue-gallery img {
  transition: all ease-in-out 0.4s;
  border-radius: 7px;
}

.venue .venue-gallery:hover img {
  transform: scale(1.1);
}


/*--------------------------------------------------------------
# Hotels Section
--------------------------------------------------------------*/
.hotels .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
}

.hotels .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.hotels .card .card-img img {
  transition: 0.3s ease-in-out;
}

.hotels .card h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
  padding: 0 20px;
}

.hotels .card a {
  color: var(--heading-color);
  transition: 0.3;
}

.hotels .card a:hover {
  color: var(--accent-color);
}

.hotels .card .stars {
  padding: 0 20px;
  margin-bottom: 5px;
}

.hotels .card .stars i {
  color: #ffc107;
}

.hotels .card p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-style: italic;
  font-size: 15px;
}

.hotels .card:hover .card-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

.gallery {
  overflow: hidden;
}

.venue-gallery {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 10px;
}

.venue-gallery img {
  width: 100%;
  display: block;
}

/* Stylish Shadow Address Section */
.venue-gallery .shadow-address {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 80%;
  /* Controls width */
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(50, 50, 50, 0.7));
  /* Gradient effect */
  color: #fff;
  padding: 8px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  border-radius: 12px;
  /* Rounded effect */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  /* Soft shadow */
  letter-spacing: 1px;
  backdrop-filter: blur(5px);
  /* Blurred glass effect */
  text-transform: uppercase;
}

/* Adding a small glowing effect */
.venue-gallery .shadow-address::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.venue-gallery:hover .shadow-address::before {
  opacity: 1;
}


.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

.custom-lightbox {
  border: 2px solid #fff;
  display: block;
}

.custom-lightbox:hover {
  opacity: 0.8;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}

/*--------------------------------------------------------------
# Sponsors Section
--------------------------------------------------------------*/
.sponsors .clients-wrap {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.sponsors .client-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.sponsors .client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

@media (max-width: 640px) {
  .sponsors .client-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.sponsors .client-logo:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}
/* background colour */

.speaker-bg{
  margin-top: -3.3rem;
}

.gallery-bg{
  
  margin-top: -9rem;
}

.testimonial-bg{
  
  margin-top: -9rem;
}
.vd-gallery-bg{
  margin-top: -9rem;
}
.mission-bg {
  
  margin-top: -8rem;
}

.vision-bg{
  margin-top: -8rem;
}

.about-mission-bg{
  margin-top: -11rem;
  margin-bottom: 7px;
}

.founder-bg{
  margin-top: -7rem;
}


.choose-us-bg{
  margin-top: -6rem;
}



/* background colour end */

/* Mission vision start */
.mission {
  text-align: justify;
  margin-left: 0%;
}

.vision_img img {
  height: 320px;
  margin-bottom: 25%;
  margin-left: 10%;
  object-fit: cover;
}

.mission_img img {
  height: 350px;
  margin-bottom: 25%;
}

@media only screen and (max-width: 575.98px) {
  .vision_img img {
    height: 260px;
    object-fit: cover;
  }

  .mission_img img {
    height: 260px;
    margin-bottom: 10%;
    margin-left: 10%;
  }

  .mission {
    margin-left: 0%;
    margin-bottom: 10%;
  }
}

@media only screen and (max-width: 768px) {

  .animated_ .vision_img img,
  .mission_img img {
    height: 250px;
    margin-bottom: 15%;
    margin-left: 5%;
    /* Reduce margin for smaller screens */
    object-fit: cover;
  }

  .mission {
    margin-left: 0;
    margin-bottom: 10%;
    padding: 0 10px;
    /* Ensure better spacing */
  }

  .animated-image {
    animation: bounce 2s infinite;
    height: 20rem;
    margin-top: 25px;
    margin-left: -2px;
    border-radius: 10px;
  }

  .founder-bg{
    margin-top: -7rem;
    margin-bottom: -21%;
  }

  .about-animated {
    animation: pulse 2s infinite alternate;
    height: 18rem;
    width: 21rem;
    margin-top: 16px;
    margin-left: 21px;
  }

  .about-story {
    animation: pulse 2s infinite alternate;
    height: 18rem;
    width: 21rem;
    margin-top: 16px;
    margin-left: 21px;
  }

  .animated-vission {
    animation: shake 0.5s infinite alternate;
    height: 18rem;
    width: 21rem;
    margin-top: 16px;
    margin-left: 21px;
  }
}


/* Mission vision End */

/* Custom Underline Start */
.title-underline {
  position: relative;
  display: inline-block;
}

.title-underline::after {
  content: '';
  position: absolute;
  bottom: -5px;
  /* Adjust this to move the line closer or farther */
  left: 0;
  width: 0;
  /* Initially hidden */
  height: 2px;
  /* Thickness of the underline */
  background: linear-gradient(to right,
      rgb(139, 0, 0) 0%,
      /* Dark Red */
      rgb(178, 34, 34) 25%,
      /* Firebrick Red */
      rgb(220, 20, 60) 50%,
      /* Crimson */
      rgb(255, 99, 71) 75%,
      /* Light Red (Tomato) */
      rgb(255, 255, 255) 100%
      /* White */
    );

  /* Animation effect */
  animation: leftToRightBlink 2s infinite ease-in-out;
}

@keyframes leftToRightBlink {
  0% {
    width: 0;
  }

  50% {
    width: 100%;
  }

  100% {
    width: 0;
  }
}


/* cutome underline end */

/*--------------------------------------------------------------
# Buy Tickets Section
--------------------------------------------------------------*/
/* .buy-tickets .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
  position: relative;
}

.buy-tickets .pricing-item h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 24px;
}

.buy-tickets .pricing-item h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.buy-tickets .pricing-item h4 sup {
  font-size: 28px;
}

.buy-tickets .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.buy-tickets .pricing-item ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-align: left;
  line-height: 20px;
}

.buy-tickets .pricing-item ul li {
  padding-top: 15px;
  display: flex;
  align-items: center;
}

.buy-tickets .pricing-item ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.buy-tickets .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.buy-tickets .pricing-item ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.buy-tickets .pricing-item ul .na span {
  text-decoration: line-through;
}

.buy-tickets .buy-btn {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  font-family: var(--heading-font);
}

.buy-tickets .buy-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.buy-tickets .featured {
  background: var(--accent-color);
}

.buy-tickets .featured h3,
.buy-tickets .featured h4,
.buy-tickets .featured h4 span,
.buy-tickets .featured ul,
.buy-tickets .featured ul .na,
.buy-tickets .featured ul i,
.buy-tickets .featured ul .na i {
  color: var(--contrast-color);
}

.buy-tickets .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.buy-tickets .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  color: var(--contrast-color);
} */

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
@keyframes borderAnimation {
  0% {
    border-color: red;
  }

  25% {
    border-color: rgb(0, 0, 0);
  }

  50% {
    border-color: rgb(169, 170, 169);
  }

  75% {
    border-color: yellow;
  }

  100% {
    border-color: rgb(74, 62, 62);
  }
}

.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid red;
  /* Default border color */
  animation: borderAnimation 3s infinite linear;
}


.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}



.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  border-radius: 7px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
}

.contact .php-email-form:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  /* Increased shadow */
  transform: scale(1.05);
  /* Slightly enlarges on hover */
}

.contact .info-item {
  display: flex;
  align-items: center;
  padding: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid red;
  animation: borderAnimation 3s infinite linear;
  text-align: left; /* Align text to the left */
}

.contact .info-item i {
  font-size: 18px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
  margin-left: -16rem;
  margin-bottom: -7%;
}

.contact .info-content {
  flex-direction: column;
  align-items: center; /* Centers content horizontally */
  justify-content: center; /* Centers content vertically */
  text-align: center; /* Ensures text is also centered */
  margin-top: -15px;
  margin-left: 10px;
  width: 100%; /* Make it take full width */

}


.contact .info-item h3 {
  font-size: 18px;
  margin: 0;
  margin-left: 36px;
}

.contact .info-item p {
  font-size: 14px;
  margin: 0;
  line-height: 1.2;
  margin-left: 38px;
}




@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.info-item {
  background: white;
  border-radius: 15px;
  /* Rounded corners */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  /* Soft shadow */
  padding: 20px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover effect */
.info-item:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .details h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.events .details .social {
  margin-bottom: 15px;
}

.events .details .social a {
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.events .details .social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.events .details .social a i {
  font-size: 16px;
  line-height: 0;
}

.events .details p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


/* Speaker Carousel  */
button.carousel-control-next {
  background: #F82249;
  height: 3rem;
  position: absolute;
  top: 6.5rem;
  right: 1rem;
  border-radius: 50%;
  width: 3rem;
}

button.carousel-control-prev {
  background: #F82249;
  height: 3rem;
  position: absolute;
  top: 6.5rem;
  left: 1rem;
  border-radius: 50%;
  width: 3rem;
}

.carousel-control-next-icon {
  width: 20px;
}

.carousel-control-prev-icon {
  width: 20px;
}




/* Custom hero carousel start  */
/* Hero Section Styles */
/* Hero Section Styles */
.hero {
  width: 100%;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  padding: 0;
}

/* Custom Carousel Styles */
.custom-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.custom-carousel .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: transform 6s ease;
}

.custom-carousel .carousel-item.active {
  transform: translateX(0);
}

.custom-carousel .carousel-item.previous {
  transform: translateX(-100%);
}

.custom-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Styles */
.hero h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  margin-bottom: 30px;
}

#carouselId img {
  height: 100vh;
  object-fit: cover;
  width: 100%;
}



/* Keyframes for typewriter effect */
@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}


/* Keyframes for typewriter effect */
@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: orange;
  }
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}


.about-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 60px 0;
  color: #fff;
}

.about-info h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-info h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-info p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
}


.dark-background {
  background-color: rgba(0, 0, 0, 0.7);
}


#carouselId .about-info {
  overflow: hidden;
  position: relative;
  padding: 19px 0 15px 0;
  z-index: 2;
  width: 85%;
  backdrop-filter: blur(8px);
  background-color: rgb(108 70 70 / 15%);
  margin-top: 4rem;
}

#carouselId .about-info:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#carouselId .about-info h2 {
  color: var(--accent-color);
  font-size: 25px;
  font-weight: bold;
  background: linear-gradient(90deg, #00c6ff, #0072ff, #c82d5e, #ff1493);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 4s ease infinite;
  margin-bottom: 20px;
  text-align: center;


}

#carouselId .about-info h3 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: -6px;
  text-align: justify;
  background: linear-gradient(90deg, #00c6ff, #0072ff, #c82d5e, #ff1493);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 4s ease infinite;
}

#carouselId .about-info p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #fff;
}

.crc-perv-btn {
  margin-top: 10rem;
}

.crc-next-btn {
  margin-top: 10rem;
}

h2.carousel-h2 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: bold;
  background: linear-gradient(90deg, #ff4500, #ffae42, #ff0000, #ffd700);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 4s ease infinite;
  margin-bottom: 20px;
  margin-top: 9rem;

}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}



/* Custom hero carousel end */


/* pop-up button */

/* Overlay Background */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* Popup Box - Transparent Background */
.popup-box {
  background: transparent;
  width: 90%;
  max-width: 400px;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
  position: relative;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 6px;
  right: 7px;
  background: #b22222;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Popup Image */
.popup-box img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Show Popup */
.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* pop-up button end  */


/* call and whatsapp */
/* Styling for fixed buttons (Right Side) */
.fixed-buttons {
  position: fixed;
  right: -3px;
  /* Distance from the right */
  top: 50%;
  /* Center vertically */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* Reduce space between buttons */
  z-index: 1000;
}

/* Common styles for all buttons */
.fixed-buttons a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  /* Reduce space between icon and text */
  padding: 6px 10px;
  /* Smaller padding for compact look */
  font-size: 14px;
  /* Smaller font size */
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.8);
  /* Dark background */
  color: white;
  /* Default white text */
  transform: translateX(60%);
  /* Initially hidden */
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Hover Effect */
.fixed-buttons a:hover {
  transform: translateX(0);
  background-color: white;
  /* White background on hover */
  color: black !important;
  /* Black text on hover */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  /* Lighter box shadow */
}

/* Hover Effect for Icons */
.fixed-buttons a:hover lord-icon {
  filter: none !important;
}

/* Adjusting Lordicon size */
lord-icon {
  width: 28px !important;
  /* Smaller icon size */
  height: 28px !important;
  /* Smaller icon size */
  transition: transform 0.2s ease-in-out;
}

/* Hover effect to slightly increase icon size */
.fixed-buttons a:hover lord-icon {
  transform: scale(1.05);
}

/* call and whatsapp end */

/* play button */


.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 35px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.play-button i {
  font-size: 18px;
  color: #fff;
}

.play-button:hover {
  background: rgba(255, 0, 0, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

/* play button end */

/* billing form */
/* .billing-container {
  max-width: 900px;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}
.billing-section-title {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid #007bff;
  padding-bottom: 5px;
  margin-bottom: 20px;
} */
/* billing form end */


/* contact form */
.cotact-form-message {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 8px 15px;
  transition: 0.4s;
  border-radius: 55px;
  width: 26%;
  margin-left: 3%;
  margin-bottom: 40px;
}

.call-button-container {
  display: flex;
  justify-content: center;
  align-items: center;

}
@media (max-width: 480px) {
  .cotact-form-message {
    padding: 11px 0px;
    font-size: 17px;
    width: 40%;
  }
}

/* contact form end*/


/* 404 page */
@import url('https://fonts.googleapis.com/css?family=Audiowide&display=swap');

.page-nt-found {
  position: absolute;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  margin: 0px;
  background: radial-gradient(circle, #240015 0%, #12000b 100%);
  overflow: hidden;
}

.wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.page-not-found {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 150px;
  font-size: 32px;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  display: block;
  color: #12000a;
  font-weight: 300;
  font-family: Audiowide;
  text-shadow: 0px 0px 4px #12000a;
  animation: fadeInText 3s ease-in 3.5s forwards, flicker4 5s linear 7.5s infinite, hueRotate 6s ease-in-out 3s infinite;
}

#svgWrap_1,
#svgWrap_2 {
  position: absolute;
  height: auto;
  width: 600px;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#svgWrap_1,
#svgWrap_2,
.page-nt-found {
  animation: hueRotate 6s ease-in-out 3s infinite;
}

#id1_1,
#id2_1,
#id3_1 {
  stroke: #ff005d;
  stroke-width: 3px;
  fill: transparent;
  filter: url(#glow);
}

#id1_2,
#id2_2,
#id3_2 {
  stroke: #12000a;
  stroke-width: 3px;
  fill: transparent;
  filter: url(#glow);
}

#id3_1 {
  stroke-dasharray: 940px;
  stroke-dashoffset: -940px;
  animation: drawLine3 2.5s ease-in-out 0s forwards, flicker3 4s linear 4s infinite;
}

#id2_1 {
  stroke-dasharray: 735px;
  stroke-dashoffset: -735px;
  animation: drawLine2 2.5s ease-in-out 0.5s forwards, flicker2 4s linear 4.5s infinite;
}

#id1_1 {
  stroke-dasharray: 940px;
  stroke-dashoffset: -940px;
  animation: drawLine1 2.5s ease-in-out 1s forwards, flicker1 4s linear 5s infinite;
}

@keyframes drawLine1 {
  0% {
    stroke-dashoffset: -940px;
  }

  100% {
    stroke-dashoffset: 0px;
  }
}

@keyframes drawLine2 {
  0% {
    stroke-dashoffset: -735px;
  }

  100% {
    stroke-dashoffset: 0px;
  }
}

@keyframes drawLine3 {
  0% {
    stroke-dashoffset: -940px;
  }

  100% {
    stroke-dashoffset: 0px;
  }
}

@keyframes flicker1 {
  0% {
    stroke: #ff005d;
  }

  1% {
    stroke: transparent;
  }

  3% {
    stroke: transparent;
  }

  4% {
    stroke: #ff005d;
  }

  6% {
    stroke: #ff005d;
  }

  7% {
    stroke: transparent;
  }

  13% {
    stroke: transparent;
  }

  14% {
    stroke: #ff005d;
  }

  100% {
    stroke: #ff005d;
  }
}

@keyframes flicker2 {
  0% {
    stroke: #ff005d;
  }

  50% {
    stroke: #ff005d;
  }

  51% {
    stroke: transparent;
  }

  61% {
    stroke: transparent;
  }

  62% {
    stroke: #ff005d;
  }

  100% {
    stroke: #ff005d;
  }
}

@keyframes flicker3 {
  0% {
    stroke: #ff005d;
  }

  1% {
    stroke: transparent;
  }

  10% {
    stroke: transparent;
  }

  11% {
    stroke: #ff005d;
  }

  40% {
    stroke: #ff005d;
  }

  41% {
    stroke: transparent;
  }

  45% {
    stroke: transparent;
  }

  46% {
    stroke: #ff005d;
  }

  100% {
    stroke: #ff005d;
  }
}

@keyframes flicker4 {
  0% {
    color: #ff005d;
    text-shadow: 0px 0px 4px #ff005d;
  }

  30% {
    color: #ff005d;
    text-shadow: 0px 0px 4px #ff005d;
  }

  31% {
    color: #12000a;
    text-shadow: 0px 0px 4px #12000a;
  }

  32% {
    color: #ff005d;
    text-shadow: 0px 0px 4px #ff005d;
  }

  36% {
    color: #ff005d;
    text-shadow: 0px 0px 4px #ff005d;
  }

  37% {
    color: #12000a;
    text-shadow: 0px 0px 4px #12000a;
  }

  41% {
    color: #12000a;
    text-shadow: 0px 0px 4px #12000a;
  }

  42% {
    color: #ff005d;
    text-shadow: 0px 0px 4px #ff005d;
  }

  85% {
    color: #ff005d;
    text-shadow: 0px 0px 4px #ff005d;
  }

  86% {
    color: #12000a;
    text-shadow: 0px 0px 4px #12000a;
  }

  95% {
    color: #12000a;
    text-shadow: 0px 0px 4px #12000a;
  }

  96% {
    color: #ff005d;
    text-shadow: 0px 0px 4px #ff005d;
  }

  100% {
    color: #ff005d;
    text-shadow: 0px 0px 4px #ff005d;
  }
}


@keyframes hueRotate {
  0% {
    filter: hue-rotate(0deg);
  }

  50% {
    filter: hue-rotate(-120deg);
  }

  100% {
    filter: hue-rotate(0deg);
  }
}

/* 404 page end */



/* Founder Section */




/* blog */
.news-section {
  width: 80%;
  max-width: 1200px;
  /* Limiting max width for large screens */
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
}

.title {
  text-align: left;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

.news-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  /* Responsive grid */
  gap: 20px;
}

.news-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  height: 100%;
  width: 100%;
  max-width: 350px;
  margin: auto;
}



.news-item:hover {
  transform: scale(1.05);
}

.news-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* News category badge */
.news-category {
  position: absolute;
  bottom: 175px;
  /* Adjusted to fit within the image */
  left: 10px;
  background: linear-gradient(135deg, #ff512f, #dd2476);
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
}

.news-content {
  padding: 15px;
  height: auto;
}

.news-title {
  font-size: 18px;
  margin: 10px 0;
  color: #333;
  font-weight: bold;
}

.news-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.hidden {
  display: none;
}

.News-title {
  color: var(--default-color);
  padding: 45px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  background-color: var(--background-color);
}

.news-heading {
  font-size: 1.2em;
  font-weight: bold;
  margin-block: 1em;
}

/* Blog Container */
.blg-container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  background: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Image Section */
.blg-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.blg-top-img {
  width: 100%;
  max-width: 48%;
  height: 250px;
  /* Set consistent height */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

/* Blog Title & Content */
.blg-title {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

.blg-date {
  font-size: 14px;
  color: #777;
  text-align: center;
  margin-bottom: 20px;
}

.blg-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* Back Button */
.back-btn {
  display: inline-block;
  font-size: 14px;
  padding: 6px 15px;
  border-radius: 5px;
  background-color: #6c757d;
  color: white;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-btn:hover {
  background-color: #5a6268;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .blg-top-img {
    max-width: 100%;
    /* Full width on small screens */
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .founder {
    margin-top: 22%;
  }

  .news-container {
    grid-template-columns: 1fr;
    /* Full width on tablets */
  }

  .news-item {
    width: 100%;
    /* Ensure it takes full width */
  }

  .news-img {
    height: 150px;
  }

  .news-title {
    font-size: 18px;
  }

  .news-description {
    font-size: 14px;
  }

  .news-category {
    bottom: 10.5rem;
    font-size: 10px;
    padding: 4px 8px;
  }
}

@media (max-width: 480px) {
  .news-section {
    padding: 15px;
  }

  .title {
    font-size: 20px;
  }

  .news-img {
    height: 140px;
  }

  .news-title {
    font-size: 16px;
  }

  .news-description {
    font-size: 13px;
  }

  .news-category {
    bottom: 11rem;
    font-size: 9px;
    padding: 3px 6px;
  }
}

/* Unique Arrow Button Design */
#viewMoreBtn {
  display: block;
  margin: 20px auto;
  padding: 8px 20px;
  background: linear-gradient(135deg, #ff512f, #dd2476);
  color: #222253;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease-in-out;
  border: none;
  text-align: center;
}

#viewMoreBtn:hover {
  background: linear-gradient(135deg, #ff512f, #dd2476);
  transform: scale(1.05);
}

#viewMoreBtn::after {
  content: "→";
  font-size: 18px;
  transition: transform 0.3s ease-in-out;
}

#viewMoreBtn:hover::after {
  transform: translateX(5px);
}

/* blog end */

/* carasual slider */
.custom-indicators {
  position: absolute;
  bottom: -8px;
  left: 46%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
}

.custom-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgb(63, 6, 139);
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

.custom-indicators .active {
  background-color: red;
}



/* service section */

.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background: white;
}

.about-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.tag {
  display: inline-block;
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.right-tag {
  display: inline-block;
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.service-title {
  font-size: 2.2rem;
  margin-top: 10px;
  font-weight: 600;
  /* Makes text bold */
}



.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.number {
  font-size: 2rem;
  color: #ff416c;
  font-weight: bold;
}

.join-btn {
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 20px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.about-image img {
  max-width: 85%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.about-image img {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.about-image img:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    padding: 30px;
  }

  .service-title {
    font-size: 1.8rem;
  }

  .stats {
    justify-content: center;
  }

  .about-image {
    padding-top: 20px;
  }
}

@media (max-width: 480px) {
  .service-title {
    font-size: 1.5rem;
  }

  .join-btn {
    width: 100%;
    text-align: center;
  }
}




/* service section end */

/* career page */
.news-item-link {
  text-decoration: none;
  color: inherit;
}

.news-item {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.blog-content {
  text-align: justify;
  margin-top: 20px;
}

.main-blog-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.image-gallery {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.gallery-img {
  width: 30%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

/* career page end*/



/* our team */

.team {
  text-align: center;
  padding: 50px 0;
  background: #f9f9f9;
  margin-top: 3rem;
}

.team .member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 20px;
  padding: 20px;
  border-radius: 10px;
  background: #ffffff;
  border: none;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.team .member:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

/* Updated Circular Image */
.team .member img {
  width: 150px;
  /* Increased Image Size */
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d50606;
  /* Thinner Border */
}

/* Name Styling */
.team .member-info-content h4 {
  color: #333;
  font-size: 23px;
  font-weight: bold;
  margin-top: 24px;
}

/* Designation */
.team .member-info-content span {
  color: #888;
  font-size: 14px;
  font-style: italic;
}

/* Social Icons */
.team .social {
  margin-top: 10px;
}

.team .social a {
  font-size: 18px;
  color: #d50606;
  margin: 0 5px;
  transition: color 0.3s;
}

.team .social a:hover {
  color: #b10404;
}

/* Flexbox for Centering */
.team .team-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .team .team-row {
    flex-direction: column;
    align-items: center;
  }

  .team .member {
    max-width: 90%;
    /* Adjusts for smaller screens */
  }

  .team .member img {
    width: 130px;
    /* Slightly smaller on smaller screens */
    height: 130px;
  }

  .team .member-info-content h4 {
    font-size: 16px;
    /* Adjust text size */
  }

  .team .member-info-content span {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .team .member {
    max-width: 100%;
    padding: 15px;
  }

  .team .member img {
    width: 110px;
    height: 110px;
  }

  .team .member-info-content h4 {
    font-size: 15px;
  }

  .team .member-info-content span {
    font-size: 12px;
  }
}

/* our team end */






/* extra  */
.hero {
  width: 100%;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  padding: 0;
}

/* Custom Carousel Styles */
.custom-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.custom-carousel .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: transform 6s ease;
}

.custom-carousel .carousel-item.active {
  transform: translateX(0);
}

.custom-carousel .carousel-item.previous {
  transform: translateX(-100%);
}

.custom-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Styles */
.hero h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  margin-bottom: 30px;
}

#carouselId {
  position: relative;
  height: 100vh;
}

#carouselId .carousel-img {
  height: 100vh;
  object-fit: cover;
  width: 100%;
}

.carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  text-align: center;
}

.carousel-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
}

.typewriter-animation {
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.09rem;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
  border-right: 0.15em solid orange;
  font-size: 1.5rem;
  margin-bottom: 3rem;
  margin-top: -2%;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

/* Keyframes for typewriter effect */
@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: orange;
  }
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.about-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 30px 0;
  color: #fff;
  overflow: hidden;
  backdrop-filter: blur(8px);
  background-color: rgb(108 70 70 / 15%);
  margin-top: 1rem;
  z-index: 2;
}

.about-info:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about-info h2 {
  color: var(--accent-color);
  font-size: 28px;
  font-weight: bold;
  background: linear-gradient(90deg, #00c6ff, #0072ff, #c82d5e, #ff1493);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 4s ease infinite;
  margin-bottom: 20px;
  text-align: center;
}

.about-info h3 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}

.about-info p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #fff;
}

.about-info ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.about-info ul li {
  margin-bottom: 5px;
}

.crc-perv-btn {
  margin-top: 10rem;
}

.crc-next-btn {
  margin-top: 10rem;
}

h2.carousel-h2 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: bold;
  background: linear-gradient(90deg, #ff4500, #ffae42, #ff0000, #ffd700);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 4s ease infinite;
  margin-bottom: 40px;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}



/* Responsive styles */
@media (max-width: 991px) {
  .about-info {
    padding: 20px 0;
  }

  .about-info h2 {
    font-size: 24px;
  }

  .about-info h3 {
    font-size: 16px;
  }

  .about-info p {
    font-size: 13px;
  }

  h2.carousel-h2 {
    font-size: 36px;
  }

  .custom-indicators {
    bottom: 130px;
  }
}

@media (max-width: 768px) {
  .typewriter-animation {
    animation: none;
    border-right: none;
    white-space: normal;
    text-align: center;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    position: relative;
    bottom: unset;
    right: unset;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    padding: 10px;
    width: 100%;
    max-width: 90%;
  }

  h2.carousel-h2 {
    font-size: 32px;
    margin-bottom: 1.5rem;
    padding: 0 15px;
  }

  .about-info {
    padding: 15px 0;
    margin: 60px;
  }

  .about-info h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .about-info p {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .about-info h3 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .about-info ul {
    padding-left: 15px;
  }

  .about-info ul li {
    font-size: 12px;
    margin-bottom: 3px;
  }

  .custom-indicators {
    bottom: 120px;
  }

  .carousel-content {
    padding-top: 30px;
  }
}

@media (max-width: 576px) {
  h2.carousel-h2 {
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 1rem;
  }

  .typewriter-animation {
    font-size: 16px;
    margin-bottom: 2rem;
    padding: 5px;
  }

  .about-info {
    padding: 10px 0;
  }

  .about-info h2 {
    font-size: 20px;
  }

  .about-info p {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .about-info h3 {
    font-size: 14px;
  }

  .about-info ul li {
    font-size: 11px;
  }

  .custom-indicators {
    bottom: 100px;
  }
}

@media (max-width: 480px) {
  h2.carousel-h2 {
    font-size: 33px;
    margin-top: 10rem;
    padding: 0 10px;
  }

  .typewriter-animation {
    font-size: 16px;
    margin-top: -1rem;
    margin-bottom: 6rem;
    max-width: 95%;
    padding: 20px;
  }

  #carouselId .about-info {
    padding: 8px 0;
    margin-top: -3rem;
  }

  .about-info h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .about-info p {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .about-info h3 {
    font-size: 13px;
    margin-bottom: 3px;
  }

  .about-info ul {
    padding-left: 12px;
  }

  .about-info ul li {
    font-size: 10px;
    margin-bottom: 2px;
  }

  .custom-indicators {
    bottom: 90px;
  }

  .carousel-content {
    padding-top: 15px;
  }
}

/* Fix for landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) {
  #carouselId .carousel-img {
    height: 120vh;
  }

  .carousel-content {
    padding-top: 10px;
  }

  h2.carousel-h2 {
    font-size: 24px;
    margin-bottom: 0.5rem;
  }

  .typewriter-animation {
    font-size: 14px;
    margin-bottom: 0.5rem;
  }

  .about-info {
    padding: 5px 0;
  }

  .about-info h2 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .about-info p {
    font-size: 10px;
    margin-bottom: 5px;
  }

  .custom-indicators {
    bottom: 60px;
  }
}



/* Fix for very small devices */
@media (max-width: 360px) {
  h2.carousel-h2 {
    font-size: 22px;
  }

  .typewriter-animation {
    font-size: 12px;
    margin-bottom: 1rem;
  }

  .about-info h2 {
    font-size: 16px;
  }

  .about-info p {
    font-size: 9px;
  }

  .about-info h3 {
    font-size: 12px;
  }

  .about-info ul li {
    font-size: 9px;
  }

  .custom-indicators {
    bottom: 13rem;
  }
}

/* extra end */


/* service page */
.service-section {
  padding: 2rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-section:nth-child(odd) {
  background-color: #ffffff;
}

.service-section:nth-child(even) {
  background-color: #f1f5f9;
}

.image-container {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.animated-image {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.content {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 1rem;
}

.content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  position: relative;
}

.content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #e74c3c;
}

.content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  background-color: #e74c3c;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #c0392b;
}

/* Reverse layout for even sections */
.service-section:nth-child(even) {
  flex-direction: row-reverse;
}

/* Responsive design */
@media (max-width: 768px) {

  .service-section,
  .service-section:nth-child(even) {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .image-container,
  .content {
    max-width: 100%;
  }
}

/* service page end */



/* founder message  */
 /* Founder Message Section */
 .founder-message-section {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

/* Founder Image Styles */
.founder-image-col {
  position: relative;
}

.founder-image-container {
  position: relative;
  padding: 20px;
  width: 85%;
}

.founder-image-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.founder-image {
  width: 100%;
  height: 30rem;
  transition: transform 0.7s ease;
  object-fit: cover;
  border-radius: 10px;
}

.founder-image-wrapper:hover .founder-image {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #ff5f5f, #fe7b7b);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(255, 126, 95, 0.4);
  z-index: 3;
  animation: pulse 2s infinite;
}

.experience-badge .years {
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
}

.experience-badge .text {
  font-size: 12px;
  text-align: center;
  max-width: 80px;
}

.shape-1,
.shape-2 {
  position: absolute;
  border-radius: 10px;
  z-index: 1;
}

.shape-1 {
  width: 80%;
  height: 80%;
  background-color: rgb(255 126 95 / 30%);;
  top: 0;
  left: 0;
  transform: rotate(-5deg);
}

.shape-2 {
  width: 80%;
  height: 80%;
  background-color: rgb(255 126 95 / 20%);;
  bottom: 0;
  right: 0;
  transform: rotate(5deg);
}

/* Founder Content Styles */
.founder-content-col {
  padding-left: 30px;
}

.founder-content {
  position: relative;
  padding: 20px;
}

.founder-section-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #ff7e5f;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding-left: 45px;
}

.founder-section-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 35px;
  height: 2px;
  background-color: #ff7e5f;
  transform: translateY(-50%);
}

.founder-section-title {
  
  font-size: 1.75rem;
  font-weight: 700;
  color: #0e1b4d;
  margin-bottom: 30px;
  line-height: 1.2;
}

.message-content {
  margin-bottom: 30px;
}

.highlight-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  color: #444;
  line-height: 1.5;
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid #ff5f5f;
}

.message-content p {
  text-align: justify;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}

.founder-signature {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.signature-img {
  max-width: 150px;
  margin-right: 20px;
}

.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}

.founder-designation {
  font-size: 14px;
  color: #666;
  margin: 0;
}
.founder-details{
  margin-top: 20px;
}




/* Animation */
@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(255, 126, 95, 0.7);
  }

  70% {
      box-shadow: 0 0 0 15px rgba(255, 126, 95, 0);
  }

  100% {
      box-shadow: 0 0 0 0 rgba(255, 126, 95, 0);
  }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .founder-message-section {
      padding: 70px 0;
  }

  .founder-content-col {
      padding-left: 15px;
      margin-top: 50px;
  }

  .founder-section-title {
      font-size: 36px;
  }

  .highlight-text {
      font-size: 20px;
  }
}

@media (max-width: 767px) {
  .founder-message-section {
      padding: 0 0;
  }

  .founder-section-title {
      font-size: 28px;
  }

  .highlight-text {
      font-size: 18px;
  }

  .experience-badge {
      width: 100px;
      height: 100px;
      bottom: -15px;
      right: -15px;
  }

  .experience-badge .years {
      font-size: 28px;
  }

  .experience-badge .text {
      font-size: 10px;
  }
}

@media (max-width: 575px) {
  .founder-image-container {
      padding: 10px;
      margin-left: 20px;
  }

  .founder-section-subtitle {
      font-size: 14px;
  }

  .founder-section-title {
      font-size: 24px;
      margin-bottom: 20px;
  }

  .founder-signature {
      flex-direction: column;
      align-items: flex-start;
  }

  .signature-img {
      margin-bottom: 15px;
      margin-right: 0;
  }
}
/* founder message end */


/* phone enquiry form */

/* phone enquiry form end */

/* Notice running text start  */
.notice-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(270deg, #f5ed7f, #fa9284, #faed3c);
  background-size: 600% 600%;
  color: #09003a;
  display: flex;
  align-items: center;
  padding: 10px 8px;
  overflow: hidden;
  z-index: 999;
  height: 2rem;
  font-weight: bold;
  animation: yellowRedAnim 6s ease infinite;
}

@keyframes yellowRedAnim {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.running-text {
  white-space: nowrap;
  flex-grow: 1;
  animation: marquee 10s linear infinite;
  font-size: 1rem;
  margin-top: 16px;
}

@keyframes marquee {
  from {
      transform: translateX(100%);
  }
  to {
      transform: translateX(-100%);
  }
}

.close-btn {
  background: rgb(0, 0, 0);
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
  width: 50px;
  margin-right: -8px;
  color: #fff;
  z-index: 9999;
}

@media (min-width: 769px) {
  .notice-container {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .notice-container {
    display: flex;
  }
}


/* Notice running text  end */



/* beta version */
.beta-button {
  position: fixed;
  left: -9px; /* Partially hidden */
  top: 50%;
  transform: translateY(-50%);
  background-color: #007bff; /* Blue color */
  color: white;
  padding: 12px 10px;
  font-size: 16px;
  font-weight: bold;
  writing-mode: vertical-rl; /* Vertical text */
  text-align: center;
  border-radius: 10px; /* Smooth corners */
  cursor: pointer;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: left 0.3s ease-in-out; /* Smooth slide effect */

  /* Creating bent edges */
  clip-path: polygon(85% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%, 0% 15%, 15% 0%);
}

/* beta version end */


/* carrer page  */
.carrer-header {
  color: black;
  padding: 60px 20px 0px;
  text-align: center;
}

.carrer-header h1 {
  font-size: 3rem;
  margin: 0;
  margin-top: 20px;
}

.carrer-header p {
  margin-top: 15px;
  font-size: 1.2rem;
}

.carrer-container {
  max-width: 1100px;
  margin: 50px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.carrer-title {
  font-size: 1.8rem;
  color: #1e3c72;
  margin-bottom: 25px;
  border-left: 5px solid #1e3c72;
  padding-left: 15px;
}

.carrer-filter {
  margin-bottom: 20px;
}

.carrer-filter label {
  font-weight: bold;
  margin-right: 10px;
}

.carrer-filter select {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.job-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.job-table th,
.job-table td {
  padding: 14px 18px;
  text-align: left;
}

.job-table th {
  background-color: #f8f9fb;
  border-bottom: 2px solid #ddd;
}

.job-table tr:hover {
  background-color: #f4f7fc;
}

.job-table td {
  border-bottom: 1px solid #eee;
}

.carrer-apply-link {
  color: #2a5298;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}

.career-text p {
  line-height: 1.75;
  margin-bottom: 18px;
}


/* Modal */
.carrer-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.carrer-modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.4s ease-out;
}

.carrer-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.carrer-modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #1e3c72;
}

.carrer-close {
  font-size: 1.8rem;
  color: #888;
  cursor: pointer;
  transition: color 0.3s ease;
}

.carrer-close:hover {
  color: #333;
}

.carrer-modal form input,
.carrer-modal form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.carrer-modal form input:focus,
.carrer-modal form textarea:focus {
  border-color: #1e3c72;
  outline: none;
}

.carrer-modal form button {
  background: #1e3c72;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carrer-modal form button:hover {
  background: #163b66;
}

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

  to {
      opacity: 1;
      transform: translateY(0);
  }
}


@media screen and (max-width: 768px) {
  .carrer-header h1 {
      font-size: 2rem;
  }

  .carrer-container {
      margin: 30px 15px;
  }
}

@media screen and (max-width: 768px) {
  .carrer-header {
      padding: 40px 15px 30px;
      margin-top: 3.5rem;
  }

  .carrer-header h1 {
      font-size: 1.7rem;
      line-height: 1.3;
  }

  .carrer-header p {
      font-size: 1rem;
      margin-top: 10px;
  }

  .carrer-container {
      margin: 20px 10px;
      padding: 20px 15px;
  }

  .carrer-title {
      font-size: 1.5rem;
      padding-left: 10px;
  }

  .filter {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
  }

  .filter label {
      font-size: 1rem;
  }

  .filter select {
      width: 100%;
  }

  .job-table {
      display: block;
      width: 100%;
      overflow-x: auto;
      border: 0;
  }


  .job-table thead {
      display: none;
  }

  .job-table tbody tr {
      display: flex;
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 12px;
      background-color: #fafafa;
  }

  .job-table td {
      display: flex;
      justify-content: space-between;
      padding: 10px;
      border-bottom: none;
  }

  .job-table td::before {
      content: attr(data-label);
      font-weight: bold;
      flex-basis: 45%;
      color: #333;
  }

  .carrer-modal-content {
      width: 95%;
      padding: 20px;
  }

  .carrer-modal-header h3 {
      font-size: 1.2rem;
  }

  .carrer-modal form input,
  .carrer-modal form textarea {
      font-size: 0.95rem;
      padding: 10px;
  }

  .carrer-modal form button {
      font-size: 1rem;
      padding: 10px;
  }
}
/* carrer page end */