/*
Theme Name: My Custom Theme
Theme URI: http://example.com/my-custom-theme
Author: Your Name
Author URI: http://example.com
Description: A custom WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
*/

/* fonts  */
/* Poppins */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Lato:wght@100;300;400;700;900&family=Montserrat:wght@100&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Montserrat */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Lato:wght@100;300;400;700;900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Cormorant */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Lato:wght@100;300;400;700;900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Basic CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
}

/* Remove bootstrap default */
.accordion-button {
  background-color: transparent !important;
  color: #000000 !important;
}
.accordion-button:focus {
  box-shadow: none !important;
  color: #000 !important;
  border: #000 !important;
}
.accordion-button:not(.collapsed) {
  color: #000000 !important;
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-icon) !important;
}
/* Reset for other common elements */
ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* Define custom properties for colors */
:root {
  --primary-color: #1b588c;
  --secondary-color: #f7f7f2;
  --tertiary-color: #b7cece;
  --quaternary-color: #baa3d3;
  --color-highlight: #ffd700;
  --background-default: #fff;
  --background-primary: #fff;
  --background-secondary: #6c757d;
  --background-tertiary: #6c757d;
  --default-color: #fff;
  --text-color-primary: #000;
  --text-color-light: #fff;
  --footer-background-color: var(--background-secondary);
}

