/* ------------------------------------------------------------------------------

  Template Name: Ramsay
  Description: Ramsay - Creative Personal Onepage HTML Template
  Author: Paul_tf
  Author URI: http://themeforest.net/user/paul_tf
  Version: 1.0
  
  1.  Global

      1.1 General
      1.2 Typography
      1.3 Fields
      1.4 Buttons
      1.5 Icons
      1.6 Loader
      1.7 Helpers

  2.  Navbar 

      2.1 Navbar elements
      2.2 Sidebar Menu
      
  3.  Homepage

      3.1 Sections
      3.2 Section Specialization
      3.3 Section Resume
      3.4 Section About
      3.5 Section Projects
      3.6 Section Partners
      3.7 Section Testimonials

  4. Project Detail

  5. Responsive styles

      5.1 Min width 576px
      5.2 Min width 768px
      5.3 Min width 992px
      5.4 Min height 500px
      5.5 Min height 600px
      5.6 Min height 700px



/*-------------------------------------------------------------------------------
 1. Global
-------------------------------------------------------------------------------*/



/* 1.1 General */



@import url('bootstrap.min.css');
@import url('bootstrap-grid.min.css');
@import url('animate.css');
@import url('ionicons.min.css');
@import url('linearicons.css');
@import url('magnific-popup.css');
@import url('jquery.pagepiling.css');
@import url('owl.carousel.css');
/* my css*/
#signature{
  /* font-family: 'Swiss 721 Bold', sans-serif ; */
  font-size: 1.97rem;
  text-align: right; 
  color: #5b5b5b;
}
text-sucess{
  color: #5b5b5b;
  font-size: smaller;
}
.text-sucess1{
  color: #5b5b5b;
  font-size: smaller;
  text-align: left;
  margin: 0;
  padding: 0;
}

    @font-face {
    font-family: 'Swiss 721 Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Swiss 721 Bold'), 
         url('../fonts/Swiss721Bold.woff') format('woff'),
         url('../fonts/Swiss721Bold.ttf') format('truetype');
    }
    

    @font-face {
    font-family: 'Swiss 721 Black';
    font-style: normal;
    font-weight: normal;
    src: local('Swiss 721 Black'), 
         url('../fonts/Swiss721Black.woff') format('woff'),
         url('../fonts/Swiss721Black.ttf') format('truetype');
    }

/* === NAVBAR BASE === */
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
background: transparent;
  padding: 12px 30px;
  z-index: 1000;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.4); */

}


.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* === BRAND === */
.custom-brand {
  text-decoration: none;
}
.brand-info {
  color: #fff;
}
.brand-name {
  font-size: 18px;
  font-weight: 600;
}
.brand-tagline {
  font-size: 14px;
  font-style: italic;
  color: #00a8e8;
}
/* .brand-logo {
  height: 80px !important;
  width: auto !important;
} */

.brand-logo {
  max-height: 130px;
  width: auto;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
/* === LINKS === */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: #5b5b5b;;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links li a:hover {
  color: #00a8e8;
}
.nav-links li a.active {
  color: #00a8e8 !important;
}

/* === DESKTOP SPECIFIC === */
@media (min-width: 901px) {
  .nav-links {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    backdrop-filter: none !important;
    flex-direction: row !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 25px !important;
    transition: none !important;
    z-index: auto !important;
    overflow: visible !important;
  }
  
  .nav-links li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  .nav-links a {
    color: #5b5b5b !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    display: inline !important;
    text-align: left !important;
    min-width: auto !important;
    background: transparent !important;
  }
  
  .nav-links a:hover {
    color: #00a8e8 !important;
    background: transparent !important;
    transform: none !important;
  }
  
  .hamburger {
    display: none !important;
  }
  
  .nav-close {
    display: none !important;
  }
}

/* === CTA BUTTON === */
/* .join-btn {
  background: #00a8e8;
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 4px;
}
.join-btn:hover {
  background: #007bb8;
} */

/* === HAMBURGER MENU === */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.15); /* Semi-transparent background */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Transparent border */
  backdrop-filter: blur(1px); /* Blur effect */
  -webkit-backdrop-filter: blur(1px); /* Safari support */
  border-radius: 12px; /* Rounded corners */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); /* Subtle shadow */
  padding: 10px; /* Add some padding around the button */
  transition: all 0.3s ease; /* Smooth transition for hover effects */

}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 2px;
}
/* .brand-logo {
  height: 60px;   
  width: auto;
} */
/* === HAMBURGER ACTIVE STATE === */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.hamburger:hover {
  background: rgba(255, 255, 255, 0.25); /* Slightly brighter on hover */
  border: 1px solid rgba(255, 255, 255, 0.5); /* Brighter border on hover */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35); /* Stronger shadow on hover */
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #000; /* Color of the lines */
  border-radius: 2px;
  transition: background 0.3s ease; /* Smooth transition for hover effects */
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .custom-navbar{
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .mobile-only {
    margin-top: 10px;
  }  
}
.nav-close{
  display: none;
}

/* === MODERN MOBILE NAVBAR === */
@media (max-width: 900px) {
  .custom-navbar {
    height: auto;
    min-height: 70px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 30px;
  }

  .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .brand-logo {
    height: 60px !important; 
    width: auto;
    max-width: 200px;
    object-fit: contain;
  }

  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  /* === Mobile Menu Overlay === */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden initially */
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .nav-links li:first-child {
    margin-top: 40px !important;
  }

  .nav-close {
    display: block;          /* show on mobile */
    position: absolute;
    top: 25px;
    right: 30px;
    background: transparent;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #333;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .nav-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
  }

  /* Slide-in animation when open */
  .nav-links.open {
    right: 0;
  }

  /* Individual link animation */
  .nav-links li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    padding: 0;
  }

  .nav-links.open li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.open li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.open li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.open li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.open li:nth-child(4) { transition-delay: 0.25s; }
  .nav-links.open li:nth-child(5) { transition-delay: 0.3s; }
  .nav-links.open li:nth-child(6) { transition-delay: 0.35s; }
  .nav-links.open li:nth-child(7) { transition-delay: 0.4s; }
  .nav-links.open li:nth-child(8) { transition-delay: 0.45s; }
  .nav-links.open li:nth-child(9) { transition-delay: 0.5s; }
  .nav-links.open li:nth-child(10) { transition-delay: 0.55s; }

  /* Link styling inside menu */
  .nav-links a {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    transition: all 0.3s ease;
    /* padding: 15px 25px; */
    border-radius: 12px;
    display: block;
    text-align: center;
    min-width: 200px;
  }

  .nav-links a:hover {
    color: #00a8e8;
    background: rgba(0, 168, 232, 0.1);
    transform: scale(1.05);
  }

  .nav-links a.active {
    color: #00a8e8;
    background: rgba(0, 168, 232, 0.15);
  }

  /* Ensure hamburger lines are visible */
  .hamburger span {
    background: #333 !important;
  }

}

/* footer*/
/* Footer Base */

