@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

:root {
  --primary: #232963;
  --secondary: #4281e2;
  --text-1: #000;
  --text-2: #1a1a1a;
  --light: #fff;
  --transition: all 0.5s linear;
  --transition-2: all 0.5s ease-in-out;
  --primary-font: "Sora", sans-serif;
  --secondary-font: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

a,
a:hover,
a:active {
  text-decoration: none;
}

body {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 18px;
  margin: 0;
  background-color: var(--light);
  color: var(--text-2);
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
h1,
h2,
h3,
h5,
h4,
h6 {
  font-family: var(--primary-font);
  font-weight: 500;
  margin: 0;
  color: var(--text-1);
  line-height: 1;
}
h1{
  font-size: clamp(36px, 6.5vw + 8px, 46px);
  font-weight: 600;
}
h2{
  font-size: clamp(28px, 5.5vw + 6px, 42px);
  font-weight: 500;
  padding-bottom: 15px;
}
img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}

a,
a:active,
a:hover {
  text-decoration: none;
  outline: 0;
}
p {
  font-size: 18px;
  color: var(--text-2);
  margin: 0 0 6px;
  line-height: 1.6;
  font-family: var(--secondary-font);
}
p:last-child {
  margin-bottom: 0;
}
strong {
  font-weight: 700;
}
.content__area p {
  font-size: 18px;
  margin: 10px 0 0;
}
.content__area a {
  color: var(--text-2);
  font-size: 18px;
  text-decoration: underline;
}
.content__area figure {
  width: 100% !important;
}
.content__area li {
  font-size: 18px;
}
.wrapper,
.wrapper-small, .wrapper-smaller {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}
.wrapper-small {
  max-width: 1400px;
}
.wrapper-smaller{
  max-width: 1200px;
}
.wrapper-vs{
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.section-wrap {
  max-width: 790px;
  margin: 0 auto 35px;
  text-align: center;
}
.flex{
  display: flex;
  gap: clamp(20px, 4vw, 60px);
}
.section-title {
  font-size: clamp(36px, 6vw, 80px);
  margin: 0 0 18px;
  letter-spacing: -5%;
}
.text-center{
  text-align: center;
}
.global-text{
  color: var(--primary);
  font-size: 16px;
  display: block;
  font-weight: 500;
}
.block{
  display: block !important;
}
.sb{
  justify-content: space-between;
}
.mw{
  max-width: 600px;
}
.left{
  text-align: left !important;
}
.entry-title h2{
  padding-top: 20px;
  font-weight: 600;
  line-height: 1.2;
}
.entry-title a {
  /* color: var(--text-1); */
}
.entry-title-small {
  font-size: clamp(20px, 2vw, 30px);
  color: #253985;
  font-weight: 600;
  margin-bottom: clamp(10px, 2vw, 20px)
}
.btn {
  font-family: var(--secondary-font);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  color: var(--light);
  background-color: var(--primary);
  border-radius: 50px;
  padding: clamp(6px, 2vw, 10px) clamp(6px, 2vw, 12px);
  border: 1px solid var(--primary);
  width: fit-content;
  height: fit-content;
  white-space: nowrap;
  transition: var(--transition-2);
  line-height: 1.3;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 20px;
}
.mt{
  margin-top: clamp(50px, 6vw, 100px);
}
.btn svg {
  fill: var(--light);
  transition: var(--transition-2);
}
/* .btn svg:hover{
  width: 40px;
  height: 40px;
  transform: rotate(40deg);
  transition: var(--transition-2);
} */

.center{
  margin: 0 auto;
}
.pt{
  padding-top: 20px;
}
.btn:hover {
  border-color: var(--light);
  background-color: #282424;
  color: var(--light) !important;
}
.btn:hover svg{
  transform: rotate(40deg);
}
.btn:hover svg path {
  fill: #000;
}
.gallery {
  margin: 1.5em 0;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin: 0;
}
.gallery-item img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  margin: 0 !important;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}
a:hover,
.uk-link:hover,
.uk-link-toggle:hover .uk-link {
    text-decoration: none !important;
}
.uk-link-toggle:hover .uk-link, .uk-link:hover, a:hover {
  color: unset !important;
}
.uk-accordion-content {
  transition: all 0.45s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
}
.btn-secondary {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.btn-secondary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn-white {
  background-color: var(--light);
  border-color: var(--light);
  color: var(--primary);
}
.btn-white svg {
  fill: var(--primary);
}
.btn-white:hover {
  border-color: var(--light);
  background-color: transparent;
}
.btn-white:hover svg {
  fill: var(--light);
}
.btn-outline {
  background-color: transparent;
  border: 1px solid #929497;
  color: var(--primary);
}
.uk-link, a {
  color: unset;
}
.btn-outline svg {
  fill: var(--primary);
}
.btn-outline:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--light);
}
.btn-outline:hover svg {
  fill: var(--light);
}