/* Custom styles */
body {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

h1 {
  color: var(--text-color-primary);
}

/* Section define start*/

section {
  padding: 1rem 0;
}

@media screen and (min-width: 640px) {
  section {
    padding: 1rem 0;
  }
}

@media screen and (min-width: 768px) {
  section {
    padding: 2rem 0;
  }
}
@media screen and (min-width: 1536px) {
  section {
    padding: 3rem 0;
  }
}

/* remove section top padding */

section .removeTopPadding {
  margin-top: -1rem !important;
}

@media screen and (min-width: 640px) {
  section .removeTopPadding {
    margin-top: -1rem !important;
  }
}

@media screen and (min-width: 768px) {
  section .removeTopPadding {
    margin-top: -2rem !important;
  }
}
@media screen and (min-width: 1536px) {
  section .removeTopPadding {
    margin-top: -1rem !important;
  }
}

/* remove section Bottom padding */

section .removeBottomPadding {
  margin-bottom: -1rem !important;
}

@media screen and (min-width: 640px) {
  section .removeBottomPadding {
    margin-bottom: -1rem !important;
  }
}

@media screen and (min-width: 768px) {
  section .removeBottomPadding {
    margin-bottom: -2rem !important;
  }
}
@media screen and (min-width: 1536px) {
  section .removeBottomPadding {
    margin-bottom: -3rem !important;
  }
}

.wrapper {
  background-color: var(--background-default);
}
.bgSecondary {
  background-color: var(--secondary-color);
}
.button-primary {
  /* background-color: var(--primary-color); */
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  color: var(--text-color-light);
  /* border-radius: 4px; */
  border: 1px solid var(--primary-color);
  padding: 0.8rem 1.4rem 0.9rem;
}
.button-primary:hover {
  /* background-color: var(--primary-color); */
  color: var(--background-default);
  /* border-radius: 4px; */
  /* border: 1px solid var(--primary-color); */
  padding: 0.8rem 1.4rem 0.9rem;
  filter: brightness(90%);
}

.btn-sm-primary {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  transition: filter 0.2s ease;
  text-decoration: none;
  padding: 6px 8px;

  border-radius: 8px;
}

.btn-sm-primary:hover {
  filter: brightness(90%);
  color: var(--text-color-light);
}

/* Section define end*/

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

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

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

/* container css start */
/* Center the container horizontally */

.container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

@media screen and (min-width: 640px) {
  .container {
    max-width: 576px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    max-width: 992px !important;
  }
}

@media screen and (min-width: 1280px) {
  .container {
    max-width: 1090px !important;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1440px !important;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    max-width: 1440px !important;
  }
}
.background-secondary {
  background-color: var(--background-secondary);
}

.site-logo {
  height: 70px;
  width: 160px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.imageContainer {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.imageStyle {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.partners-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--background-default);
  padding-bottom: 4rem;
}

.partner-section {
  width: 100%;
  background-color: var(--background-default);
}
.about-images {
  height: 22rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 span,
h2 span {
  font-family: "Poppins", sans-serif;
  font-weight: 600 !important;
  font-style: normal;
  word-spacing: 10px;
  color: var(--text-color-primary);
  /* padding: 0;
  margin: 0 ; */
}

h1 span,
h2 span {
  color: var(--primary-color);
}
.styled-hr {
  border: none;
  height: 6px;
  color: var(--primary-color);
  background-color: var(--primary-color);
  width: 8rem;
  opacity: 1;
}
.font-Cormorant {
  font-family: "Cormorant";
  color: var(--primary-color);
  font-weight: 600;
  font-style: normal;
}
p,
ul {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
}

ul {
  padding: 0;
  margin: 0;
}

/* Navbar styles */
/* .nav-bar{
  background-color: red !important;
} */

.nav-container {
  background-color: var(--background-default);
  /* border-bottom: 1px solid var(--primary-color); */
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  position: "relative";
  margin-bottom: 4px;
}

.navbar-expand-lg .navbar-collapse {
  justify-content: flex-end;
  gap: 1rem;
}

.navbar-expand-lg .navbar-nav {
  gap: 0.3rem;
}

@media screen and (min-width: 640px) {
  .navbar-expand-lg .navbar-nav {
    gap: 2rem;
  }
}

#navbarNav .nav-item a {
  color: #000;
}

#navbarNav .nav-item a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

.navbarNav ul {
  display: flex;
  justify-content: space-between;
  gap: 2rem !important;
}
.navbarNav a {
  color: #000;
  text-decoration: none;
}

.menu-primary-menu-container a:hover {
  color: #000;
  text-decoration: none;
  text-decoration: underline;
}

/* Underline the active menu item link only */

.nav {
  display: flex !important;
  justify-content: space-between !important;
  gap: 2rem !important;
}

.nav .current-menu-item a {
  text-decoration: underline;
}
.nav a:hover {
  text-decoration: underline !important;
  color: #000;
}

/* Optional: Remove underline from non-active links */
.nav a {
  text-decoration: none;
  color: #000 !important;
  font-weight: 400 !important;
  font-size: 1.1rem;
}

/* .nav-items-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.nav-container {
  padding: 3rem 0;
} */
/* #navbarNav {
  display: flex;
  justify-content: center;
  align-items: center;
} */

/* .navbar-brand {
  color: var(--color-highlight);
}

.nav-link {
  color: var(--secondary-color);
}
.navbar-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
} */

/* .nav-container .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-items,
ul {
  padding: 0;
  margin: 0;
}
.nav-items-container .nav-item a {
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
} */
/* .nav-items-container .nav-item a:hover {
  padding: 0.5rem 0.8rem;
  background-color: var(--primary-color);
  color: var(--background-default);
  cursor: pointer;
  border-radius: 8px;
} */
/* .nav-items-container .nav-item active {
  padding: 0.5rem 0.8rem;
  background-color: var(--primary-color);
  color: var(--background-default);
  cursor: pointer;
  border-radius: 8px;
}

.nav-link:hover {
  color: var(--color-highlight);
} */

/* nav slide view */
/* body {
  padding-top: 50px;
  position: relative;
} */

.section-header {
  max-width: 656px;
  margin: auto;
}
.section-header h1 {
  margin-top: 1rem;
}

.section-header span {
  color: var(--primary-color);
}
/* Footer styles */
footer {
  background-color: var(--footer-background-color);
  /* color: var(--secondary-color); */
}

/* footer a {
  color: var(--color-highlight);
} */

footer a:hover {
  text-decoration: none;
  color: var(--quaternary-color);
}
footer .footer-list {
  /* text-align: center; */
  /* color: var(--secondary-color); */
}
#footer .footer-list a {
  text-decoration: none;
  color: var(--text-color-light);
}
#footer .footer-list a:hover {
  text-decoration: underline;
}