/* Footer Base */
/* base */
.custom-footer { background:#fff; padding:20px 20px 10px; box-sizing:border-box; font-size:14px; }
.custom-footer * { box-sizing: border-box; }

/* footer container: 3 equal columns (flex) */
.footer-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
  padding:0 20px;
}

/* column */
.footer-column{
  flex: 0 1 33.333%; /* each column tries to take 1/3 */
  min-width:180px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:4px 8px;
  text-align:center;
}

/* logo */
.footer-logo img{ max-width:240px; height:auto; display:block; }

/* center image - keep it responsive but not overflow */
.footer-image img{ max-width:250px; width:100%; height:auto; border-radius:10px;}

/* contact/socials */
.footer-contact h4{ margin:0 0 8px; color:#008dd2; font-weight:600; font-size:16px; }
/* --- Social Icons Circle Style --- */
.footer-socials {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials a i {
  color: #fff; 
  font-size: 16px;
  line-height: 1;
  transition: transform 0.3s ease;
}

/* Hover effect */
.footer-socials a:hover {
  background-color: #008dd2; 
  transform: translateY(-3px);
}

.footer-socials a:hover i {
  transform: scale(1.1);
}



/* bottom bar - aligned left/right and aligned with footer-container */
.footer-bottom{
  margin:30px auto 0;
  border-top:1px solid #e6e6e6;
  max-width:1700px;
  height: 30px;
  padding-top: 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#666;
  gap:10px;
}

/* small screens - stack */
@media (max-width: 900px){
  .footer-container{ flex-direction:column; padding:0 16px; gap:24px; }
  .footer-column{ flex: 0 1 100%; min-width:unset; }
  .footer-bottom{ flex-direction:column; text-align:center; gap:8px; padding:12px 16px; }
}

/* optional: tiny screens - shrink icons */
@media (max-width: 480px){
  .footer-socials a{ font-size:18px; }
  .footer-logo img{ max-width:180px; }
  .footer-image img{ max-width:200px; }
}


/* -------------------
   RESPONSIVE STYLES
------------------- */


/* footer*/







/* template code */


html{
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
}

body{
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.9428;
  color: #717171;
  /* background-size: cover; */
  
  -webkit-overflow-scrolling:touch;

}
  

::-webkit-scrollbar{
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #008dd2;
}

::selection{
  background-color:#008dd2;
  color:#fff;
}

-webkit-::selection{
    background-color:#008dd2;
    color:#fff;
}

::-moz-selection{
    background-color:#008dd2;
    color:#fff;
}



/* 1.2 Typography */



h1,
.h1{ 
  font-weight: 700;
  font-size: 3.428rem;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.025em;
  margin:0.5em 0;
}

h2,
.h2{ 
  font-weight: 600;
  font-size: 2.971rem;
  line-height: 1.166;
  color: #5b5b5b;
  letter-spacing: 0;
  margin:2.6rem 0;
}

h3,
.h3{
  font-weight: 600;
  font-size: 2.142rem;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: #fff;
  margin:2.6rem 0;
}

h4,
.h4{
  
  font-weight: 600;
  font-size: 1.714rem;
  line-height: 1.25;
  letter-spacing: 0.025em;
  color: #008dd2;
  /* margin:2.6rem 0; */
}

h5,
.h5{
  font-weight: 600;
  font-size: 1.571rem;
  line-height: 1.1;
  letter-spacing:0;
  color: #fff;
  margin:2.6rem 0;
}

h6,
.h6{
  font-weight: 600;
  font-size: 1.285rem;
  line-height: 1.3333;
  letter-spacing:0;
  color: #fff;
  margin:2.6rem 0;
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a{
  color:inherit;
}

h1 a:hover,
.h1 a:hover,
h2 a:hover,
.h2 a:hover,
h3 a:hover,
.h3 a:hover,
h4 a:hover,
.h4 a:hover,
h5 a:hover,
.h5 a:hover,
h6 a:hover,
.h6 a:hover{
  text-decoration: none;
}


strong{
  font-weight: 600;
}

p,
blockquote{
  margin-bottom: .6rem;
}

blockquote{
  font-size: 1.714rem;
  letter-spacing: 0.025em;
  line-height: 1.5;
  padding: 0;
  width: 80%;
  padding-left: 6.8rem;
  border-left: 0.3rem solid #008dd2;
  margin-top: 5rem;
  color:#fff;
}

cite{
  display: block;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0;
  font-style: normal;
}

a {
  color:#008dd2;
  -webkit-transition: color .3s ease-out;
       -o-transition: color .3s ease-out;
          transition: color .3s ease-out;
}

a:hover {
  color:#008dd2;
  outline: none;
}


a:focus{
  text-decoration: none;
}


/* 1.3 Fields */



input[type='text'],
input[type='address'],
input[type='url'],
input[type='password'],
input[type='email'],
input[type="search"],
input[type="tel"],
textarea{
  display: inline-block;
  width:100%;
  font-size: 1rem;
  border-radius: 0.75em;
  color: #fff;
  background-color:#2f2f2f;
  border:0;
  border-radius: 0;
  padding: 0.7rem 1rem 0.7rem;
  -webkit-box-shadow: 0 0 25px rgba(0,0,0,0.5);
          box-shadow: 0 0 25px rgba(0,0,0,0.5);
      -webkit-appearance: none;
  -webkit-transition: all .15s;
       -o-transition: all .15s;
          transition: all .15s;
}

textarea{
  padding-top: 0.8rem;
  height: 15rem;
  resize:none;
  -webkit-transition: all .3s;
       -o-transition: all .3s;
          transition: all .3s;
}

input[type='text']:focus,
input[type='address']:focus,
input[type='url']:focus,
input[type='password']:focus,
input[type='email']:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
textarea:focus{
  border-color: #008dd2;
  outline: 0;
  color: #fff;
}


input::-moz-placeholder {
  color: #999999;
  opacity: 1;
}

input:-ms-input-placeholder {
  color: #999;
}

input::-webkit-input-placeholder {
  color: #999;
}

textarea::-moz-placeholder{
  color: #999;
  opacity: 1;
}

textarea:-ms-input-placeholder {
  color: #999;
}

textarea::-webkit-input-placeholder {
  color: #999;
}

.form-group{
  margin-bottom: 30px;
}

label.error{
  color: #fff;
  margin:0.8rem 0 0;
}



/* 1.4 Buttons */



.btn{
  color:#fff;
  letter-spacing: 0.025em;
  font-size: 1rem;
  display: inline-block;
  border:0;
  border-radius: 0;
  padding: 1.1em 2.28em 1em;
  background-color: #008dd2;
  text-decoration: none;
  -webkit-transition: all .3s ease-out!important;
          transition: all .3s ease-out!important;
}

.btn:hover,
.btn:focus{
  background-color:#f5468b;
  color: #fff;
  -webkit-box-shadow:none;
  box-shadow: none;
  outline: none!important;
}



/* 1.5 Icons */



.icon{
  display: inline-block;
}

.ion-ios-play{
  position:relative;
  width: 5rem;
  height: 5rem;
  padding-left: 0.2rem;
  line-height: 5rem;
  text-align:center;
  border:1px solid #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-right:1.5rem;
  margin-top: 4rem;
  color: #fff;
  transition: all .3s ease-out;
}

.ion-ios-play:hover{
  color: #008dd2;
  border: 1px solid #008dd2;
}

.ion-ios-play:after {
  content: '';
  position: absolute;
  right: 100%;
  top:50%;
  height: 1px;
  width: 99999rem;
  background: #fff;
  margin-right: 2rem;
}



/* 1.6 Preloader */



.animsition{
  position:absolute;
  z-index: 1000;
  left: 0;
  width: 100%;
  top:0;
  height: 100%;
}

.loader{
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background:#1b1b1b;
  color:#4b4b4b;
  text-align: center;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #008dd2;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}



/* 1.7 Helpers */





.text-muted{
  color: #999!important;
}

.text-white{
  color: #000000 !important;
}

.text-primary{
  color:#008dd2!important;
  font-family: 'Swiss 721 Bold', sans-serif;

}
#texty{
  color: #5b5b5b!important;
  font-family: 'Swiss 721 Bold', sans-serif;
}
.masked{
  position: relative;
}

.masked:before,
.masked-03:before{
  content:'';
  position: absolute;
  left: 0;
  top:0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
}

.masked-03:before{
  opacity: 0.3;
}



/*-------------------------------------------------------------------------------
  2. Navbar
-------------------------------------------------------------------------------*/



.navbar{ 
  position: absolute;
  display:block;
  z-index: 101;
  left:0;
  top:0;
  width:100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: #fff;
  margin:0;
  border-radius: 0;
  
}

.navbar-bg{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  width: 100%;
  height: 0;
  background: #272727;
  z-index: -1;
  box-shadow: none;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -o-transition: all 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  transition: all 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}

.navbar-fixed{
  position: fixed;
}

.navbar-fixed .navbar-bg{
  height: 100%;
  
  box-shadow: 0 0 35px rgba(0,0,0,0.2);
}

.navbar .brand{
  float: left;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}



/* 2.1 Navbar elements */



.brand{
  line-height: 1.6;
  color: #fff;
  display: inline-block;
}

a.brand:hover,
a.brand:focus{
  text-decoration: none;
  color: #fff;
}

.brand img{
  display: inline-block;
  vertical-align:middle;
  margin-right: 0.65rem;
}

.brand-info{
  display: inline-block;
  vertical-align: middle;
}

.brand-name{
  font-weight: 600;
  font-size: 1.714rem;
  line-height: 1;
}

.brand-text{
  font-size: 0.857rem;
  font-weight: 300;
  margin-top: -0.3rem; 
}

.navbar-toggle{
  float: right;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
  margin-top:0.8rem;
}

.navbar-toggle:focus{
  outline:none;
}

.navbar-toggle .icon-bar{
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 4px;
}

.navbar-toggle:hover .icon-bar{
  background-color:  #008dd2;
}

.navbar .social-list{
  float: right;
  margin-right: 10%;
}

.social-list{
  overflow:hidden;
}

.social-list-bottom{
  display: none;
  position: absolute;
  z-index: 10;
  right:0;
  bottom:2.4rem;
  color: #000;
}


.social-list a{
  float: left;
  font-size: 1.428rem;
  line-height: 1;
  color:#fff;
  margin-left: 2rem;
}

.social-list a:first-child{
  margin-left: 0;
}

.social-list a:hover{
  color:#008dd2;
  text-decoration: none;
}

.navbar-spacer{
  float: right;
  margin:-1rem 4.5rem 0;
  width: 1px;
  height: 3.3rem;
  background-color: #3c3c3c;
}

.navbar-address{
  float: right;
  font-weight: 600;
  text-transform: uppercase;
}

.contacts{
  float: left;
  margin-left: 9rem;
  margin-top:0.5rem;
}

.contacts .contact-item{
  display: inline-block;
  color: #fff;
  margin-right:2rem;
}

.contacts .contact-item a{
  color: #fff;
}


.contacts .contact-item.spacer{
  opacity: 0.3;
}

.contact-address{
  margin-top:5rem;
}

#success,
#error{
  display:none;
}

.form-group-message{
  display:none;
}

/* 2.2 Sidebar menu */



.click-capture{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 99;
  opacity: 0;
  background: rgba(0,0,0,.3);
  transition: opacity .5s;
}

.menu{
  position: fixed;
  top:0;
  bottom:0;
  right: 0;
  width: 100%;
  z-index: 102;
  background-color: #1b1b1b;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.close-menu{
  position: absolute;
  z-index: 2;
  top: 2.3rem;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  margin-top:0.8rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.close-menu:hover{
  color: #008dd2;
}

.menu-list{
  opacity: 0;
  position: absolute;
  left: 0;
  top:5rem;
  bottom:10.5rem;
  padding-left: 15%;
  overflow-x:hidden;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  overflow-scrolling:touch;
  font-weight: 600;
  letter-spacing: -0.025rem;
  list-style: none;
  margin:0;
  -webkit-transform: translateY(3rem);
  -ms-transform: translateY(3rem);
  -o-transform: translateY(3rem);
  transform: translateY(3rem);
  -webkit-transition: transform 0.5s 0.6s ease, opacity 0.5s 0.6s ease;
  -o-transition: transform 0.5s 0.6s ease, opacity 0.5s 0.6s ease;
  transition: transform 0.5s 0.6s ease, opacity 0.5s 0.6s ease;
}

.menu-list li a{
  color: #636363;
}

.menu-list .active > a,
.menu-list li a:hover{
  text-decoration: none;
  color: #fff;
}

.menu-list > li{
  font-size: 1.65rem;
  line-height: 1;
}

.menu-list > li{
  margin-top: 2.7rem;
}

.menu-list > li:first-child{
  margin-top: 0;
}


.menu-list ul{
  display: none;
  list-style: none;
  padding:0;
  margin: 0;
}

.menu-list ul li{
  font-size: 1.142rem;
  margin-top: 1.142rem;
}

.menu-list ul li:first-child{
  margin-top:2.4rem;
}

.menu-footer{
  position: absolute;
  left: 15%;
  bottom: 4rem;
}

.menu-footer .social-list{
  opacity: 0;
  -webkit-transform: translateY(3rem);
  -ms-transform: translateY(3rem);
  -o-transform: translateY(3rem);
  transform: translateY(3rem);
  -webkit-transition: all 0.5s 0.7s ease;
  -o-transition: all 0.5s 0.7s ease;
  transition: all 0.5s 0.7s ease;
}

.menu-footer .social-list a{
  color: #7e7e7e;
  margin:0;
  margin-right:2.7rem;
}

.menu-footer .social-list a:last-child{
  margin-right: 0;
}

.menu-footer .social-list a:hover{
  color:#008dd2;
}

.menu-footer .copy{
  opacity: 0;
  display: none;
  margin-top: 3.2rem;
  color: #fff;
  line-height: 1.71rem;
  -webkit-transform: translateY(2rem);
  -ms-transform: translateY(2rem);
  -o-transform: translateY(2rem);
  transform: translateY(2rem);
  -webkit-transition: all 0.5s 0.9s ease;
  -o-transition: all 0.5s 0.9s ease;
  transition: all 0.5s 0.9s ease;
}

.menu-is-opened .click-capture{
  visibility: visible;
  opacity: 1;
}

.menu-is-opened .menu{
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  box-shadow: 0 0 25px rgba(0,0,0,0.07);
}

.menu-is-opened .menu .menu-lang,
.menu-is-opened .menu-list,
.menu-is-opened .menu .menu-footer .social-list,
.menu-is-opened .menu .menu-footer .copy{
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
  opacity: 1;
}

.menu-is-closed .menu .menu-lang,
.menu-is-closed .menu .menu-list,
.menu-is-closed .menu .menu-footer .social-list,
.menu-is-closed .menu .menu-footer .copy{
  opacity: 0;
  -webkit-transition-delay: 0s;
  -o-transition-delay:0s;
  transition-delay: 0s;
}




/*-------------------------------------------------------------------------------
  3. Homepage
-------------------------------------------------------------------------------*/



.boxed{
  padding-left: 1.7rem;
  padding-right: 1.7rem;
}


.left-boxed{
  left: 1.7rem;
}

.right-boxed{
  right:1.7rem!important;
}

.copy-bottom{
  display: none;
  position: absolute;
  z-index: 10;
  left:0;
  bottom:2.4rem;
  color: #000;
}

.copy-bottom.white{
  color: #fff;
}

#pp-nav{
  display: none;
  z-index: 100;
  width: 2.1428rem;
  margin-top:0!important;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

#pp-nav.right{
  right:0;
}

#pp-nav .pp-nav-up,
#pp-nav .pp-nav-down{
  display: none;
  font-size: 1.3428rem;
  cursor: pointer;
  color: #000;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#pp-nav .pp-nav-up{
  margin-bottom: 3.5rem;
}

#pp-nav .pp-nav-down{
  margin-top: 3.5rem;
}