.section-top {
  margin-top: 80px;
}
.section-top-small {
  margin-top: 60px;
}
.padding-tb {
  padding: clamp(30px, 6vw, 60px) 0;
}
.margin-tb{
  padding: clamp(30px, 6vw, 60px) 0;
}
.content__area h2 {
  margin: 0 0 12px;
}
.content__area h3 {
  margin: 0 0 12px;
}
.content__area img {
  border-radius: 10px;
}
button {
  cursor: pointer;
}

.wpcf7-form input,
.wpcf7-form textarea {
  width: 100%;
  margin-bottom: 15px;
}
/* .error-404-start */
.error-404 .page-title {
  text-align: center;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  margin-bottom: clamp(20px, 3vw, 40px);
}
.error-404 .page-content p {
  line-height: 1.5;
  margin: 0 auto;
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 40px);
}
.error-404 .btn {
  margin: 0 auto;
}
/* error-404-end */


@media(max-width:495px){
  .btn-white {
    display: none;
  }
}

/* Header section start  */
.site-header{
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
}
.site-branding{
  position: absolute;
  width: 100%;
  padding: 10px 0;
  background-color: #a3dbf3;
}
.default-header{
  background-color: #a3dbf3;

}
.site-brand{
  padding-top: clamp(10px,2vw,20px);
  padding-bottom: clamp(10px,2vw,20px);
}
.header-wrapper{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-toggle{
  display: none;
}
.menu{
  padding-left: 20px;
}
.nav-menu{
  display: flex;
  gap: 20px ;
}
#primary-menu{
  list-style: none;
  padding: 0;
  margin: 0;
}
#primary-menu li{
  font-weight: 600;
}
#primary-menu li:hover{
  color: var(--secondary);
}
.menu ul li{
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 600; 
}
.current_page_item{
  color: #27AAE1;
}
.arrow-circle{
  background: var(--light);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow-circle svg {
  width: 12px;
  height: 12px;
}
/* header-end */

/* site-footer-start */
.site-footer {
  background: var(--primary);
  padding: clamp(40px, 8vw, 90px)    
    clamp(20px, 6vw, 60px)    
    clamp(20px, 5vw, 30px);
  color: white;
  position: relative;
  overflow: hidden;
}
.site-footer::before{
  content: url(../images/footer-bg.png);
  position: absolute;
  left: 0;
  top: 40px;

}
.footer-logo img{
  filter: brightness(0) invert(1);
}
.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 2;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.footer-left {
  flex: 0 0 400px;
}

.footer-logo p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.95;
  padding: clamp(10px, 4vw, 20px)   
  0                   
  clamp(3px, 0.8vw, 2px);
  color: var(--light);
  max-width: 350px;
}

.arrow-circle {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
}

.social-links {
  display: flex;
  gap: 5px;
  padding-top: clamp(10px, 3vw, 30px);
}

.social-icon {
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  padding: 8px;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}