#footer .header-title {
  color: var(--text-color-light);
}

footer .footer-list p {
  color: var(--text-color-light);
}
footer .footer-list p:hover {
  text-decoration: underline;
  cursor: pointer;
}
#footer .contact-list {
  display: flex !important;
  gap: 1rem !important;
  color: var(--text-color-light);
}

#footer .footer-list ul {
  padding: 0;
}
#footer .footer-list ul li {
  margin-bottom: 0.3rem;
}
#footer .contact-list .mail {
  color: var(--text-color-light) !important;
  text-decoration: none;
}

#footer .contact-list .mail:hover {
  text-decoration: underline !important;
}
#footer .contact-list .fa {
  font-size: 1.1rem;
  margin-top: 4px;
}

footer .logo {
  width: 165px;
  height: 60px;
  object-fit: contain;
}

footer .first-section {
  max-width: 400px;
}

footer .social-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
footer .first-section h5 {
  margin-top: 1.2rem;
  /* margin-bottom: 2rem; */
}
footer .footer-description {
  text-align: left;
  margin-top: 1.2rem;
  color: var(--text-color-light);
}

@media (max-width: 640px) {
  .cover-section .row {
    display: flex;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .about-section {
    margin: 2rem 0;
  }
  .about-section .row {
    display: flex;
    gap: 1rem;
  }
}

.about-section-container {
  object-fit: cover;
}

.cover-section .left-section {
  margin: auto;
}

.cover-section .right-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem;
}

.cover-section-container .right-section span {
  color: var(--primary-color);
}
.btn {
  background-color: var(--primary-color);
}

.justifyText {
  text-align: justify;
}

.what-we-do-section {
  background-color: var(--background-default);
}

/* what we do  */
.what-we-do-section .details-container {
  /* background-color: var(--secondary-color); */
  padding: 1rem 0.5rem 0;
  border-radius: 1rem;
  /* margin-bottom: 1.3rem; */
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.what-we-do-section .description-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  height: 100% !important;
}
.what-we-do-section .description {
  flex: 1;
}

