:root {
  --brand:  #1E88E5 ;
  --sub: #20C997;
  --body: #516171;
  --border: rgba(0,0,0,0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  --teal-1: #d7f1f5;
  --teal-2: #e8fdf2;
  --card-bg: rgba(255,255,255,0.95);
  --accent: #0fa88f;
  --accent-2: #2aa7c8;
  --max-w: 1100px;
}


/* body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
    } */

    .swiper {
      width: 100%;
      height: 100vh;
    }

    .swiper-slide {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      background-size: cover;
      background-position: center;
      position: relative;
    }

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

    .content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
      animation: fadeInUp 1s ease-in-out;
    }

    .content h1 {
      font-size: 3rem !important;
      margin-bottom: 10px !important;
      color: white;
      font-family: 'Poppins', sans-serif !important;
    }

    .content h3 {
      font-size: 1.5rem !important;
      margin-bottom: 15px !important;
      color: #f8d210;
      font-family: 'Poppins', sans-serif !important;
    }

    .content p {
      font-size: 1rem !important;
      line-height: 1.6 !important;
      margin-bottom: 25px !important;
      color: white;
      font-family: 'Poppins', sans-serif !important;
    }

    /* Stylish button */
    .btn-3 {
      display: inline-block;
      padding: 12px 30px;
      font-size: 1rem;
      color: #fff;
      background: linear-gradient(45deg, #f8d210, #ff6600);
      border-radius: 50px;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .btn-3::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.3);
      transform: skewX(-25deg);
      transition: left 0.4s;
    }

    .btn-3:hover::before {
      left: 100%;
    }

    .btn-3:hover {
      transform: scale(1.08);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    /* Hover effect on heading */
    .content:hover h1 {
      color: #f8d210;
      transform: scale(1.05);
      transition: 0.3s;
    }

    /* Swiper navigation */
    .swiper-button-next,
    .swiper-button-prev {
      color: #fff;
      transition: 0.3s;
    }
    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      color: #f8d210;
    }

    /* Scroll animation */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .content h1 {
        font-size: 2rem;
      }
      .content h3 {
        font-size: 1.2rem;
      }
      .content p {
        font-size: 0.9rem;
      }
    }


    .about-section {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px 10%;
      gap: 50px;
      flex-wrap: wrap;
    }

    .about-image {
      position: relative;
      flex: 1;
      min-width: 300px;
    }

    .about-image img {
      width: 100%;
      border-radius: 20px;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .about-image:hover img {
      transform: scale(1.05);
      box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    }

    /* Toggle element background */
    .about-image::before {
      content: "";
      position: absolute;
      top: 20px;
      left: 20px;
      width: 100%;
      height: 100%;
      background: #f8d210;
      border-radius: 20px;
      z-index: -1;
      transition: 0.4s;
      /* background: url("../img/image-5/img-1.jpg"); */
    }

    .about-image:hover::before {
      top: -20px;
      left: -20px;
    }

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

    .about-content h3 {
      font-size: 1rem;
      color: #f8d210;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .about-content h2 {
      font-size: 2.2rem;
      margin-bottom: 20px;
      color: #333;
    }

    .about-content p {
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 30px;
      color: #555;
    }

    /* Stylish Button */
    .btn-3 {
      display: inline-block;
      padding: 12px 35px;
      font-size: 1rem;
      color: #fff;
      background: linear-gradient(45deg, #f8d210, #ff6600);
      border-radius: 50px;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .btn-3::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.3);
      transform: skewX(-25deg);
      transition: left 0.4s;
    }

    .btn-3:hover::before {
      left: 100%;
    }

    .btn-3:hover {
      transform: scale(1.08);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 991px) {
      .about-section {
        flex-direction: column;
        text-align: center;
      }

      .about-content h2 {
        font-size: 1.8rem;
      }
    }



    /* .box-section {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    } */
    /* .box-section .row{
      gap: 10px;
    } */
    .box {
      position: relative;
      /* width: 300px; */
      padding: 40px 25px;
      text-align: center;
      border-radius: 20px;
      color: #fff;
      overflow: hidden;
      transition: all 0.6s ease;
      border: 3px solid transparent;
      background: #fff; /* Base background */
      height: 100% !important;
    }

    /* Overlay with gradient */
    .box::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      transition: transform 0.8s ease;
    }

    .box i {
      font-size: 42px;
      margin-bottom: 15px;
    }

    /* Gradient colors */
    .box.comp::before {
      background: linear-gradient(135deg, #ff6a00, #ee0979);
    }
    .box.edu::before {
      background: linear-gradient(135deg, #11998e, #38ef7d);
    }
    .box.env::before {
      background: linear-gradient(135deg, #36d1dc, #5b86e5);
    }

    /* Hover: gradient slides down */
    .box:hover::before {
      transform: translateY(100%);
    }

    /* Content */
    .box i,
    .box h3,
    .box p {
      position: relative;
      z-index: 1;
      transition: all 0.6s ease;
      color: #fff;
    }

    .box h3 { font-size: 22px; margin-bottom: 10px; }
    .box p { font-size: 14px; line-height: 1.6; }

    /* Text colors after hover */
    .box.comp:hover i,
    .box.comp:hover h3,
    .box.comp:hover p {
      color: #ee0979;
    }
    .box.edu:hover i,
    .box.edu:hover h3,
    .box.edu:hover p {
      color: #11998e;
    }
    .box.env:hover i,
    .box.env:hover h3,
    .box.env:hover p {
      color: #5b86e5;
    }

    /* Border color after hover */
    .box.comp:hover { border-color: #ee0979; }
    .box.edu:hover { border-color: #11998e; }
    .box.env:hover { border-color: #5b86e5; }

    /* Lift animation */
    .box:hover {
      transform: translateY(-12px) scale(1.03);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    /* @media (max-width: 768px) {
      .box { width: 90%; }
    } */


    /* body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: #f0f2f5;
    } */

    .motto-section {
      position: relative;
      padding: 80px 20px;
      background: linear-gradient(135deg, #e0f7fa, #ffffff);
      overflow: hidden;
      text-align: center;
    }

    /* Decorative background element */
    .motto-section::before {
      content: "";
      position: absolute;
      top: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(0,174,255,0.3) 20%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    .motto-container {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      background: #fff;
      border-radius: 20px;
      padding: 50px 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      z-index: 1;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .motto-container:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

    .motto-icon {
      font-size: 60px;
      color: #00aaff;
      margin-bottom: 20px;
      transition: transform 0.5s ease;
    }

    .motto-container:hover .motto-icon {
      transform: rotate(15deg) scale(1.1);
    }

    .motto-subtitle {
      font-size: 22px;
      font-weight: 600;
      color: #555;
      margin-bottom: 10px;
    }

    .motto-title {
      font-size: 32px;
      font-weight: 700;
      color: #222;
      margin-bottom: 20px;
    }

    .motto-text {
      font-size: 16px;
      line-height: 1.8;
      color: #555;
      max-width: 750px;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .motto-title { font-size: 26px; }
      .motto-text { font-size: 15px; }
    }


    .timeline-section {
      padding: 80px 0 0 0;
      position: relative;
    }

    .timeline {
      position: relative;
      margin: 0 auto;
      max-width: 1000px;
    }

    /* Vertical Line Center */
    .timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      background: linear-gradient(to bottom, #ff6b6b, #1dd1a1);
      border-radius: 2px;
      z-index: 0; /* line goes behind content */
    }

    .timeline-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 70px;
      position: relative;
      z-index: 1; /* content above line */
    }

    .timeline-icon {
      flex: 0 0 100px;
      display: flex;
      justify-content: center; /* center horizontally */
      align-items: center;
      position: relative;
      z-index: 2; /* icon always above line */
    }

    .timeline-icon i {
      font-size: 32px;
      background: #fff;
      border: 3px solid #ff6b6b;
      color: #ff6b6b;
      padding: 18px;
      border-radius: 50%;
      transition: all 0.4s ease;
    }

    .timeline-content {
      background: #fff;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      flex: 1;
      transition: all 0.4s ease;
      position: relative;
      z-index: 3; /* content always above line */
    }

    .timeline-content h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .timeline-content p {
      margin-bottom: 0;
      font-size: 16px;
      line-height: 1.6;
    }

    /* Left & Right Layout */
    .timeline-item.left .timeline-icon {
      order: 1;
      margin-right: 30px;
    }
    .timeline-item.left .timeline-content {
      order: 2;
      text-align: left;
    }

    .timeline-item.right .timeline-icon {
      order: 2;
      margin-left: 30px;
    }
    .timeline-item.right .timeline-content {
      order: 1;
      text-align: left;
    }

    /* Hover Effects */
    .timeline-item:hover .timeline-icon i {
      background: #ff6b6b;
      color: #fff;
      transform: scale(1.1);
      box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    }

    .timeline-item:hover .timeline-content {
      background: #fffbf9;
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

    /* Scroll animation */
    [data-animate] {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease-out;
    }
    [data-animate].active {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      .timeline::before {
        left: 20px;
        transform: none;
      }
      .timeline-item {
        flex-direction: column;
        align-items: flex-start;
      }
      .timeline-icon {
        margin: 0 0 20px 0 !important;
      }
      .timeline-content {
        text-align: left !important;
      }
    }



    .section-title {
      text-align: center;
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 40px;
      color: #222;
      position: relative;
    }

    .section-title::after {
      content: "";
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, #ff6b6b, #4dabf7);
      display: block;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .service-card {
      background: #fff;
      border-radius: 18px;
      padding: 30px;
      margin-bottom: 40px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    /* Left & Right boxes equal height */
    .tall-card {
      min-height: 520px;
    }

    /* Center box shorter */
    .short-card {
      min-height: 420px;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .service-card::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,107,107,0.15) 0%, transparent 60%);
      transform: scale(0);
      transition: transform 0.5s ease;
    }

    .service-card:hover::before {
      transform: scale(1);
    }

    .service-icon {
      font-size: 45px;
      margin-bottom: 20px;
      color: #ff6b6b;
      transition: color 0.3s ease;
    }

    .service-card:hover .service-icon {
      color: #4dabf7;
    }

    .service-card h3 {
      font-size: 1.6rem;
      font-weight: 600;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .service-card ul {
      list-style: none;
      padding-left: 0;
      flex-grow: 1; /* makes content stretch equally */
    }

    .service-card ul li {
      margin-bottom: 12px;
      font-size: 1rem;
      color: #444;
      position: relative;
      padding-left: 25px;
    }

    .service-card ul li::before {
      content: "\f058";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: 0;
      color: #4dabf7;
    }

    .wwd-row{
      align-items: flex-start; /* ensure all cards align at top */
    }


    .section-title {
      text-align: center;
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 40px;
      color: #222;
      position: relative;
    }

    .section-title::after {
      content: "";
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, #ff6b6b, #4dabf7);
      display: block;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .value-card {
      background: #fff;
      border-radius: 18px;
      padding: 30px;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .value-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .value-card .icon {
      font-size: 40px;
      color: #ff6b6b;
      margin-bottom: 20px;
      transition: color 0.3s ease;
    }

    .value-card:hover .icon {
      color: #4dabf7;
    }

    .value-card h4 {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .value-card p {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.5;
    }


    .fly-modern {
      background: linear-gradient(135deg,var(--teal-1) 0%, var(--teal-2) 100%);
      padding: 56px 20px;
      position: relative;
      overflow: hidden;
    }

    .fly-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      gap: 36px;
      align-items: center;           /* vertically centers image & card */
      justify-content: space-between;
      z-index: 4;                    /* above floating elements */
    }

    /* Left image wrapper */
    .fly-image {
      flex: 0 0 48%;
      display:flex;
      justify-content:flex-end;      /* keeps image toward center */
      align-items:center;
      justify-content: center;
      min-width: 280px;
    }
    .fly-image img {
      width: 420px;
      max-width: 100%;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 18px 45px rgba(14, 54, 68, 0.12);
      transform-origin: center;
      transition: transform .45s ease, box-shadow .45s ease;
    }
    .fly-image img:hover{
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 26px 60px rgba(14,54,68,0.18);
    }

    /* Floating subtle shape behind image */
    .image-backdrop {
      position:absolute;
      left:6%;
      top:6%;
      width:360px;
      height:360px;
      background: radial-gradient(circle at 30% 30%, rgba(47,168,156,0.12), transparent 40%);
      border-radius: 48%;
      filter: blur(18px);
      z-index:2;
      pointer-events:none;
    }

    /* Right content card */
    .fly-card {
      flex: 0 0 48%;
      background: var(--card-bg);
      border-radius: 18px;
      padding: 36px;
      box-shadow: 0 10px 30px rgba(14,54,68,0.08);
      transition: transform .36s ease, box-shadow .36s ease;
      min-width: 260px;
    }
    .fly-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 48px rgba(14,54,68,0.12);
    }

    .fly-title{
      margin:0 0 14px 0;
      font-size: 34px;
      line-height: 1.05;
      color: #0e3740;
      font-weight:700;
    }
    .fly-sub {
      margin:0 0 18px 0;
      color: var(--accent);
      font-weight:600;
      letter-spacing: .3px;
    }
    .fly-text{
      margin:0;
      color:#2f4854;
      line-height:1.7;
      font-size:16px;
    }

    /* Floating decorative icons — keep behind content/image */
    .floating {
      position:absolute;
      z-index:1;
      pointer-events:none;
      opacity:0.8;
      font-size:26px;
      transform-origin:center;
    }
    .floating.f1 { left:8%; top:78%; animation: floatUp 10s linear infinite; }
    .floating.f2 { left:50%; top:94%; animation: floatUp 12s linear infinite .8s; }
    .floating.f3 { left:86%; top:82%; animation: floatUp 11s linear infinite 1.6s; }

    @keyframes floatUp {
      0% { transform: translateY(0) rotate(0); opacity:0.85; }
      60% { opacity:0.7; }
      100% { transform: translateY(-420px) rotate(360deg); opacity:0; }
    }

    /* Gentle float for the image */
    .animate-float {
      animation: floatImage 5s ease-in-out infinite;
    }
    @keyframes floatImage {
      0%,100%{ transform: translateY(0); }
      50%{ transform: translateY(-10px); }
    }

    /* Responsive: stack on smaller screens but keep image above content */
    @media (max-width: 920px) {
      .fly-inner { flex-direction: column; gap:20px; align-items:center; }
      .fly-image, .fly-card { flex-basis:100%; max-width:100%; }
      .fly-image { order:0; justify-content:center; }
      .fly-card { order:1; }
      .image-backdrop { left:6%; top:4%; width:280px; height:280px; }
    }

    /* small tweak for very narrow screens */
    @media (max-width:420px){
      .fly-title{ font-size:26px; }
      .fly-image img{ width:320px; }
    }



    .contact .info-item {
    background: white;  
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    padding: 20px 0 30px 0;
    height: 100%;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    transition: all 0.5s;
  }
  .contact .info-item:hover {
    box-shadow: none;
  background: #f9f9f9;
  }
  
  .contact .info-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 24px;
    line-height: 0;
    color: var(--color-primary);
    border-radius: 50%;
    border: 2px dotted var(--orange);
  }
  
  .contact .info-item h3 {
    font-size: 20px;
    /* color: #6c757d; */
    color: var(--green);
    font-weight: 700;
    margin: 10px 0;
  }
  
  .contact .info-item p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .contact .php-email-form {
    width: 100%;
    background: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    padding: 30px;
  }
  
  .contact .php-email-form .form-group {
    padding-bottom: 20px;
  }
  
  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: var(--brand);
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .error-message br+br {
    margin-top: 25px;
  }
  
  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #059652;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #059652;
    border-top-color: #fff;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }
  
  .contact .php-email-form input,
  .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
  }
  
  .contact .php-email-form input:focus,
  .contact .php-email-form textarea:focus {
    border-color: var(--brand);
  }
  
  .contact .php-email-form input {
    height: 44px;
  }
  
  .contact .php-email-form textarea {
    padding: 10px 12px;
  }
  
  .contact .php-email-form button[type=submit] {
    background: var(--brand);
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
  }
  
  .contact .php-email-form button[type=submit]:hover {
    background: rgba(68, 209, 12, 0.8);
  }

  .font-one{
    /* font-family: "Volkhov", "DM Serif Display", 'cursive' !important; */
    font-weight: 700;
    color: var(--green) !important;
  }


  .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-bottom: 20px;
  cursor: pointer;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  font-size: 3rem;
  color: var(--brand);
  cursor: pointer;
}


/* .what-section {
      padding: 80px 0;
    } */

    .what-heading {
      text-align: center;
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 60px;
      color: #0d47a1;
    }

    .what-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 80px;
      position: relative;
    }

    .what-item:nth-child(even) {
      flex-direction: row-reverse;
    }

    .what-img {
      flex: 1;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .what-img::before {
      content: "";
      position: absolute;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, #90caf9, transparent 70%);
      z-index: 0;
      border-radius: 50%;
      animation: floatBg 8s infinite ease-in-out alternate;
    }

    @keyframes floatBg {
      0% { transform: translateY(0px) translateX(0px); }
      100% { transform: translateY(-30px) translateX(30px); }
    }

    .what-img img {
      max-width: 75%;
      border-radius: 20px;
      position: relative;
      z-index: 1;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      transition: transform 0.5s ease;
    }

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

    .what-content {
      flex: 1;
      padding: 30px 40px;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      opacity: 0;
      transform: translateY(50px);
    }

    .what-content:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

    .what-content.visible {
      opacity: 1;
      transform: translateY(0);
      transition: all 0.8s ease-in-out;
    }

    .what-content h3 {
      font-size: 1.8rem;
      font-weight: bold;
      color: #1565c0;
      margin-bottom: 15px;
    }

    .what-content p {
      font-size: 1.05rem;
      line-height: 1.7;
      color: #444;
    }

    .what-content ul {
      margin: 15px 0 0;
      padding-left: 20px;
    }

    .what-content ul li {
      margin-bottom: 10px;
      font-size: 1rem;
      color: #333;
      position: relative;
    }

    .what-content ul li::before {
      content: "✔";
      color: #2e7d32;
      position: absolute;
      left: -20px;
    }

    @media (max-width: 991px) {
      .what-item {
        flex-direction: column !important;
        text-align: center;
      }
      .what-content {
        margin-top: 30px;
      }
    }

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