.footer-right {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.footer-column h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 20px;
}
.footer-column .menu{
  display: block;
}
.white{
  background: var(--light);
  color: #000;
}
.pr{
  background: var(--primary);
}
.no-pad{
  padding: 0 !important;
}
.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-column ul li a:hover {
  opacity: 1;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 35px 0 20px;
  position: relative;
  z-index: 2;
}
.footer-divider::after{
  content: url(../images/footer-bottom-bg.png);
  position: absolute;
  right: 70px;
  bottom: -60px;
}
.mts{
  margin-top: 20px;
}

.footer-bottom {
  text-align: left;
  font-size: 13px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}
.footer-bottom p{
  color: var(--light);
  font-size: 16px;
  font-weight: 500;
}
.menu-solution-container{
  width: 250px;
}
@media (max-width: 1024px) {
  .footer-container {
      flex-direction: column;
      gap: 40px;
  }

  .footer-left {
      flex: none;
  }

  .footer-right {
      flex-direction: row;
      flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 30px 25px;
  }

  .footer-right {
    flex-direction: column;
    gap: 30px;
  }
}

#mobile-primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none !important; 
}

#mobile-primary-menu li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e7e7e7;
}

#mobile-primary-menu li:last-child {
  border-bottom: none;
}
#mobile-primary-menu a {
  display: block;
  padding: 12px 5px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  font-family: var(--secondary-font, "Poppins", sans-serif);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

#mobile-primary-menu a:hover {
  color: #27AAE1;
  padding-left: 8px;
}

#mobile-primary-menu .current_page_item > a,
#mobile-primary-menu .current-menu-item > a {
  color: var(--primary);
  font-weight: 600;
}

#mobile-primary-menu .sub-menu {
  margin: 0;
  padding-left: 18px;
  border-left: 2px solid #27AAE1;
  margin-top: 5px;
}

#mobile-primary-menu .sub-menu li {
  border-bottom: none;
}

#mobile-primary-menu .sub-menu a {
  font-size: 16px;
  padding: 10px 5px;
  color: #444;
}

#mobile-primary-menu .sub-menu a:hover {
  color: #27AAE1;
}

.mobile-menu-drawer.active #mobile-primary-menu {
  display: block !important;
}

.mobile-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  color: #333;
  z-index: 9999;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none; 
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 999;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: #FBF5FF;
  z-index: 1000;
  padding: 30px 25px;
  box-shadow: 10px 0 30px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); 
}

.mobile-menu-drawer.active {
  left: 0;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 999;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.menu-toggle.active {
    background: #1e8bb8; 
    transform: scale(0.95);
}

.menu-toggle .fa-bars-staggered::before {
    content: "\f550" !important; 
}

body.mobile-menu-open {
    overflow: hidden;
    height: 100vh;
}

.mobile-menu-drawer {
    left: -100%;
    transition: left 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mobile-menu-drawer.active {
    left: 0;
}

.mobile-menu-backdrop {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-logo {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-logo img {
  width: 120px;
  height: auto
}

.mobile-menu-drawer .header-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--primary);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 5px;
    z-index: 1002;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.mobile-close-btn:hover,
.mobile-close-btn:active {
    background: #27AAE1;
    color: white;
    border-color: #27AAE1;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(39, 170, 225, 0.3);
}

.mobile-menu-drawer.active .mobile-close-btn {
    animation: pulseOnce 0.6s ease-out;
}

@keyframes pulseOnce {
    0%   { transform: scale(0.8); opacity: 0; }
    60%  { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 996px) {
  .footer-divider::after {
    content: unset;
  }
  .site-footer::before {
    content: unset;
  }
  #primary-menu {
    display: none !important;
  }
  .header-wrapper > .header-btn {
    display: none !important;
  }
  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #27AAE1;
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 20px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
  }
  .menu-toggle.active .fa-bars-staggered::before {
    content: "\f00d" !important;
  }
  .mobile-menu-drawer #mobile-primary-menu {
    display: block !important;
  }
  
}

@media (min-width: 997px) {
  .mobile-menu-drawer,
  .mobile-menu-backdrop,
  .menu-toggle {
    display: none !important;
  }
}
@media(max-width: 420px){
  .subscribe-box input {
    width: 100px;
  }
}