.what-we-do-section .grid-container img {
  /* height: 3rem;
  width: 3rem;
  object-fit: cover;
  margin-bottom: 0.8rem;
  align-self: flex-start; */
  height: 14rem;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 1rem;
}
.what-we-do-section .grid-container {
  padding: 0.5rem 0.5rem 1rem;
  background-color: var(--background-primary);
  border-radius: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.what-we-do-section .details-container p {
  text-align: justify;
}
.our-team-section {
  background-color: var(--background-default);
}

/* what we do  */
.our-team-section .details-container {
  /* background-color: var(--secondary-color); */
  padding: 1rem 0.5rem 0;
  border-radius: 1rem;
  /* margin-bottom: 1.3rem; */
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.our-team-section .img-container {
  border-radius: 1rem;
}

.our-team-section .description-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  height: 100% !important;
}
.our-team-section .description {
  flex: 1;
}

.our-team-section .grid-container img {
  /* height: 3rem;
  width: 3rem;
  object-fit: cover;
  margin-bottom: 0.8rem;
  align-self: flex-start; */
  height: 14rem;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
}
.our-team-section .grid-container {
  padding: 0.5rem 0.5rem 1rem;
  background-color: var(--background-primary);
  border-radius: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.our-team-section .details-container p {
  text-align: justify;
}

.our-classes-section .card-container {
  height: 100%;
  width: 100%;
}

.our-classes-section .card-container-new-events {
  position: relative;
  border-radius: 1rem;
  border: 1px solid var(--primary-color);
  padding: 4px;
}
.our-classes-section .card-container-new-events img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.our-classes-section .card-container-new-events .top-bar {
  position: absolute;
  top: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 2rem 1.5rem;
  color: var(--secondary-color);
}
.our-classes-section .card-container-new-events .top-bar img {
  height: 2rem;
  width: 2rem;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
}

.our-classes-section .card-container-new-events .details {
  position: absolute;
  bottom: 0;
  color: var(--secondary-color);
  padding: 2rem 1.5rem;
}

.our-classes-section .card-container-new-events h2 {
  color: var(--secondary-color);
}

.our-classes-section .classes-container {
  gap: "2rem";
}

/* past events */
.our-classes-section .card-container-past-events {
  position: relative;
  border-radius: 1rem;
  /* overflow: hidden; */
  overflow: visible;
  border: 1px solid var(--primary-color);
  padding: 4px;
}
.our-classes-section .card-container-past-events img {
  height: 14rem;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 1rem;
}

.our-classes-section .card-container-past-events .details {
  color: var(--secondary-color);
  padding: 0.1rem 1.5rem 0.5rem;
  position: relative;
}

.our-classes-section .card-container-past-events h2 {
  color: #000 !important;
}

.our-classes-section .card-container-past-events .details img {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
}

.our-classes-section .card-container-past-events .card-bottom {
  display: flex;
  justify-content: space-between;
  color: var(--primary-color);
}

.our-classes-section .card-container-past-events p {
  color: var(--primary-color);
}

/* carousel */
.carousel {
  width: 100%;
  margin: 0px auto;
}

.slick-slide {
  margin: 10px;
}

.slick-slide img {
  width: 100%;
}

.slick-prev,
.slick-next {
  background: #000;
  border-radius: 15px;
  border-color: transparent;
}

.carousel .card {
  position: relative;
  border-radius: 15px;
  width: 20%;
  background-color: transparent;
}

.carousel .card-header {
  padding: 0;
  max-height: 330px;
}

.carousel .card-header img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.8rem;
}
.carousel .card-details {
  padding: 1rem;
}
.carousel .footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
}

.carousel .footer img {
  border-radius: 50%;
  height: 2rem;
  width: 2rem;
  margin-right: 1rem;
}

.carousel .slick-next {
  right: 120px;
}
.carousel .slick-prev {
  display: none !important;
}
.carousel .slick-prev,
.carousel .slick-next {
  background: none;
  z-index: 999;
}
.carousel .slick-prev:before,
.carousel .slick-next:before {
  background-color: transparent;
  border: 2px dashed white;
  border-radius: 100%;
  padding: 20px 25px;
}
.carousel .slick-next::before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: #fff;
}
.carousel .slick-prev::before {
  content: "\f053";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: #fff;
}
.carousel .slick-dots li button:before {
  background-color: #fff;
  content: "";
  width: 60px;
  height: 10px;
  opacity: 0.25;
}
.carousel .slick-dots li.slick-active button:before {
  background-color: #fff;
  content: "";
  opacity: 1;
  width: 60px;
  height: 10px;
}
.carousel .card-content {
  color: #000 !important;
}

.carousel .card-body {
  position: block;
  background: transparent;
  bottom: 0;
  width: 100%;
  vertical-align: top;
}

.card-content {
  text-align: left;
  color: #333;
}

.card-text {
  font-size: 14px;
  font-weight: 300;
}

.carousel .slick-list.draggable {
  padding: 0 100px 0 0 !important;
}

.blogs-section {
  background-color: var(--background-default);
}
.blogs-section .card-container {
  padding: 0;
  border: 1px solid var(--primary-color);
  border-radius: 0.8rem;
  overflow: hidden;
}
.blogs-section img {
  /* height: 14rem; */
  width: 100%;
  object-fit: cover;
  /* border-radius: 0.8rem; */
}