#pp-nav li, .pp-slidesNav li{
  margin:1.928rem auto;
  width: 10px;
  height: 10px;
}

#pp-nav span, .pp-slidesNav span{
  left: 0;
  top: 0;
  cursor: pointer;
  width: 8px;
  height: 8px;
  background: #000;
  border: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;

}

#pp-nav .pp-nav-up:hover,
#pp-nav .pp-nav-down:hover,
#pp-nav.white .pp-nav-up:hover,
#pp-nav.white .pp-nav-down:hover{
  color: #008dd2;
}

#pp-nav.white .pp-nav-up,
#pp-nav.white .pp-nav-down{
  color: #fff;
}

#pp-nav.white span, .pp-slidesNav span{
  background: #fff;
}

#pp-nav li .active span, .pp-slidesNav .active span,
#pp-nav span:hover, .pp-slidesNav span:hover{
  opacity: 1;
}

#pp-nav li .active span, .pp-slidesNav .active span{
  opacity: 1;
  background: #008dd2;
  transform:scale(1.6);
}



/* 3.1 Sections */



.pagepiling .section{
  /* background: #1b1b1b; */
  padding-top: 10.3rem;
  padding-bottom: 6rem;
  /* display: flex;
  justify-content: center; */
  
}

.pagepiling .pp-scrollable{
  padding: 0;
  overflow-x:hidden;
}

