/*
Theme Name: Panda
Theme URI: http://example.com/
Author: Your Name
Author URI: http://example.com/
Description: A custom WordPress theme.
Version: 1.0
License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: panda
*/

/* @import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');
   /* Custom CSS */
   :root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
}

body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    background-color: var(--primary-white);
    overflow-x: hidden;
}

/* Banner Video Section */
.banner-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--primary-black);
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-white);
  text-align: center;
  gap: 12px;
  mix-blend-mode: plus-lighter;
}

/* .banner-overlay h1 {
    font-size: clamp(3.75rem, 3.036rem + 1.905vw, 4.75rem);
    font-weight: 300;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 15px;
    word-spacing: 8px;
    text-shadow: 0 3px 12px #000;
} */

/* Banner overlay h1 styling */
.banner-overlay h1 {
    font-family: 'Arial', sans-serif;
    /* font-family: 'Brush Script MT', cursive; */
    font-size: clamp(1rem, 3vw + 1rem, 4rem);
    font-weight: 700; /* No need for bold weight here */
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    word-spacing: 4px;
    text-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);
    color: #fff;
    line-height: 1.2;
}




.banner-overlay h3 {
    font-family: 'Arimo', sans-serif;
    text-shadow: 0 3px 8px #000000cf;
    font-size: 34px;
    text-align: left;
    margin: 0;
    padding: 24px;
    text-transform: uppercase;
    max-width: 17ch;
}

.banner-overlay p {
    /* font-family: 'Brush Script MT', cursive; */
    font-size: 1rem;
    /* max-width: min(70%, 1050px); */
    max-width: 66ch;
    text-align: justify;
    margin-top: 24px;
    font-weight: 300;
    text-shadow: 0 1px 4px #000;
    margin: 0;
    padding: 24px;
}

.banner-logo {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    text-align: left;
    z-index: 10;
    padding: 0 20px;
    font-family: 'Arimo', sans-serif;
    font-size: 2rem;
    color: #fff;
    font-weight: 500;
}

.banner-logo img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary-black);
    margin: 0.5rem auto;
}

.section-secondary-title{
    position: relative;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}


/* About Section */
.about-section {
    background-color: var(--light-gray);
}

.about-section .section-title {
  text-align: left;
}

.about-section .section-title::after {
  margin-left: 0;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    background-color: var(--primary-white);
}

.service-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
    cursor: pointer;
    height: 100%;
    border: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.service-card img {
    height: 200px;
    width: auto !important;
    object-fit: cover;
}