.blogs-section .date {
  margin-top: 0.6rem;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600 !important;
  cursor: pointer;
}

.title-read-more {
  text-decoration: none !important;
  cursor: pointer;
  color: #000;
}

.title-read-more:hover {
  /* text-decoration: underline !important; */
  color: var(--primary-color) !important;
}

.read-more {
  text-decoration: none;
  cursor: pointer;
}

.read-more:hover {
  text-decoration: underline;
}

.blogs-section .details .date-title {
  font-weight: 600 !important;
  padding-right: 0.8rem;
}
.blogs-section .details {
  padding: 8px 14px 12px;
}

/* about page */
.about .first-images-container {
  height: 20rem;
}
.about img {
  height: 30rem;
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.about-section {
  position: relative;
  background-color: var(--background-primary);
}
.about-section .about-right-content {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* .about-section-container .img{
  background-image: url('static-pages/images/home-cover.svg'); 
  height: 100vh; 
  background-size: cover;
  background-position: center;
  background-attachment: fixed; 
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
} */

/* .about-section-container img{
  position: fixed;
  top: 0;
  overflow: hidden;
} */

.link-anchor {
  text-decoration: none;
  color: #fff;
  height: 100%;
  width: 100%;
  padding: 0.8rem 1.4rem 0.9rem;
  margin: 0;
  border: 1px solid var(--primary-color);
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  width: fit-content;
  border-radius: 4px;
}
.link-anchor:hover {
  text-decoration: none;
  color: #fff;
  background-color: var(--primary-color);
  filter: brightness(85%);
}

/* Footer section */
/* footer .sub-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

#footer .social-links a {
  text-decoration: none;
  color: var(--text-color-light);
}

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

#footer .sub-footer .policies ul {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  color: var(--secondary-color);
}
.sub-footer .policies a {
  text-decoration: none;
  color: var(--secondary-color);
}
.sub-footer .policies a:hover {
  text-decoration: underline;
}

#footer .first-section input {
  padding: 1rem;
  border: none;
  border-bottom: 1px solid var(--secondary-color);
}

#footer .first-section input:focus {
  border: none;
  border-bottom: 1px solid var(--secondary-color);
}

.more-blogs-section .contents {
  display: flex;
  flex-direction: column;
  gap: 8em;
}

.more-blogs-section img {
  height: 586px;
  max-width: 453px;
  object-fit: contain;
}

.more-blogs-section .content-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.blog-post-section {
  background-color: var(--background-default);
}
.blog-post-section .blog-content {
  text-align: justify;
}

/* Faq section */
/* .faqs-section .accordion-body {
  padding-top: 0;
} */
.faqs-section {
  background-color: var(--background-default);
}

.faqs-section .accordion {
  --bs-accordion-border-radius: 0;
}

.faqs-section .accordion-item {
  border: solid 1.8px var(--primary-color);
  border-radius: none;
  margin-bottom: 1.5rem;
}

.faqs-section .accordion-body {
  padding-top: 0;
}
.accordion {
  --bs-accordion-border-color: #fff;
}

/* contact form  */
.map-container {
  /* position: sticky; */
  /* top: 2rem; */
  /* overflow: hidden; */

  /* height:"80%"; */
  width: "100%";
  /* margin-top: "3rem"; */
  /* padding-top: 56.25%;  */
  /* 16:9 Aspect Ratio */
}
.map-container iframe {
  /* position: absolute; */
  position: relative;
  /* top: 0;
  left: 0; */
  width: 100%;
  /* height: 90%; */
  border: 0;
}
.form {
  background-color: var(--background-default);
}
.contact-form-section {
  position: relative;
  background-color: var(--background-default);
}

.contact-form-section .map-section {
  /* height: 20rem; */
  margin-top: 4rem;
  /* object-fit: cover; */
}
.contact-form {
  padding-top: 20px;
}

.contact-form .form-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form .form-container .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Main Form Wrapper */
.gform_wrapper {
  background-color: #f9f9f9; /* Background color */
  padding: 20px; /* Padding around the form */
  border: 1px solid #ddd; /* Border around the form */
  border-radius: 10px; /* Rounded corners */
  max-width: 100%; /* Maximum width of the form */
  margin: 0 auto; /* Center the form */
}

/* Form Labels */
.gform_wrapper .gfield_label {
  font-size: 16px; /* Font size */
  color: #333; /* Label color */
  padding-bottom: 10px; /* Space below the label */
}

/* Input Fields */
.gform_wrapper .gfield--type-text input,
.gform_wrapper .ginput_container_phone input,
.gform_wrapper .ginput_container_email input,
.gform_wrapper .ginput_container_date input,
.gform_wrapper .ginput_container_time input,
.gform_wrapper .ginput_container textarea,
.gform_wrapper .ginput_container select {
  width: 100%; /* Make input fields full width */
  padding: 10px; /* Padding inside input fields */
  border: 1px solid #ccc; /* Border color */
  border-radius: 5px; /* Rounded corners */
  font-size: 14px; /* Font size */
  margin-bottom: 20px; /* Space below the input fields */
}
.gchoice {
  padding: 0;
  margin: 0;
}

.gfield--type-radio .gfield_label {
  margin-top: 2rem;
}

.gfield--type-textarea .gfield_label {
  margin-top: 2rem;
}
.ginput_container_date .screen-reader-text {
  display: none;
}
.ginput_container_radio {
  margin-top: 0;
  padding-top: 0;
}
/* Input Fields on Focus */
.gform_wrapper .ginput_container input:focus,
.gform_wrapper .ginput_container textarea:focus,
.gform_wrapper .ginput_container select:focus {
  border-color: #0073aa; /* Border color on focus */
  outline: none; /* Remove the default outline */
}

/* Radio Buttons */
/*  */

/* Radio Button Selected State */
.gform_wrapper .gfield_radio input[type="radio"]:checked {
  background-color: #0073aa; /* Background color for selected radio button */
  border-color: #0073aa; /* Border color for selected radio button */
}

/* Time Selection Fields */
.gform_wrapper .gfield_time {
  display: flex;
  gap: 10px; /* Space between hour and minute dropdowns */
  align-items: center; /* Vertically align time selection dropdowns */
}

.gform_wrapper .gfield_time select {
  width: auto; /* Adjust width to fit content */
  padding: 10px; /* Padding inside dropdowns */
  border: 1px solid #ccc; /* Border color */
  border-radius: 5px; /* Rounded corners */
  font-size: 14px; /* Font size */
  cursor: pointer; /* Pointer cursor on hover */
}

.gform_wrapper .gfield_time select:focus {
  border-color: #0073aa; /* Border color on focus */
  outline: none; /* Remove the default outline */
}

/* Submit Button */
.gform_wrapper .gform_footer input[type="submit"] {
  background-color: #0073aa; /* Button background color */
  color: #ffffff; /* Button text color */
  padding: 10px 20px; /* Padding inside the button */
  border: none; /* Remove default border */
  border-radius: 5px; /* Rounded corners */
  font-size: 16px; /* Font size */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s ease; /* Smooth background color transition */
  margin-top: 2rem;
}

.gform_wrapper .gform_footer input[type="submit"]:hover {
  background-color: #005f8a; /* Darker background color on hover */
}

/* Error Messages */
.gform_wrapper .validation_message {
  color: #d9534f; /* Red color for error messages */
  font-weight: bold; /* Bold text for error messages */
  margin-bottom: 15px; /* Space below error messages */
}

/* Success Message */
.gform_wrapper .gform_confirmation_message {
  color: #28a745; /* Green color for success message */
  font-size: 18px; /* Font size */
  font-weight: bold; /* Bold text for success message */
  margin-top: 20px; /* Space above success message */
}

.gform-grid-row {
  display: flex;
  gap: 1rem;
}

.ginput_container_time .screen-reader-text {
  display: none;
}

.partner-logo-wrapper {
  height: 6rem;
  transition: transform 0.3s ease-in-out;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.partner-logo-wrapper:hover {
  transform: scale(1.05);
}

.testimonials {
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
  padding: 1rem 0 0;
  border-radius: 10px;
}
.testimonials .wrapper {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 10px;
}
.testimonials .card-header {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  border: none;
  background-color: var(--background-primary);
}
.testimonials .card-header img {
  height: 100px;
  width: 100px;
  border-radius: 100%;
  object-fit: cover;
  margin-top: -2rem;
  padding-bottom: 8px;
}

.testimonials .card-header .name {
  font-weight: 500;
}

.locations-show-all {
  padding-top: 2rem;
  background-color: var(--background-default);
}

.location-details-section .wrapper {
  background-color: var(--secondary-color);
}
.cover-container {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-image {
  width: 100%;
  height: 120vh;
  object-fit: cover;
  filter: brightness(50%) contrast(90%);
  object-position: center;
  position: fixed;
  z-index: -1;
}

.cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.cover-text {
  position: absolute;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  z-index: 2;
}

.gtranslate {
  background: "gray";
}

.content-container table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.content-container th,
.content-container td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
.content-centainer tr:nth-child(0) {
  background-color: red;
}
.content-container th {
  background-color: #f4f4f4;
  font-weight: bold;
}

.content-container tr {
  border: 1px solid #ddd;
}
.content-container tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.content-container tr:hover {
  background-color: #f1f1f1;
}

.faq-title {
  font-weight: 500;
  font-size: 18px;
}

.location-details-section {
  background-color: var(--background-default);
}
.service-details-section {
  background-color: var(--background-default);
}

.booking-section {
  background-color: var(--background-default);
}

#logo_preview {
  height: 100px;
  width: 100px;
}

.nav.nav-pills {
  display: flex;
  padding: 4px;
  margin: 0;
  list-style: none;
  gap: 0 !important;
  background: var(--background-tertiary);
}

.nav.nav-pills .nav-item {
  flex: 1;
  text-align: center;
  background-color: var(--background-tertiary);
  margin: 0;
  border-right: 1px solid #ccc; /* optional visual separator */
  padding: "8px";
}

/* Remove right border from last item if using border-right */
.nav.nav-pills .nav-item:last-child {
  border-right: none;
}

/* Make buttons fill entire li */
.nav.nav-pills .nav-link {
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 10px 0;
  color: inherit;
  border-radius: 0; /* removes pill shape if needed */
}

/* Custom active tab styling */
.nav.nav-pills .nav-link.active {
  background-color: #fff;
  color: #000;
  font-weight: bold;
}

.contact-info-section i {
  font-size: 30px;
  margin-bottom: 1rem;
}

.bgWhite {
  background-color: #fff;
}

.careers-container .nav-link {
  text-align: start;
  padding-left: 12px !important;
  border: 0;
}

.careers-container .nav-pills {
  padding: 0;
  /* border-radius: 10px; */
}

.careers-container .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--primary-color) !important;
  color: #fff;
  border-radius: 8px;
}

.careers-container .nav.nav-pills {
  gap: 14px !important;
  background-color: #fff !important;
}

.careers-container .nav.nav-pills .nav-link {
  background-color: #f8fafc;
  border-radius: 8px;
}

.careers-container .vertical-nav-title {
  font-size: larger;
  font-weight: 700;
}

/* companies search */
.card-title {
  font-weight: 600;
  font-size: 1.1rem;
}
.card-text {
  font-size: 0.9rem;
}
.badge {
  font-size: 0.75rem;
  padding: 0.3em 0.6em;
}

.card-img-top {
  width: 100%;
  object-fit: cover !important;
  height: 300px !important;
}

.footer-rights-reserved {
  color: #fff;
}

/* counter */
.counter-section {
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  background-color: #fff;
  padding: 60px 0;
}

.counter-item {
  text-align: center;
  color: #000;
  margin-bottom: 30px;
}

.counter-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--primary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 3px var(--primary-color);
}