.pp-scrollable .vertical-centred{
  padding-top: 10.3rem;
  padding-bottom: 6rem;
}

.pp-scrollable.section-2 .vertical-centred{
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.pp-scrollable.section-3 .vertical-centred{
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.pp-scrollable.section-7 .vertical-centred{
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.pp-scrollable.section-8 .vertical-centred{
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.pp-scrollable .vertical-centred.v2{
  padding-top:6rem;
  padding-bottom: 9rem;
}

.scroll-wrap{
  position: relative;
  min-height: 100%;
}

.scrollable-content{
  white-space: nowrap;
  width: 100%;
  font-size: 0;
}

.scrollable-content:before{
  content: '';
  display: inline-block;
  height: 100vh;
  vertical-align: middle;
}

.background-image {
  background-image: url('../images/bg/bg-2.jpg'); /* Specify your image path */
  background-repeat: no-repeat; /* Prevent image repetition */
  background-position: center center; /* Center the image */
  background-size: cover; /* Scale image to cover the entire container */
  background-attachment: fixed; /* Keep image fixed during scroll (optional) */
  position: fixed; /* Fix the background element */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Place background behind other content */
}

.vertical-centred{
  width: 100%;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  font-size: 1rem;
}

.boxed-inner{
  position: relative;
  padding:0;
}

.section-bg{
  position: absolute;
  left: 0;
  top:0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background: transparent !important;
}


.vertical-title{
  position: absolute;
  text-align: center;
  font-weight: 600;
  opacity: 0.05;
  font-size:7rem;
  top: 50%;
  left:8rem;
  transform: translateY(-50%);
}

.vertical-title span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s 0.6s;
  white-space: nowrap;
  letter-spacing: 2.5rem;
}

.section.active .vertical-title span{
  letter-spacing: 0;
  opacity: 1;
}

.section .intro{
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.35s 0.6s ease;
}

.section.active .intro{
  opacity: 1;
  transform: scale(1) translate(0);
}


.fadeY{
  opacity: 0;
  transition:all 0.5s 1.5s ease;
  -webkit-transform: translateY(-2rem);
  -ms-transform: translateX(-2rem);
  -o-transform: translateY(-2rem);
  transform: translateY(-2rem);
}


.fadeY-1{
  transition:all 1s 0.5s;
}

.fadeY-2{
  transition:all 1s 1s;
}

.fadeY-3{
  transition:all 1s 1.5s;
}

.section.active .fadeY{
  opacity: 1;
  transform: translate(0);
}

.section .intro .project-title{
  opacity: 0;
  transition: all 0.5s;
  transform:translateY(2rem);
  transition-delay: 0.2s;
}

.section .intro .project-row:nth-child(2) .project-title{
  transition-delay: 0.4s;
}

.section .intro .project-row:nth-child(3) .project-title{
  transition-delay: 0.6s;
}

.section .intro .project-row:nth-child(4) .project-title{
  transition-delay: 0.8s;
}

.section.active .intro .project-title{
  transform:none;
  opacity: 1;
  transform:translateY(0);
}

.subtitle-top{
  line-height: 1.714;
  margin-top:0;
  margin-bottom: 2.8rem;
  letter-spacing: 0.1em;
}

.title{
  letter-spacing: -0.025em;
  line-height: 1.33333;
  margin:0 0 3rem;
}

.display-1{
  font-size: 4.28rem;
  line-height: 1;
  letter-spacing: -0.05em;
  margin:0;
}

.display-2{
  font-size: 6.54rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0;
}


.popup-youtube{
  display:inline-block;
  color:#fff;
  font-size: 1.26rem;
}

.popup-youtube:hover{
  text-decoration: none;
}



/* 3.2 Section Specialization */



.icon-specialization{
  font-size:5rem;
  color:#008dd2;
}

.row-specialization{
  margin:0 -2rem;
}

.col-specialization{
  padding:0 2rem;
}



/* 3.3 Section Resume */


.section-3 {
  /* display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; */
}

.section-3 .vertical-centred{
  padding-top:6rem;
  height: fit-content;
}
.resume-title{
  position: relative;
  color: #fff;
  margin:0 0 2rem;
}

.resume-header{
  position:relative;
  z-index: 2;
  top:5rem;
  padding:0 3.6rem;
  transition: all 0.5s;
}

.resume-row{
  position: relative;
  padding-bottom: 2.2rem;
  margin-bottom: 2.2rem;
  border-bottom: 1px solid #fff;
  transition:all 0.5s;
}

.resume-row:last-child{
  padding-bottom: 0;
  margin-bottom: 0;
  border:0;
}

.col-resume{
  position:relative;
  top:0;
  padding:2.2rem 3.6rem 3.6rem;
  background: rgba(255,255,255,0.1);
  transition:background 0.5s, top 0.5s;
}

.col-resume:hover{
  background: #008dd2;
}

.resume-type{
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-weight: 500;
  position: relative;
  font-size:1.125rem;
  margin-bottom: 1.2rem;
  transition: all 0.5s;
}

.resume-study{
  margin-bottom: 1rem;
}

.resume-date{
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.resume-text{
 margin-top:1.2rem;
 margin-bottom: 0;
}

.resume-text.last{
  margin-bottom: 0;
}



/* 3.4 Section About */



.experience-box{
  display:inline-block;
  font-weight: 300;
  position: relative;
  white-space:nowrap;
  padding:3.75rem;
  border:1px solid #fff;
}

.experience-border{
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    width: 20.15rem;
    height: 41.15rem;
    border: 0.657rem solid #ffeb00;
    left: 5rem;
    top: -2rem;
}

.experience-content{
  display: inline-block;
  vertical-align: middle;
  position: relative;

}

.experience-number{
  font-size:23.142rem;
  line-height: 1;
  font-weight:400;
  color: #fff;
}

.experience-info{
  position:relative;
  font-size: 1.25rem;
  line-height: 1.481;
  color: #fff;
  text-align: right;
}

@media (min-width: 576px){
  .experience-info{
    margin-top:-1px;
  }
}

.experience-info div{
  display:inline-block;
  position:relative;
}

.experience-info div:after{
  position:absolute;
  right:100%;
  content:'';
  width:5rem;
  bottom: 0.8rem;
  height:1px;
  background: #fff;
}

.progress-bars{
  margin-top:3rem;
}

.progress{
  height: 2.9rem;
  margin-bottom: 2rem;
  border-radius:0;
  background:  #222222;
}

.progress:last-child{
  margin-bottom: 0;
}

.progress-bar-wrp{
  width: 0;
  overflow: hidden;
  transition:all 0.5s;
  height: 100%;
}

.progress:nth-child(2) .progress-bar-wrp{
  transition-delay:0.2s;
}

.progress:nth-child(4) .progress-bar-wrp{
  transition-delay:0.5s;
}

.progress:nth-child(6) .progress-bar-wrp{
  transition-delay:0.8s;
}

.section.active .progress-bar-wrp,
.pp-easing .progress-bar-wrp{
  width: 100%;
}

.progress-bar{
  background-color:#008dd2;
  height: 100%;
}

.progress-bars .number{
  color:#fff;
  margin-bottom: 1rem;
}



/* 3.5 Section Projects*/



.bg-changer{
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  overflow:hidden;
}

.bg-changer .section-bg{
  opacity: 0;
  will-change: opacity, transform;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0.5s 0.2s ease,  transform 5s 0.2s ease;
  -o-transition: opacity 0.5s 0.2s ease,  transform 5s 0.2s ease;
  transition: opacity 0.5s 0.2s ease, transform 5s 0.2s ease;
}

.section-bg.mask:after{
  content:'';
  width:100%;
  height:100%;
  position:absolute;
  background: rgba(0,0,0,0.4);
  transition: all 0.5s;
}

.section-bg.mask.hide:after{
  opacity: 0;
}


.bg-changer .active{
  opacity: 1;
  -webkit-transform: scale(1.05);
  -ms-transform:scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.bg-changer .section-bg:first-child{
  opacity: 1;
}

.project-row{
  position: relative;
  margin-bottom: 3rem;
}

.view-all-projects,
.project-row,
.project-detail-row{
  padding-left:3rem;
}

.project-row:last-child{
  margin-bottom: 0;
}

.project-number{
  position: absolute;
  left: 0;
  top:1rem;
  font-size:1.25rem;
}

.project-row a,
.project-detail-row a{
  display:block;
  text-decoration: none;
  color:#fff;
  transition:opacity 0.3s;
}

.project-row a{
  opacity: 0.5;
}

.project-detail-row{
  position:relative;
}

.project-row a:after,
.project-row a.active:after,
.project-detail-row a:after{
  content:'';
  opacity:0;
  position: absolute;
  top:2.2rem;
  margin-left:-4rem;
  height: 1px;
  background: #fff;
  width:100000px;
  transition:opacity 0.3s;
}

.project-detail-row a:after{
  top:5.5vmin;
}

.project-row a:hover:after,
.project-row a.active:after,
.project-detail-row a:hover:after{
  opacity:1;
}

.project-row a.active{
  opacity: 1;
}

.project-title{
  font-size:3.68rem;
  font-weight: 400;
  margin:0;
}

.project-detail-row .project-title{
  font-size:9vmin;
}

.project-category{
  font-size: 1rem;
}

.view-all{
  position: relative;
  color: #fff;
  font-size:1.26rem;
  margin-top:2.3rem;
}

.view-all a{
  color:#fff;
  position: relative;
}

.view-all a:before{
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  background: #fff;
  height: 1px;
  width: 1000000px;
  margin-right: 2rem;
}


.view-all a:hover{
  color:#008dd2;
  text-decoration: none;
}

@media (min-width: 768px){

  .view-all-projects,
  .project-row,
  .project-detail-row{
    padding-left: 20%;
  }

  .project-title{
    font-size:4.68rem;
  }

  .project-row a:after,
  .project-row a.active:after,
  .project-detail-row{
    top:3rem;
  }

  .project-number{
    top:1.7rem;
  }
  
  .project-detail-row .project-number{
    top:3vmin;
  }
}


/* 3.6 Section Partners */



.row-partners{
  margin:0 -5rem 0;
}

.col-partner{
  padding:0 5rem;
  margin-top: 5rem;
  text-align: center;
  transition:all 0.7s;
  opacity: 0;
}

.section.active .col-partner{
  opacity: 1;
}

.section.active .col-partner:nth-child(1){
  transition-delay: 0.3s;
}

.section.active .col-partner:nth-child(2){
  transition-delay: 0.4s;
}

.section.active .col-partner:nth-child(3){
  transition-delay: 0.5s;
}

.section.active .col-partner:nth-child(4){
  transition-delay: 0.6s;
}

.section.active .col-partner:nth-child(5){
  transition-delay: 0.7s;
}

.section.active .col-partner:nth-child(6){
  transition-delay: 0.8s;
}

.section.active .col-partner:nth-child(7){
  transition-delay: 0.9s;
}

.section.active .col-partner:nth-child(8){
  transition-delay: 1s;
}

.section.active .col-partner:nth-child(9){
  transition-delay: 1.1s;
}

.section.active .col-partner:nth-child(10){
  transition-delay: 1.2s;
}

.section.active .col-partner:nth-child(11){
  transition-delay: 1.3s;
}

.section.active .col-partner:nth-child(12){
  transition-delay: 1.4s;
}

.col-partner img{
  margin:0 auto;
  max-width: 100%;
  opacity: 0.4;
}

.col-partner:hover img{
  opacity: 1;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}



/* 3.7 Section Testimonials */


.bg-quote{
  position: absolute;
  right:12%;
  top:20%;
}

.bg-quote:before{
  position: absolute;
  content:'';
  right:0;
  top:0;
  width: 138px;
  height: 276px;
  background: url(../images/bg/quote.png) no-repeat;
}

.bg-quote:after{
  position: absolute;
  content:'';
  right:138px;
  width: 138px;
  height: 276px;
  margin-right: 5.75rem;
  background: url(../images/bg/quote.png) no-repeat;
}

.author-name{
  font-size: 1.125rem;
  text-transform: uppercase;
  line-height: 1.333;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.owl-dot{
  display: none;
}

.owl-dot span{
   display: block;
  width: 8px;
  height: 8px;
  background: #fff;
  position: relative;
  margin:0 10px;
  border-radius: 50%;
}

.owl-dot.active span{
  background: #008dd2;
  transform:scale(1.4);
}

/* testimonial edit */
/* Prevent card images from shrinking on small screens - fixed size and object-fit */
/* Owl Carousel & Testimonial Cards */
.owl-carousel .item > .d-flex {
  padding: 2rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 340px; /* Permanent height for row layout */
  transition: transform 0.3s ease, box-shadow 0.5s ease;
}

.owl-carousel .item > .d-flex:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 168, 232, 0.3)!important;
}

/* .owl-carousel .item > .d-flex:hover h5,
.owl-carousel .item > .d-flex:hover p {
  font-weight: 700;
  transition: font-weight 0.3s ease;
} */

/* Avatar/Image Styling */
.item img {
  width: 150px;
  height: auto;
  max-height: 120px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Text Block */
.item .d-flex > div:last-child {
  flex: 1;
  max-width: 100%;
  word-wrap: break-word;
}

/* Headings & Role */
.item h5 {
  font-weight: 600;
  margin: 0;
}
.item p.text-muted {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

/* Testimonial Text */
.item p.mb-0 {
  line-height: 1.75;
  font-size: 1rem;
}

/* Hide stars if needed */
.item .text-warning {
  display: none !important;
}

/* Responsive Breakpoints */

/* Small devices: under 768px */
@media (max-width: 768px) {
  .owl-carousel .item > .d-flex {
    flex-direction: column;
    text-align: center;
    min-height: auto; /* Let height adjust naturally */
  }

  .owl-carousel .item img {
    margin-bottom: 1rem;
  }
}

/* Medium devices: 768px - 990px */
/* @media (min-width: 727px) and (max-width: 991px) {
  .owl-carousel .item > .d-flex {
    flex-direction: column;   
    align-items: center;     
    text-align: center;
    min-height: auto;         
    gap: 1rem;                
    padding: 2rem;           /
  }

  .owl-carousel .item img {
    margin-bottom: 1rem;
    max-width: 150px;
  }

  
  .owl-carousel .owl-stage {
    display: flex;
    justify-content: center;
  }
} */

/* Owl Nav Styling */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  color: #008dd2 !important;
}
.owl-nav button {
  color: #fff;           
  border: none;
  border-radius: 50%;
  font-size: 40px;
  cursor: pointer;
  transition: 0.3s ease;
}

.owl-carousel {
  display: flex;
  align-items: stretch;
}
.owl-carousel .owl-stage {
  display: flex;
}
.owl-carousel .owl-item {
  display: flex;
  align-items: stretch;
}

@media (max-width: 768px) {
  .owl-carousel .item > .d-flex::-webkit-scrollbar {
    width: 0;
  }
}


/* testimonial edit */


/* ------------------------------------------------------------------------------- */
/*  4. Project Detail
/* ------------------------------------------------------------------------------- */



.content{
  padding-top:17rem;
}

.row-project{
  margin-bottom: 10rem;
}
.image-holder{
  display:block;
  margin:12rem auto 7rem;
  max-width:100%;
}

.social-list-detail{
  margin-top:10rem;
}

.social-list-detail a{
  font-size:2rem;
  color: #999;
}

.social-list-detail a:hover{
  color: #fff;
}

.col-project-name h1{
  margin-top:0;
}

.col-project-info p{
  margin-bottom: 0;
}

.col-project-info h5{
  margin-top: 0;
  margin-bottom: 1.2rem;

}

.project-detail-text{
  color: #fff;
  font-size:1.2rem;
  margin-bottom: 5rem;
}



/* ------------------------------------------------------------------------------- */
/*  5. Responsive styles
/* ------------------------------------------------------------------------------- */



/* 5.1 Min width 576px */



@media (min-width: 576px){

  .menu{
    width:50%;
  }
}


/* 5.2 Min width 768px */



@media (min-width: 768px){

  html{
    font-size: 13px;
  }



  /* Sidebar Menu */


  
  .menu{
    width: 50%;
  }


  /* Homepage */



  .boxed{
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .boxed-inner{
    padding-left: 0;
  }

  .right-boxed{
    right: 3rem!important;
  }

  .left-boxed{
    left: 3rem;
  }



  /* Section About */



  .section-about{
    padding-top: 12rem;
  }

  .owl-dots{
    text-align: left;
    padding-left:calc(41% + 15px);
  }

}




/* 5.3 Min width 992px */



@media (min-width: 992px){

  html{
    font-size: 14px;
  }

  .navbar{
    padding:2.7rem 0;
  }



  /* Sidebar Menu */



  .menu{
    width:35%;
    max-width: 35rem;
  }



  /* Homepage */



  .boxed{
    padding-left: 4.2857rem;
    padding-right: 4.2857rem;
  } 

  .right-boxed{
    right:4rem!important;
  }

  .left-boxed{
    left: 4.2857rem;
  }
}


/* 5.4 Min Height 500px */



@media (min-height: 500px){

  #pp-nav .pp-nav-up,
  #pp-nav .pp-nav-down{
      display: block;
  }
  
}



/* 5.5 Min Height 600px */



@media (min-height: 600px){


  /* Sidebar Menu */


  .menu .menu-lang{
    top:7rem;
  }

  .menu-list{
    top:9rem;
    bottom: 20rem;
  }

  .menu-list > li{
    font-size: 1.7rem;
  }

  .menu-footer{
    bottom: 6rem;
  }

  .menu-footer .copy{
    display: block;
  }
}



/* 5.6 Min Height 700px */



@media (min-height: 700px){

  .copy-bottom{
    display: block;
  }

  .social-list-bottom{
    display: block;
  }
  
}


/* CARD SECTION */

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

.btn {
  background-color: white;
  border: 1px solid #333;
  color: #333; /* Fixed @gray-dark variable */
  padding: 0.5rem;
  text-transform: lowercase;
}

.btn--block {
  display: block;
  width: 100%;
}
 
/* .cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards__item {
  display: flex;
  padding: 1rem;
} */

/* card by me */
.cards {
  display: flex;
  justify-content: center;   
  gap: 20px;                
  flex-wrap: wrap;           
  list-style: none;         
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;        
}



.cards__item {
  flex: 1 1 calc(25% - 20px); /* 4 cards per row */
  /* min-width: 250px;            */
  max-width: 300px;           /* keeps them from stretching too much */
  box-sizing: border-box;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .cards__item {
    flex: 1 1 100%;   /* full width on mobile */
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 990px) {
  .cards__item {
    flex: 0 0 calc(50% - 10px); /* 2 cards per row with proper gap */
    max-width: calc(50% - 10px); 
  }
  
  .cards {
    justify-content: center; /* center the row */
  }
}
@media (min-width: 991px) {
  .cards__item {
    flex: 1 1 250px; /* auto-fit 3–4 cards depending on space */
    max-width: 300px;
  }
}


/* @media (min-width: 40rem) {
  .cards__item {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  .cards__item {
    width: 33.3333%;
  }
} */

.card {
  /* background-color: white; */
  border-radius: 0.25rem;
  /* box-shadow: 0 20px 40px -14px rgba(0,0,0,0.25); */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 0;
}

/* .card:hover .card__image {
  filter: contrast(100%);
} */

.card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1rem;
}

.card__image {
  width: 100%;
  height: 300px; /* fixed height for all screens */
  background-position: center;
  background-size: contain; /* ensures full image visible */
  background-repeat: no-repeat;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 576px) {
  .card__image {
   height : 300px;
  }

}

/* 
.card__image::before {
  content: "";
  display: block;
  padding-top: 85%; 
}
@media (min-width: 40rem) {
  .card__image::before {
    padding-top: 120%;
  }
}

@media (max-width: 768px) {
  .cards__item {
    flex: 1 1 100%;   
    max-width: 100%;
  }
  .card__image::before {
    min-height: 450px;
  }
} */




.card__image--river {
  background-image: url(../images/compressed/non-vegan.png);
}

.card__image--record {
  background-image: url(../images/compressed/3\ \(3\).png);
}

.card__image--fence {
  background-image: url(../images/compressed/vegan.png);
}
.card__image--recor {
  background-image: url(../images/compressed/3\ \(4\).png);
}

.card__title {
  display: flex;
  align-items: flex-start;
  color: #5b5b5b;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  /* display: flex;
  justify-content: center; */
  
}

.card__text {
  flex: 1 1 auto;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  text-align: left;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* button */

.btnextra {
  /* background: #008dd2; */
  border: none;
  display: inline-block;
  text-transform: uppercase;
  cursor: pointer;
  transform: skew(-20deg);
  position: relative;
  font-weight: bold;
    /* Glassmorphism */
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(10px);
     /* Styling */
  color: #000;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
  width: 60%;
  align-self: center;
  
}
/* .btnextra::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  left: 0;
  background: #5b5b5b;
  opacity: 0;
  z-index: -1;
  transition: all 0.5s;
} */
.btnextra:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #008dd2;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
/* .btnextra:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
} */

/* 4 cards */
.cards2 {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards2__item {
  display: flex;
  padding: 1rem;
  width: 100%; /* default mobile = 1 card per row */
}

.card__image--MARTIAL-ARTS {
  background-image: url(../images/compressed/Martial.png);
}

.card__image--STRETCHING  {
  background-image: url(../images/compressed/stretching.png);
}

.card__image--WEIGHT-TRAINING {
  background-image: url(../images/compressed/weight-training.png);
}
.card__image--MEDITATION  {
  background-image: url(../images/compressed/meditation.png );
}


.card__image--ONE-TO-ONE  {
  background-image: url(../images/compressed/one-to-one.png);
}

.card__image--GROUP  {
  background-image: url(../images/compressed/group.png);
}

.card__image--EXECUTIVE  {
  background-image: url(../images/compressed/Self.png);
}
.card__image--SELF-DEFENSE   {
  background-image: url(../images/compressed/Sports.png );
}
.card__image--SELF-DEFENSE1   {
  background-image: url(../images/compressed/self-defense-2.png );
}
.card__image--one-one2   {
  background-image: url(../images/compressed/hi.png);
}
.card__image--group2   {
  background-image: url(../images/compressed/group2.png );
}
.card__image--greyself{
  background-image: url(../images/compressed/greyself.png );
}
.card__image--tie{
  background-image: url(../images/compressed/tieexecutive.png );
}
@media (min-width: 40rem) {
  .cards2__item {
    width: 50%; /* 2 cards per row on tablets */
  }
}

@media (min-width: 56rem) {
  .cards2__item {
    width: 25%; /* 4 cards per row on desktops */
  }
}


/* faq */
.faqcontainer{
  background-color: #ffffff;
  color: #5b5b5b;
  border-radius: 20px;
  box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25);
  margin: 20px 0;
}
.newcontainer { 
  /* color: #5b5b5b; */
  border-radius: 20px;
  box-shadow: 0 5px 10px 0 rgba(0,0,0,0.25);
  background: rgba(255, 255, 255, 0.15);  /* semi-transparent */
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(10px);
  min-height: 200px;

  /* Styling */
  color: #000;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
}
.newcontainer:hover {
  transform: translateY(-8px); /* lift up */
  box-shadow: 0 12px 24px rgba(0, 168, 232, 0.3); /* soft blue glow */
}
/* .diet-title{
  padding-left: 126px;
} */
 .diet-title{
  font-family: swiss 721 bold, sans-serif;
 }

.question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px 80px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.question::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 0 20px 20px;
  line-height: 1.5rem;
  color: #008dd2;
}

/* .question.active + .answercont {
} */

@media screen and (max-width: 790px){
  html {
    font-size: 14px;
  }
  .wrapper {
  width: 80%;
}
/* .diet-title{
  padding-left: 0px;
} */
}
/* floating join button */
#join-btn {
  position: fixed;
  bottom: 62px;
  right: 30px;
  padding: 8px 18px; 
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  transform: skew(-19deg);
  z-index: 10000;

  /* Glassmorphism core */
  background: rgba(255, 255, 255, 0.15);  /* semi-transparent */
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(10px);

  /* Styling */
  color: #000;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
}

#join-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #008dd2;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}


/* core values */

.section-2 .row-specialization {
  display: flex;
  align-items: center; /* center vertically */
  justify-content: center;
  min-height: 100%;

}
.text-uppercase{
  margin-bottom: 0!important;
}

.section-2 .col-specialization {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-start p{
  padding-left: 13px;
  color: #5b5b5b;
    font-size: 1.25rem;
}
.boxed1 {
  display: flex !important;
  justify-content: space-between !important;
  width: 100%; /* ensure it spans */
}


/* Popup overlay */
/* Popup overlay */
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-content h2{
 
  display: flex;
  justify-content: center;
  color: #008dd2;
font-family: 'poppins', sans-serif;
}

.popup-content {
  background-image: url('../images/bg/bg-2.jpg');
  border-radius: 16px;
  padding: 30px;
  width: 90%;
  max-width: 450px;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  position: relative;
  animation: fadeIn 0.3s ease;
  color: #fff;
}

/* Fade in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Close button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #000000;
  transition: color 0.2s;
}
/* .close-btn:hover {
  color: #ddd;
} */

/* Title */
#popup-form{
  display: none;

}
.popup-title {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
  
}

/* Form fields */
.form-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}
.form-group input {
  padding: 14px 16px; /* increased padding inside inputs */
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 14px;
  background: rgba(255,255,255,0.15);
  color: #000000;
  transition: border 0.3s;
}
.form-group input:focus {
  outline: none;
  border-color: #008dd2;
  background: rgba(255,255,255,0.25);
  color: #000;
}

/* Submit button with glass look */
#joinForm button {
  width: 100%;
  padding: 16px 0;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 10px; 

  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);

  /* Style */
  color: #000000;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
}

/* Hover effect */
#joinForm button:hover {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #008dd2; /* accent blue from your site */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);

}

