    :root {
      --primary: #45a049;
      --primary-dark: #378139;
      --secondary: #333333;
      --light: #f8f9fa;
      --dark: #212529;
      --accent: #ffc107;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
      min-height: 200vh;
      background: linear-gradient(#f8f9fa, #e9ecef);
      padding-top: 80px;
    }

    /* Ensure the main content starts below the header */
    main {
      padding-top: 80px; /* Adjust this value based on your header height */
    }

    .logo img {
      max-height: 45px;
      transition: all 0.3s ease;
    }
    
    header.scrolled .logo img {
      max-height: 40px;
    } */
    
    .navbar {
      padding: 0;
    }
    
    .navbar .nav-link {
      font-weight: 500;
      color: var(--secondary);
      padding: 8px 16px !important;
      transition: all 0.3s ease;
      position: relative;
    }
    
    .navbar .nav-link:hover,
    .navbar .nav-link.active {
      color: var(--primary);
    }

    .navbar .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }
    
    .navbar .nav-link:hover::after,
    .navbar .nav-link.active::after {
      width: 70%;
    }
    
    .mobile-nav-toggle {
      font-size: 24px;
      cursor: pointer;
      display: none;
      color: var(--secondary);
      transition: all 0.3s ease;
    }
    
    .mobile-nav-toggle:hover {
      color: var(--primary);
    }
    
    /* Hero Section */
    .hero-header {
      padding-top: 160px;
      padding-bottom: 100px;
      position: relative;
    }
    
    .hero-header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(69, 160, 73, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
      z-index: -1;
    }
    
    .hero-header .display-3 {
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 30px;
      color: var(--primary);
    }
    
    .hero-header h4 {
      font-weight: 600;
      letter-spacing: 1px;
      position: relative;
      padding-left: 40px;
      display: inline-block;
    }
    
    .hero-header h4::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 30px;
      height: 2px;
      background: var(--primary);
    }
    
    .hero-header h6 {
      font-weight: 400;
      line-height: 1.8;
      margin-bottom: 40px;
    }
    
    .hero-cta {
      display: inline-block;
      padding: 14px 30px;
      background: var(--primary);
      color: white;
      border-radius: 50px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid var(--primary);
      font-size: 16px;
      box-shadow: 0 5px 15px rgba(69, 160, 73, 0.4);
    }
    
    .hero-cta:hover {
      background: transparent;
      color: var(--primary);
      box-shadow: 0 7px 20px rgba(69, 160, 73, 0.4);
      transform: translateY(-3px);
    }
    
    .hero-cta-secondary {
      margin-left: 15px;
      display: inline-block;
      padding: 14px 30px;
      background: transparent;
      color: var(--primary);
      border-radius: 50px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid var(--primary);
      font-size: 16px;
    }
    
    .hero-cta-secondary:hover {
      background: var(--primary);
      color: white;
      box-shadow: 0 5px 15px rgba(69, 160, 73, 0.4);
      transform: translateY(-3px);
    }
    
    /* Carousel */
    .carousel-container {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .carousel-item img {
      height: 400px;
      object-fit: cover;
      border-radius: 20px;
    }
    
    .carousel-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 30px;
      background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
      border-radius: 0 0 20px 20px;
    }
    
    .skill-badge {
      display: inline-block;
      padding: 8px 20px;
      background: var(--primary);
      color: white;
      border-radius: 50px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
      font-size: 14px;
      position: absolute;
      bottom: 20px;
      left: 20px;
    }
    
    .skill-badge:hover {
      background: var(--primary-dark);
      color: white;
      box-shadow: 0 5px 15px rgba(69, 160, 73, 0.4);
    }
    
    /* Section Styling */
    section {
      padding: 80px 0;
    }
    
    .section-title {
      margin-bottom: 50px;
      text-align: center;
    }
    
    .section-title h2 {
      font-size: 36px;
      font-weight: 700;
      color: var(--secondary);
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
    }
    
    .section-title h2::after {
      content: '';
      position: absolute;
      display: block;
      width: 60px;
      height: 3px;
      background: var(--primary);
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }
    
    /* About Section */
    .about img {
      border-radius: 20px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.5s ease;
    }
    
    .about img:hover {
      transform: scale(1.03);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .about h3 {
      font-weight: 700;
      font-size: 28px;
      color: var(--secondary);
      margin-bottom: 20px;
    }
    
    .about p {
      color: #666;
      line-height: 1.8;
    }
    
    /* Icon Boxes */
    .icon-box {
      padding: 30px;
      border-radius: 10px;
      background: #fff;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.5s ease;
      height: 100%;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }
    
    .icon-box::before {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 3px;
      background: var(--primary);
      transition: all 0.5s ease;
      z-index: -1;
    }
    
    .icon-box:hover::before {
      height: 100%;
      border-radius: 10px;
    }
    
    .icon-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .icon-box:hover h4, 
    .icon-box:hover p {
      color: #fff;
    }
    
    .icon-box .title {
      font-weight: 700;
      margin-bottom: 15px;
      font-size: 18px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .icon-box .title::after {
      content: '';
      position: absolute;
      display: block;
      width: 30px;
      height: 2px;
      background: var(--primary);
      bottom: 0;
      left: 0;
      transition: all 0.5s ease;
    }
    
    .icon-box:hover .title::after {
      background: #fff;
      width: 40px;
    }
    
    .icon-box .description {
      line-height: 1.8;
      color: #555;
    }
    
    /* Section BG */
    .section-bg {
      background-color: #f8f9fa;
    }
    
    /* Values Section */
    .values {
      background: url('/controllers/vdaya/img/bg-dot.png'), url('/controllers/vdaya/img/bg-dot.png'), url('/controllers/vdaya/img/bg-round.png'), url('/controllers/vdaya/img/bg-tree.png');
      background-position: 10px 10px, right 10px top 10px, left 50% top -50px, left 50% bottom -150px;
      background-repeat: no-repeat;
    }
    
    /* Testimonials */
    .testimonial-slider {
      padding: 40px 0;
    }
    
    .testimonial-item {
      background: #fff;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      margin: 15px;
      transition: all 0.3s ease;
    }
    
    .testimonial-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .testimonial-text {
      color: #555;
      font-style: italic;
      margin-bottom: 20px;
      position: relative;
      padding-left: 30px;
    }
    
    .testimonial-text::before {
      content: '\201C';
      font-size: 60px;
      color: var(--primary);
      position: absolute;
      left: 0;
      top: -20px;
      font-family: 'Georgia', serif;
      opacity: 0.3;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
    }
    
    .testimonial-author img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 15px;
      object-fit: cover;
    }
    
    .testimonial-author-info h5 {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
    }
    
    .testimonial-author-info span {
      color: #666;
      font-size: 14px;
    }
    
    /* Stats Section */
    .stats-counter {
      padding: 60px 0;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/controllers/vdaya/img/stats-bg.jpg');
      background-position: center;
      background-size: cover;
      background-attachment: fixed;
    }
    
    .stats-item {
      padding: 30px;
      text-align: center;
      color: #fff;
    }
    
    .stats-item .purecounter {
      font-size: 48px;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 15px;
    }
    
    .stats-item p {
      font-size: 16px;
      margin: 0;
    }
    
    /* CTA Section */
    .cta {
      padding: 80px 0;
      background: linear-gradient(rgba(69, 160, 73, 0.9), rgba(69, 160, 73, 0.9)), url('/controllers/vdaya/img/cta-bg.jpg');
      background-position: center;
      background-size: cover;
      color: #fff;
    }
    
    .cta h3 {
      font-weight: 700;
      font-size: 32px;
      margin-bottom: 20px;
    }
    
    .cta p {
      font-size: 18px;
      margin-bottom: 0;
    }
    
    .cta-btn {
      display: inline-block;
      padding: 15px 30px;
      background: #fff;
      color: var(--primary);
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    }
    
    .cta-btn:hover {
      background: var(--accent);
      color: #fff;
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
    }
    
    /* Workshops Section */
    .workshop-card {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
      transition: all 0.3s ease;
      height: 100%;
    }
    
    .workshop-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .workshop-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    
    .workshop-card-body {
      padding: 20px;
    }
    
    .workshop-card-body h5 {
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--secondary);
    }
    
    .workshop-card-body p {
      color: #666;
      margin-bottom: 15px;
      line-height: 1.6;
    }
    
    .workshop-card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      background: rgba(69, 160, 73, 0.05);
    }
    
    .workshop-rating {
      color: var(--accent);
    }
    
    .workshop-price {
      font-weight: 600;
      color: var(--primary);
    }
    
    /* Footer */
    footer {
      background: #f8f9fa;
      padding: 60px 0 0 0;
      color: #333;
      font-size: 14px;
    }
    
    .footer-top {
      padding-bottom: 30px;
    }
    
    .footer-info {
      margin-bottom: 30px;
    }
    
    .footer-info p {
      margin-top: 20px;
      line-height: 1.7;
    }
    
    .footer-info .social-links {
      margin-top: 20px;
    }
    
    .footer-info .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background: var(--primary);
      color: #fff;
      border-radius: 50%;
      margin-right: 10px;
      transition: all 0.3s ease;
    }
    
    .footer-info .social-links a:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
    }
    
    .footer-links {
      margin-bottom: 30px;
    }
    
    .footer-links h4 {
      font-size: 18px;
      font-weight: 600;
      color: var(--secondary);
      position: relative;
      padding-bottom: 12px;
      margin-bottom: 20px;
    }
    
    .footer-links h4::after {
      content: '';
      position: absolute;
      display: block;
      width: 30px;
      height: 2px;
      background: var(--primary);
      bottom: 0;
      left: 0;
    }
    
    .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .footer-links ul li {
      padding: 8px 0;
      display: flex;
      align-items: center;
    }
    
    .footer-links ul li:first-child {
      padding-top: 0;
    }
    
    .footer-links ul a {
      color: #666;
      transition: all 0.3s ease;
      display: inline-block;
      text-decoration: none;
    }
    
    .footer-links ul a:hover {
      color: var(--primary);
      transform: translateX(5px);
    }
    
    .footer-links .bx {
      color: var(--primary);
      font-size: 16px;
      margin-right: 10px;
    }
    
    .footer-newsletter {
      margin-bottom: 30px;
    }
    
    .footer-newsletter h4 {
      font-size: 18px;
      font-weight: 600;
      color: var(--secondary);
      position: relative;
      padding-bottom: 12px;
      margin-bottom: 20px;
    }
    
    .footer-newsletter h4::after {
      content: '';
      position: absolute;
      display: block;
      width: 30px;
      height: 2px;
      background: var(--primary);
      bottom: 0;
      left: 0;
    }
    
    .footer-newsletter form {
      margin-top: 20px;
      position: relative;
    }
    
    .footer-newsletter input[type="email"] {
      border: 1px solid #ddd;
      padding: 10px 20px;
      width: 100%;
      height: 45px;
      color: #333;
      border-radius: 50px;
      outline: none;
    }
    
    .footer-newsletter input[type="submit"] {
      position: absolute;
      top: 0;
      right: 0;
      height: 45px;
      border: none;
      background: var(--primary);
      color: #fff;
      padding: 0 20px;
      border-radius: 0 50px 50px 0;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .footer-newsletter input[type="submit"]:hover {
      background: var(--primary-dark);
    }
    
    .copyright {
      text-align: center;
      padding: 20px 0;
      border-top: 1px solid #e1e1e1;
    }
    
    .copyright strong {
      font-weight: 600;
    }
    
    .back-to-top {
      position: fixed;
      visibility: hidden;
      opacity: 0;
      right: 20px;
      bottom: 20px;
      z-index: 996;
      background: var(--primary);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(69, 160, 73, 0.3);
    }
    
    .back-to-top:hover {
      background: var(--primary-dark);
      color: #fff;
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(69, 160, 73, 0.4);
    }
    
    .back-to-top.active {
      visibility: visible;
      opacity: 1;
    }
    
    /* Animated Elements */
    .floating-element {
      animation: float 8s ease-in-out infinite;
    }
    
    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-20px);
      }
    }
    
    /* Ripple Effect */
    .ripple {
      position: relative;
      overflow: hidden;
    }
    
    .ripple:after {
      content: '';
      display: block;
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      pointer-events: none;
      background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
      background-repeat: no-repeat;
      background-position: 50%;
      transform: scale(10, 10);
      opacity: 0;
      transition: transform .5s, opacity 1s;
    }
    
    .ripple:active:after {
      transform: scale(0, 0);
      opacity: .3;
      transition: 0s;
    }
    
    /* Media Queries */
    @media (max-width: 1199px) {
      .hero-header {
        padding-top: 140px;
      }
    }
    
    @media (max-width: 991px) {
      .mobile-nav-toggle {
        display: block;
      }
      
      .navbar ul {
        display: none;
      }
      
      .hero-header {
        padding-top: 120px;
      }
      
      .hero-header .col-lg-7 {
        margin-bottom: 50px;
      }
    }
    
    @media (max-width: 768px) {
      .section-title h2 {
        font-size: 30px;
      }
      
      .cta h3 {
        font-size: 28px;
      }
      
      .carousel-item img {
        height: 300px;
      }
    }
    
    @media (max-width: 575px) {
      .hero-header .display-3 {
        font-size: 36px;
      }
      
      .hero-cta, .hero-cta-secondary {
        display: block;
        margin: 0 0 20px 0;
        text-align: center;
      }
      
      .carousel-item img {
        height: 250px;
      }
    }
 
    /* Header NAVBAR */
    #header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
      z-index: 997;
      padding: 15px 0;
      transition: all 0.5s ease;
    }
    
    #header.header-scrolled {
      padding: 10px 0;
      background-color: #fff;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }
    
    .header-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .logo {
      display: flex;
      align-items: center;
    }
    
    .logo img {
      max-height: 40px;
      margin-right: 10px;
      transition: all 0.4s ease;
    }
    
    .logo img:hover {
      transform: scale(1.1);
    }
    
    .navbar {
      display: flex;
    }
    
    .navbar ul {
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
    }
    
    .navbar li {
      position: relative;
      margin-left: 30px;
    }
    
    .nav-link {
      display: block;
      position: relative;
      color: #333;
      padding: 10px 0;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
      transition: 0.3s;
    }
    
    .nav-link:before {
      content: "";
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 5px;
      left: 0;
      background-color: #5846f9;
      visibility: hidden;
      transition: all 0.3s ease-in-out;
    }
    
    .nav-link:hover:before,
    .nav-link.active:before {
      visibility: visible;
      width: 100%;
    }
    
    .nav-link:hover,
    .nav-link.active {
      color: #5846f9;
    }
    
    .mobile-nav-toggle {
      display: none;
      cursor: pointer;
      font-size: 24px;
      color: #2d405f;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes colorPulse {
      0% { color: #5846f9; }
      50% { color: #8067ff; }
      100% { color: #5846f9; }
    }
    
    .navbar li:nth-child(1) { animation: fadeIn 0.5s ease forwards; }
    .navbar li:nth-child(2) { animation: fadeIn 0.5s 0.1s ease forwards; }
    .navbar li:nth-child(3) { animation: fadeIn 0.5s 0.2s ease forwards; }
    .navbar li:nth-child(4) { animation: fadeIn 0.5s 0.3s ease forwards; }
    .navbar li:nth-child(5) { animation: fadeIn 0.5s 0.4s ease forwards; }
    
    .navbar li:last-child .nav-link {
      background: var(--primary); /* linear-gradient(45deg, #5846f9 0%, #7b27d8 100%); */
      padding: 10px 20px;
      color: white;
      border-radius: 4px;
      transition: all 0.4s;
    }
    
    .navbar li:last-child .nav-link:hover {
      background: linear-gradient(45deg, #7b27d8 0%, #5846f9 100%);
      transform: translateY(-3px);
      box-shadow: 0 4px 15px rgba(88, 70, 249, 0.4);
    }
    
    .navbar li:last-child .nav-link:before {
      display: none;
    }
    
    @media (max-width: 991px) {
      .navbar ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: white;
        width: 200px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        padding: 10px 0;
        z-index: 99;
      }
      
      .navbar.mobile-active ul {
        display: flex;
      }
      
      .navbar li {
        margin: 5px 20px;
      }
      
      .mobile-nav-toggle {
        display: block;
      }
      
      .navbar li:last-child .nav-link {
        display: inline-block;
        margin-top: 10px;
      }
    }