.counter-label {
  font-size: 1rem;
  font-weight: 500;
  /* color: rgba(255, 255, 255, 0.8); */
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .counter-number {
    font-size: 2.5rem;
  }
  .counter-section {
    padding: 40px 0;
  }
}

/* Animation effect */
.counter-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.counter-item:nth-child(1) {
  animation-delay: 0.1s;
}
.counter-item:nth-child(2) {
  animation-delay: 0.2s;
}
.counter-item:nth-child(3) {
  animation-delay: 0.3s;
}
.counter-item:nth-child(4) {
  animation-delay: 0.4s;
}

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

.why-choose-us-icon {
  /* background-color: var(--secondary-color); */
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  color: #fff;
  font-size: 20px;
  padding: 10px 15px;
  border-radius: 50%;
  margin-bottom: 8px;
}

.why-choose-us .card-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.company-stats {
  display: inline-flex;
  align-items: center;
  background: var(--background-primary);
  padding: 8px 12px;
  border-radius: 20px;
  margin: 10px 0;
  font-size: 13px;
}

.visitor-count-label {
  color: var(--text-color-primary);
  margin-right: 5px;
}

.visitor-count-number {
  font-weight: bold;
  color: var(--primary-color);
}

/* Browse by country */
.countries-container {
  padding: 20px 0;
}