@media (max-width: 480px) {
  .form-group input {
    padding: 12px 14px;
  }
  #joinForm button {
    padding: 14px 0;
  }
}

.just{
  text-align: justify;
  line-height: 1.8;
}
.achievements-container {
  background: rgba(255, 255, 255, 0.1); /* semi-transparent */
  backdrop-filter: blur(1px); /* blur background */
  -webkit-backdrop-filter: blur(1px); /* for Safari */
  border: 1px solid rgba(255, 255, 255, 0.3); /* light border */
  border-radius: 15px; /* rounded corners */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); /* soft shadow */
  color: #5b5b5b; /* text color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0; 
  text-align: left; 
  max-width: 100%;
  font-size: 12px;
  padding-top: 14px;
  line-height: 21px;
}

.text-success1 {
  padding-right: 24px;
}


/* Optional hover effect for a modern feel */
.achievements-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
/* Image alignment with achievements */
.col-12.col-md-5.col-lg-3 {
  display: flex;
  flex-direction: column;
  align-items: center; /* center horizontally */
}

.col-12.col-md-5.col-lg-3 img {
  margin-bottom: 15px; /* spacing between image and glass box */
  border-radius: 15px; /* optional rounded corners for image */
  max-width: 100%;
  height: auto;
}

@media (max-width: 576px) {
  /* Text section adjustments */
  .about-text {
    padding: 0 35px !important; /* proper left/right spacing */
  }

  .about-text p.just,.just {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 1rem;
    margin-top: 10px;
  }

  .about-text h2.just2 {
    font-size: 35px;
  
  }

  .about-text #just3 {
    font-size: 16px;
   
  }

  .about-text h4.just1 {
    font-size: 18px;
    text-align: center;
  }
  /* Row layout stack */
  .row-specialization {
    flex-direction: column !important; /* stack columns */
    align-items: center;                /* center content */
  }

  /* Image adjustments */
  .profile-img {
    width: 90% !important;
    max-width: 300px;
    height: auto !important;
     margin-top: 5px;
    border-radius: 12px;
  }

  .profile-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  /* Achievements list adjustments */
  .achievements-container {
    width: 90% !important;
    max-width: 350px;
    margin: 0 auto 20px auto;
    font-size: 0.95rem;
    text-align: left;
  }

  /* Optional: reduce spacing after text */
  .about-text h2.just2,
  .about-text #just3,
  .about-text h4.just1 {
    margin-bottom: 0.5rem;
  }
}