.service-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.service-title {
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.work-with-section{
    background-color: var(--primary-white);
}

/* Styling for the container of each member */
.c-member {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Styling for the image container */
.c-img-container {
    width: 150px;       /* Set your desired width */
    height: 150px;      /* Set your desired height */
/* border-radius: 50%; Makes it circular */
    overflow: hidden;   /* Ensures the image stays within bounds */
    margin: 0 auto 15px; /* Centers the container */
}

.c-img-container img {
    width: 100%;       /* Fills container width */
    height: 100%;      /* Fills container height */
    object-fit: contain; /* Covers area, cropping if needed */
    /* OR */
    /* object-fit: contain; */ /* Fits entire image (no cropping) */
}

/* Name Styling */
.c-member h4 {
    font-size: 1.2rem;
    color: #333;
    margin: 10px 0 5px;
}

/* Optional: Styling for additional text (like position) */
.c-member p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0;
}
.swiper {
  padding: 10px 10px 40px;
}
.swiper-button-next{
    display: none;
}
.swiper-button-prev{
    display: none;
}
.swiper-pagination {
  --swiper-pagination-bottom: 0px;
}
.swiper-pagination-bullet-active{
    background-color: #000000 !important;
    opacity: 1;
}

/* Modal Styling */
.modal-content {
    border-radius: 10px;
    border: none;
}

.modal-header {
    background-color: var(--primary-black);
    color: var(--primary-white);
    border-bottom: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.modal-footer {
    border-top: none;
}

.modal-carousel-img {
    height: 300px;
    object-fit: cover;
}

/* Team Section */
.team-section {
    background-color: var(--light-gray);
}

.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-img-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 5px solid var(--primary-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.team-member h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-member p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-black);
    color: var(--primary-white);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    background-color: var(--dark-gray);
}

/* Contact Section */
.contact-section {
    background-color: var(--light-gray);
}

.contact-form {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 1px solid var(--medium-gray);
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.form-control:focus {
    border-color: var(--primary-black);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.btn-submit {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--dark-gray);
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 4rem 0 2rem;
}

.footer h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-address p {
    margin-bottom: 0.75rem;
}

.footer-email a {
    color: var(--primary-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: var(--medium-gray);
    text-decoration: underline;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-input {
    flex-grow: 1;
    border: none;
    padding: 0.75rem;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    outline: none;
}

.newsletter-btn {
    background-color: var(--dark-gray);
    color: var(--primary-white);
    border: none;
    padding: 0 1.5rem;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: var(--medium-gray);
    color: var(--dark-gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-overlay h1 {
        font-size: 2.5rem;
    }
    
    .banner-overlay p {
        font-size: 1.2rem;
        max-width: 90%;
    }
    .banner-logo img {
        max-width: 160px;
    }
    
    .team-img-container {
        width: 150px;
        height: 150px;
    }
    .c-img-container{
        width: 150px;
        height: 150px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .banner-overlay h1 {
        font-size: 1.5rem;
    }
    .banner-logo img {
        max-width: 120px;
    }
    .banner-logo {
        top: 20px;
    }
    
    section {
        padding: 3rem 0;
    }

    .banner-logo {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 1rem;
    }
    
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: 5px;
        margin-bottom: 0.5rem;
    }
    
    .newsletter-btn {
        border-radius: 5px;
        padding: 0.75rem;
    }
}


/* contact form */
/* Form container */
.wpcf7-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Input fields */
.wpcf7-form-control {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wpcf7-form-control:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Textarea */
.wpcf7-textarea {
    resize: vertical; /* Allow vertical resizing */
    min-height: 150px;
}

/* reCAPTCHA container */
.wpcf7-form .g-recaptcha {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

/* Submit button */
.wpcf7-submit {
    background-color: #007bff;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.wpcf7-submit:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.wpcf7-submit:active {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .wpcf7-form {
        padding: 20px;
    }

    .wpcf7-form-control {
        font-size: 14px;
    }

    .wpcf7-submit {
        width: 100%;
        padding: 12px;
    }
}

/* //ninjaform */
.nf-form-title{
    display:none;
}
.nf-form-fields-required{
    display:none;
}


/* General Form Styling */
.contact-section .nf-form-cont {
    max-width: 100%;
    margin: 0 auto;
    font-family: inherit;
}

.contact-section .nf-form-title h3 {
    text-align: center;
    margin-bottom: 20px;
    color: inherit;
    font-size: 1.5rem;
}

.contact-section .nf-form-fields-required {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

/* Field Styling */
.contact-section .nf-field-container {
    margin-bottom: 20px;
}

.contact-section .nf-field-label label {
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    color: #333;
}

.contact-section .ninja-forms-field {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

.contact-section .ninja-forms-field:focus {
    border-color: #555;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

.contact-section textarea.ninja-forms-field {
    min-height: 150px;
    resize: vertical;
}

/* Submit Button Styling */
.contact-section #nf-field-13 {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    display: inline-block;
    margin-top: 10px;
}

.contact-section #nf-field-13:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Error Message Styling */
.contact-section .nf-error-msg {
    color: #d9534f;
    font-size: 0.9rem;
    margin-top: 5px;
}
.nf-form-cont .nf-response-msg + .nf-form-wrap .nf-form-content {
    display: block !important;
}

/* Style the success message to appear below form */
.nf-response-msg {
    margin-top: 20px;
    padding: 15px;
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
    border-radius: 4px;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-section .nf-field-container {
        margin-bottom: 15px;
    }
    
    .contact-section .ninja-forms-field {
        padding: 10px 12px;
    }
    
    .contact-section #nf-field-13 {
        padding: 10px 25px;
        width: 100%;
    }
}

/* feature video  */
/* Feature Video Section */
.feature-video {
    width: 100%;
    height: 100vh; /* Full-screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000; /* Fallback background */
    position: relative;
    overflow: hidden;
}

/* Video Container */
.feature-video .container {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

/* Section Title */
.feature-video .section-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
}

/* YouTube Embed */
.feature-video iframe {
    width: 80%;
    height: 100%;
    aspect-ratio: 16 / 9;
    height: 500px;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
}

/* Custom Video */
.feature-video video {
    width: 100%;
    max-width: 1000px; /* Limit size */
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
    object-fit: cover; /* Ensures proper scaling */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
}

/* Fallback Banner */
.feature-fallback {
    width: 100%;
    height: 100vh;
    background: linear-gradient(45deg, #222, #000);
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-video {
        height: 55vh; /* Adjust height for smaller screens */
    }
    
    .feature-video .section-title {
        font-size: 2rem;
    }

    .feature-video iframe,
    .feature-video video {
        width: 100%;
        height: 100%;
        aspect-ratio: 16 / 10;
    }
}

[data-animate] {
    opacity: 0; /* default before animation starts */
    will-change: transform, opacity;
  }
  
  /* Animation trigger classes */
  .animate-fadeIn {
    animation-name: fadeIn;
  }
  .animate-slideInLeft {
    animation-name: slideInLeft;
  }
  .animate-slideInRight {
    animation-name: slideInRight;
  }
  .animate-slideInUp {
    animation-name: slideInUp;
  }
  .animate-slideInDown {
    animation-name: slideInDown;
  }
  
  /* This ensures animation holds final frame */
  .animated {
    animation-fill-mode: forwards;
  }
  
  /* === KEYFRAMES === */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(80px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-200px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(200px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(80px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInDown {
    from {
      opacity: 0;
      transform: translateY(-80px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  

  .no-js [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }

/* Initially hide the elements */
/* Initially hide the elements */
/* .pre-animate {
    opacity: 0;
    visibility: hidden;
    transition: none;
  }
  
 
  .animated {
    visibility: visible !important;
    opacity: 1 !important;
    transition: opacity 1s ease-out;
  }
  

  .animate-fadeIn {
    animation: fadeIn 1.5s ease-out forwards;
  }
  
  .animate-slideInLeft {
    animation: slideInLeft 1.5s ease-out forwards;
  }
  
  .animate-slideInRight {
    animation: slideInRight 1.5s ease-out forwards;
  }
  
  .animate-slideInUp {
    animation: slideInUp 1.5s ease-out forwards;
  }
  
  .animate-slideInDown {
    animation: slideInDown 1.5s ease-out forwards;
  }
  
 
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(50px); 
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInLeft {
    0% {
      opacity: 0;
      transform: translateX(-200px); 
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    0% {
      opacity: 0;
      transform: translateX(200px); 
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInUp {
    0% {
      opacity: 0;
      transform: translateY(150px); 
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInDown {
    0% {
      opacity: 0;
      transform: translateY(-150px); 
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  } */
  
  

  

.banner-logo h1 {
  font-size: clamp(2.5rem, 1.429rem + 2.857vw, 3rem);
  text-transform: uppercase;
}

.banner-logo {
  mix-blend-mode: luminosity;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.banner-overlay .spacing-fill {
  flex-grow: 1;
  border-top: 1px solid #ffffff2e;
}
@media (max-width: 576px) {
   

    .banner-logo {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 1rem;
    }
    .banner-logo h1 {
        /* font-size: 1rem; */
        font-size: clamp(1.5rem, 1.429rem + 2.857vw, 1rem);
        text-transform: uppercase;
    }
    .banner-logo img {
       display: none;
    }
    
      .banner-overlay {
        flex-direction: column; 
        padding: 1rem;
      }
    
      .banner-overlay h3 {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
      }
    
      .banner-overlay p {
        font-size: 0.7rem;
        text-align:center;
      }
    
      .banner-overlay .spacing-fill {
        /* margin: 1rem 0;
        border-top: 1px solid #ffffff2e; */
        display: none;
      }
    
}