.country-card {
  background: var(--background-default);
  border: 1px solid var(--background-primary);
  border-radius: 8px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.country-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.country-info {
  flex: 1;
}

.country-name {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color-primary);
}

.company-count {
  margin: 0;
  color: var(--text-color-primary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.company-count i {
  font-size: 0.8rem;
}

.country-arrow {
  color: var(--secondary-color);
  font-size: 1.1rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.country-card:hover .country-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .country-card {
    padding: 15px;
  }

  .country-name {
    font-size: 1rem;
  }
}

.company-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  border-radius: 8px;
}

.service-item {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.service-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
  margin-right: 15px;
  flex-shrink: 0;
}

.service-number {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  padding: "10px";
}

.service-title {
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  margin: 0;
}

.services-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 0px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: #f3e5f5;
  color: var(--secondary-color);
  border-radius: 8px;
}

#career-title {
  margin-bottom: 1.5rem;
}

.location-container .title {
  margin: 4rem 0 2rem;
}

.gform_wrapper .gform_button {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gform_wrapper .gform_button:hover {
  filter: brightness(90%);
}

.gform_wrapper .gform_button.loading {
  filter: brightness(30%);
  cursor: not-allowed;
  opacity: 0.8;
}

.gform_footer {
  position: relative;
}

#gform_ajax_spinner_5 {
  position: absolute;
  top: 51%;
  left: 6%;
  z-index: 999;
}
.img-transform {
  transition: transform 0.3s ease-in-out;
}
.img-transform:hover {
  transform: scale(1.1);
}
.card-img-top {
  transition: transform 0.3s ease-in-out;
}
.card-img-top:hover {
  transform: scale(1.1);
}

.img-container {
  overflow: hidden;
}


/* animations */
/* Common hidden state */
.animate-left,
.animate-right,
.animate-upward {
  opacity: 0;
  transition: all 1s ease-out;
}

/* When visible, trigger animation */
.animate-left.animate-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-right.animate-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-upward.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Initial off-screen positions */
.animate-left {
  transform: translateX(-50px);
}

.animate-right {
  transform: translateX(50px);
}

.animate-upward {
  transform: translateY(50px);
}