/* learn more popup */
/* Modal overlay */
#dietModal{
  font-family: poppins, sans-serif;
}
.modal {
  display: none; /* stays hidden until JS sets flex */
  position: fixed;
  inset: 0; /* top, right, bottom, left = 0 */
  z-index: 1000;

  justify-content: center;     /* ✅ horizontal center */
  align-items: center;         /* ✅ vertical center */

  backdrop-filter: blur(8px);
  background-color: rgba(0,0,0,0.4);
  overflow-y: auto;  /* scroll if content too tall */
  padding: 1rem;     /* spacing from viewport edges */
  box-sizing: border-box;
}


/* Modal content */
.modal-content {
  background-image: url('../images/bg/bg-2.jpg');
  /* margin: 50px auto; */
  margin:0;
  padding: 20px;
  border-radius: 12px;
  width: 80%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  animation: slideIn 0.3s ease-out;
    max-height: calc(100vh - 2rem);
  overflow-y: auto;
}

/* Slide in animation */
@keyframes slideIn {
  from {transform: translateY(-50px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}

.close {
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  color: #333;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}



/* Modal body layout */
.modal-body {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
}

/* Left side image */
.modal-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
}

/* Right side text */
.modal-text {
  flex: 1;
}

.modal-text h2 {
  margin-bottom: 10px;
color: #008dd2;
}

.modal-text p {
  line-height: 1.5;
  text-align: left;
}

/* Responsive */
@media (max-width:768px){
  .modal-body {
    flex-direction: column;
    align-items: center;
}

.modal-image img {
  max-width: 100%;
  max-height: 250px; 
  object-fit: cover; 
}
  .modal-content {
    width: 85%; 
    max-width: 65vw;
    
    padding: 15px;
}
.close {
  top: 5px !important;
  right: 5px !important;
  color: #fff; 
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding: 0 5px 2px 5px;
  line-height: 1; 
}
.modal-text p {
  line-height: 1;
  text-align: left;
}

}


@media (max-width: 991px) {
  #hero_section {
    padding-left : 0;
  }
}
@media (min-width: 992px) {
  #hero_section {
    padding-left : 6rem;
    padding-right : 0;
  }

}

@media (max-width:765px){
  .mt-responsive{
   margin-top: 20px;
  }
  #head{
    margin-top: 10px;
  }
}
@media (max-width:765px){
  h2, .h2 {
    font-size: 2.471rem;

  }

}
@media (max-width:400px){
  h2, .h2 {
    font-size: 2.271rem;

  }

}


@media (max-width: 768px) {
  .owl-carousel .item > .d-flex p.mb-0 {
    text-align: left;
    padding: 5px;

  }
}

.section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section[style*="opacity: 1"] {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}
html, body {
  overscroll-behavior-y: contain; 
 
}

@media (max-width: 768px) {
  .pagepiling {
      touch-action: none;          /* disables conflicting gestures on mobile */
  }
}

.lazy-delay {
  background-image: none !important;
  background-color: #f0f0f0; 
  filter: blur(8px);
  transition: filter 0.5s ease-out, background-image 0.5s ease-out;
}