
        /* CSS Variables for a consistent dark theme */
        :root {
            --primary-color: #841518; /* A vibrant gold/orange for accents */
            --secondary-color: #0DB14B; /* A green for the ESG section */
            --background-color: #fff; /* Dark blue-gray */
            --background-light: #2d374815; /* Lighter dark blue-gray */
            --text-color: #0a0a0b; /* Off-white for readability */
            --font-family-primary: 'Montserrat', sans-serif;
            --font-family-secondary: 'Playfair Display', serif;
            --projection-color:#841518; /* Projection color */
            --system-color:#0DB14B; /* system color */
            --events-color:#243178; /* events color */
        }

        /* Base Styles & Typography */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family-primary);
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--background-color);
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: var(--font-family-secondary);
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--projection-color);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #0b111a;
        }

        /* --- Animations --- */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes scaleIn {
            from { transform: scale(0.95); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        @keyframes slideInLeft {
            from { transform: translateX(-50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes slideInRight {
            from { transform: translateX(50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        .animated-section {
            opacity: 0;
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            transform: translateY(20px);
        }
        .animated-section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
        }
        
        /* .video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        .video-container video {
            min-width: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            object-fit: contain;
        } */

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 1;
            padding: 2rem;
        }

        .company-name {
            font-size: 5rem;
            font-family: var(--font-family-secondary);
            animation: fadeIn 1s ease-out 0.5s forwards;
            opacity: 0;
            text-shadow: 0 4px 15px rgba(0,0,0,0.5);
        }

        .tagline {
            font-size: 1.5rem;
            margin-top: 1rem;
            animation: fadeIn 1s ease-out 1s forwards;
            opacity: 0;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .cta-button {
            display: inline-block;
            margin-top: 2rem;
            padding: 1rem 2.5rem;
            background: var(--primary-color);
            color: var(--background-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            animation: scaleIn 0.8s ease-out 1.5s forwards;
            opacity: 0;
        }
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        /* Navigation Bar */
        .navbar1 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: .5rem 2rem;
            transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
        }
        .navbar1.scrolled {
            background-color: rgba(26, 32, 44, 0);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .navbar-logo a {
            color: #fff;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }

          .navbar1.scrolled .navbar-logo a {
               color: #0b111a;
         }
        .logo-icon {
            color: var(--primary-color);
            margin-right: 0.5rem;
            font-size: 1.8rem;
        }
        .logo-text {
            font-family: var(--font-family-secondary);
        }

        .navbar-menu {
            list-style: none;
            display: flex;
            gap: 2rem;
        }
        .navbar1.scrolled .navbar-menu a {
            color: #0b111a;
            text-decoration: none;
           font-weight: 700;
            transition: color 0.3s ease;
            position: relative;
        }
        .navbar-menu a {
            color: #fff;
            text-decoration: none;
           font-weight: 700;
            transition: color 0.3s ease;
            position: relative;
        }
        .navbar-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }
        .navbar-menu a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #fff;
        }

        /* About Us Section */
        .about-section {
            padding: 2rem 0;
        }
        .about-content {
            display: flex;
            flex-wrap: wrap;
           
            align-items: center;
        }
        .about-image, .about-description {
            flex: 1;
            min-width: 200px;
        }
        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.5s ease;
        }
        .about-image img:hover {
            transform: scale(1.02);
        }
        .about-description h2 {
            margin-bottom: 1.5rem;
        }
        .about-description h3 {
            
            text-align: justify;
        }
        .about-description p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            text-align: justify;
        }

        /* Services Section (Parallax Effect) */
        .services-section {
            padding: 8rem 0;
            background-image: url('https://images.pexels.com/photos/17042578/pexels-photo-17042578/free-photo-of-lights-in-the-sky.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
            color: #fff;
        }
        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.7);
            z-index: 1;
        }
        .services-section .container, .services-section .section-title {
            position: relative;
            z-index: 2;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .service-card {
            background-color: rgba(45, 55, 72, 0.8);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.4);
        }
        .service-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }
        .service-card:hover i {
            transform: scale(1.1) rotate(5deg);
        }
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        /* Case Studies Section */
        .case-studies-section {
            padding: 2rem 0;
        }
        .case-studies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        .case-study-card {
            background-color: var(--background-light);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .case-study-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }
        .case-study-title {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }
        .case-study-details {
            list-style: none;
            margin-top: 1rem;
        }
        .case-study-details li {
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }
        .know-more-btn {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.75rem 1.5rem;
            background: var(--primary-color);
            color: var(--background-color);
            text-decoration: none;
            border-radius: 5px;
            font-weight: 700;
            transition: background 0.3s ease;
        }
        .know-more-btn:hover {
            background: #e0962c;
        }

        /* Why Choose Us Section */
        .why-choose-us-section {
            padding: 2rem 0;
            background-color: var(--background-light);
        }
        .why-choose-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .why-card {
            text-align: center;
            padding: 2rem;
            border-radius: 12px;
            background: var(--background-color);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .why-card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .why-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        /* Metrics and ESG Section */
        .metrics-section {
            padding: 2rem 0;
            text-align: center;
        }
        .metrics-header {
            max-width: 800px;
            margin: 0 auto 3rem;
        }
        .metrics-header p {
            font-size: 1.2rem;
            color: #9ca3af;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .stat-item {
            background: var(--background-light);
            padding: 2rem;
            border-radius: 12px;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-color);
            font-family: var(--font-family-secondary);
        }
        .stat-label {
            font-size: 1.2rem;
            margin-top: 0.5rem;
        }

        .esg-section {
            padding: 2rem 0;
            background-color: #0b111a;
        }
        .esg-content {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
        }
        .esg-text, .esg-image {
            flex: 1;
            min-width: 300px;
        }
        .esg-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-align: left;
        }
        .esg-text p {
            margin-bottom: 1rem;
        }
        .esg-image img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        /* Gallery Section */
        .gallery-section {
            padding: 2rem 0;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1rem;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
            .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay .play-icon {
            width: 60px;
            height: 60px;
            fill: white;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay .play-icon {
            transform: scale(1.2);
        }
        
        /* Modal (Popup) styles */
        .modal {
            display: none; /* Hidden by default */
            position: fixed; /* Stay in place */
            z-index: 1000; /* Sit on top */
            padding-top: 60px; /* Location of the box */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            overflow: auto; /* Enable scroll if needed */
            background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
        }

        .modal-content {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 800px;
            animation-name: zoom;
            animation-duration: 0.6s;
        }

        @keyframes zoom {
            from {transform:scale(0)} 
            to {transform:scale(1)}
        }

        .close {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
        }

        .close:hover,
        .close:focus {
            color: #bbb;
            text-decoration: none;
            cursor: pointer;
        }

        @media only screen and (max-width: 700px){
            .modal-content {
                width: 100%;
            }
        }
        /* Careers Section */
        .join-us-section {
            padding: 2rem 0;
            background-color: var(--background-light);
        }
        .join-us-content {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
        }
        .join-us-text, .join-us-image {
            flex: 1;
            min-width: 300px;
        }
        .join-us-image img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        /* Clients Section */
        .clients-section {
            padding: 2rem 0;
        }
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            align-items: center;
            justify-items: center;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: filter 0.3s ease, opacity 0.3s ease;
        }
        .clients-grid:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        .client-logo img {
            width: 100%;
            height: auto;
            max-width: 150px;
        }

        /* Contact Section */
        .contact-section {
            padding: 2rem 0;
            background-color: var(--background-light);
        }
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
        }
        .contact-form-container, .contact-map-container {
            flex: 1;
            min-width: 300px;
        }
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #4a5568;
            background-color: var(--background-color);
            color: var(--text-color);
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(247, 169, 53, 0.5);
        }
        .submit-button {
            padding: 1rem 2rem;
            background-color: var(--primary-color);
            color: var(--background-color);
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }
        .contact-map-container iframe {
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        /* Footer */
        .site-footer {
            padding: 2rem 0;
            text-align: center;
            background-color: var(--background-color);
            border-top: 1px solid #2d3748;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .navbar-menu {
                gap: 1rem;
            }
            .section-title {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .hero-section{
                flex-wrap: wrap ;
                height: auto !important;
            }
            .glass-slider-section{
                position: static !important;
            }
            .navbar-logo img{
                width: 60px;
            }
            .navbar1 {
                padding: 1rem 1.5rem;
            }
            .menu-toggle {
                display: block;
            }
            .navbar-menu {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                flex-direction: column;
                background-color: rgba(26, 32, 44, 0.9);
                backdrop-filter: blur(10px);
                border-top: 1px solid #4a5568;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-in-out;
            }

            .navbar-menu.active {
                max-height: 500px; /* Adjust as needed */
            }
            .navbar-menu li {
                width: 100%;
                text-align: center;
            }
            .navbar-menu a {
                display: block;
                padding: 1rem 0;
                border-bottom: 1px solid #4a5568;
            }
            .about-content, .esg-content, .join-us-content {
                flex-direction: column;
            }
            .about-description h2, .esg-title {
                text-align: center;
            }
            .esg-image {
                order: -1;
            }
        }
        @media (max-width: 480px) {
            .company-name {
                font-size: 3rem;
            }
            .tagline {
                font-size: 1.2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }

        /* Glassmorphism Section */
.glass-slider-section {
  background: url('your-background-image.jpg') center/cover no-repeat;
  padding: 0px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position:absolute;
  bottom:10px;
}

.glass-slider-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}

.glass-slide {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  padding: 30px;
  max-width: 350px;
  width: 100%;
  color: #fff;
  text-align: center;
  transition: transform 0.3s ease;
}

.glass-slide h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.glass-slide p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.glass-slide a {
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.glass-slide a:hover {
  background: rgba(255, 255, 255, 0.4);
}

.glass-slide:hover {
  transform: translateY(-10px);
}

/* Responsive */
@media (max-width: 768px) {
  .glass-slider-container {
    flex-direction: column;
    align-items: center;
  }
}
/* Animated image wrapper */
.animated-banner {
  text-align: center;
  padding: 10px 20px;
 

}
.animated-banner img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
  background-color: #2d3748a5;
}

/* Initial state */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-in-out;
}

/* When in view */
.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}



.partners-carousel {
  padding: 10px 0;
 
}

.partnersSwiper {
  padding: 10px;
}

.partnersSwiper .swiper-slide {
  text-align: center;
  padding: 5px;
  transition: all 0.3s;
}

.partnersSwiper .swiper-slide img {
  width: 120px;
 background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  padding:10px;
  color: #fff;
  text-align: center;
  transition: transform 0.3s ease;
  transition: all 0.3s ease;
}

.partnersSwiper .swiper-slide img:hover {

  transform: scale(1.05);
}


  .event-card {
   background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

    

   /* --- Founder Section Styles --- */
      /* --- Founder Section Styles (Using Flexbox) --- */
        .founder-section {
            padding: 2rem 1.5rem;
            background-color: var(--background-light);
            overflow: hidden; /* Prevents decorative elements from causing scroll */
        }

        .founder-container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            flex-direction: column; /* Mobile-first: stack image and bio */
            align-items: center;
            gap: 2rem;
        }

        /* --- Image Wrapper Styles --- */
        .founder-image-wrapper {
            position: relative;
            z-index: 1;
            width: 90%;
            max-width: 250px; /* Control max size on smaller screens */
        }

     
        
        .founder-container:hover .founder-image-wrapper::before {
            transform: rotate(-4deg) scale(1.02);
        }

       .founder-img {
    width: 90%;
    height: auto;
    border-radius: 58% 42% 69% 31% / 40% 57% 43% 60%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: block;
    animation: morph 8s ease-in-out infinite alternate;
}

@keyframes morph {
    0% {
        border-radius: 58% 42% 69% 31% / 40% 57% 43% 60%;
    }
    50% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    100% {
        border-radius: 60% 30% 40% 70% / 50% 60% 40% 50%;
    }
}


        /* --- Bio/Content Styles --- */
        .founder-bio {
            text-align: center; /* Center text on mobile */
        }

        .founder-bio h1 {
            font-family: var(--font-family-secondary);
            font-size: 2.75rem;
            line-height: 1.2;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .founder-bio .title {
            font-family: var(--font-family-primary);
            font-weight: 500;
            font-size: 1.125rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }

        /* Decorative Divider */
        .divider {
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            border-radius: 2px;
            margin: 0 auto 2rem auto; /* Center the divider */
        }

        .founder-bio p {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--text-light);
            max-width: 700px; /* Improves readability */
            margin-left: auto;
            margin-right: auto;
        }

        /* --- Responsive Design --- */
        @media (min-width: 768px) {
            .founder-container {
                flex-direction: row; /* Side-by-side layout on larger screens */
                align-items: center;
                gap: 3rem; /* Increase gap for larger screens */
            }

            .founder-image-wrapper {
                flex: 5; /* Takes 5/12 of the width */
                max-width: none;
            }
            .founder-bio {
                flex: 7; /* Takes 7/12 of the width */
                text-align: left; /* Align text to the left */
            }
            .divider {
                margin: 0 0 2rem 0; /* Align divider to the left */
            }
            .founder-bio p {
                margin-left: 0;
                margin-right: 0;
            }
            .founder-bio h1 {
                font-size: 3.5rem;
            }
        }



          /* Custom font integration */
            .font-playfair {
                font-family: 'Playfair Display', serif;
            }
            .font-inter {
                font-family: 'Inter', sans-serif;
            }

            /* Main section styling */
            .glass-slider-section {
                background-image: url('https://images.unsplash.com/photo-1481829824964-3c28a1c5a329?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
                background-size: cover;
                background-position: center;
                background-attachment: fixed; /* Parallax effect */
            }

            /* Individual slide styling */
            .glass-slide {
                /* Glassmorphism effect */
                background: rgba(0, 0, 0, 0.4);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px); /* For Safari */
                
                /* Background image setup */
                background-size: cover;
                background-position: center;
                position: relative;
                z-index: 1;
                overflow: hidden; /* Ensures pseudo-element doesn't overflow */
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }

            /* Dark overlay for better text readability on slides */
            .glass-slide::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.5); /* Dark overlay */
                z-index: -1;
                transition: background 0.3s ease;
            }

            /* Setting the individual background images */
            #event-slide {
                background-image: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
            }
            #brand-slide {
                background-image: url('https://images.unsplash.com/photo-1629904853716-f0bc54eea481?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
            }
            #exhibition-slide {
                background-image: url('https://images.unsplash.com/photo-1505238680356-667803448bb6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
            }

            /* Hover effects for the slide */
            .glass-slide:hover {
                transform: translateY(-10px) scale(1.02);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            }

            .glass-slide:hover::before {
                background: rgba(0, 0, 0, 0.3); /* Lighten overlay on hover */
            }

            .swiper-button-next, .swiper-button-prev{
                display: none !important;
            }


                /* --- Common Page Header Styling --- */
.page-header {
  position: relative;
  padding: 100px 0; /* Adjust padding for more/less height */
  text-align: center;
  color: #ffffff; /* White text */
  background-image: url('../images/breadcrumb_banner.png'); /* A stylish generic background image */
  background-size: cover;
  background-position: center center;
  /* background-attachment: fixed; Parallax effect */

  background-repeat: no-repeat;
}

/* Dark overlay for better text readability */
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark tint - adjust opacity (0.6) as needed */
  z-index: 1;
}

/* Ensure content sits above the overlay */
.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-family: 'Playfair Display', serif; /* Elegant title font you already have */
  font-size: 4rem; /* Large, impactful title */
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Styling for the breadcrumb inside the page-header */
.page-header .breadcrumb {
  display: inline-flex; /* Center the breadcrumb */
  background-color: transparent;
  padding: 0;
  margin: 0;
  font-size: 1rem;
}

.page-header .breadcrumb-item a {
  color: #e0e0e0; /* Light grey for links */
  text-decoration: none;
  transition: color 0.3s;
}

.page-header .breadcrumb-item a:hover {
  color: #ffffff; /* White on hover */
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 0.75rem;
  color: rgba(255, 255, 255, 0.5); /* Semi-transparent separator */
}

.page-header .breadcrumb-item.active {
  color: #ffffff; /* Active page is bright white */
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-header {
    padding: 60px 0;
  }
  .page-header h1 {
    font-size: 2.5rem;
  }
}   


   .organised-events {
  background: var(--background-light);
  font-family: var(--font-family-primary);
}

.organised-events .section-title h2 {
  font-family: var(--font-family-secondary);
  font-size: 2.5rem;
  position: relative;
}

.organised-events .section-title .highlight {
  color: var(--events-color);
}

.event-card {
  background: #fff;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.event-img {
  position: relative;
  overflow: hidden;
}

.event-img img {
  transition: transform 0.4s ease;
}

.event-card:hover .event-img img {
  transform: scale(1.1);
}

.event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(36, 49, 120, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.event-card:hover .event-overlay {
  opacity: 1;
}

.event-overlay a {
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
}
    

.btn-contact {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    background: linear-gradient(145deg, var(--primary-color), #125a80);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3),
                -4px -4px 8px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
  }

  .btn-contact:hover {
    background: linear-gradient(145deg, #125a80, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.35),
                -6px -6px 12px rgba(255, 255, 255, 0.1);
  }

  .btn-contact:active {
    transform: translateY(1px);
    box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.4),
                inset -3px -3px 6px rgba(255, 255, 255, 0.1);
  }


  
        .upcoming-events {
            background-color: var(--background-light);
            position: relative;
            overflow: hidden;
        }

        /* Floating Shapes Animation */
        .floating-shapes .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(132, 21, 24, 0.08); /* Using primary color with low opacity */
            animation: float 25s infinite linear alternate;
            z-index: 0;
        }
        .shape-1 { width: 80px; height: 80px; top: 15%; left: 10%; animation-delay: 0s; }
        .shape-2 { width: 120px; height: 120px; top: 60%; right: 10%; animation-delay: -5s; }
        .shape-3 { width: 60px; height: 60px; top: 75%; left: 25%; animation-delay: -10s; }
        .shape-4 { width: 100px; height: 100px; top: 20%; right: 30%; animation-delay: -15s; }

        @keyframes float {
            from { transform: translateY(-20px) rotate(0deg) scale(1); }
            to { transform: translateY(20px) rotate(360deg) scale(1.1); }
        }

        /* Section Title Styles */
        .section-title h2 {
            font-family: var(--font-family-secondary);
        }

        .text-gradient {
            background: linear-gradient(45deg, var(--primary-color), var(--events-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .title-underline {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--events-color));
            border-radius: 2px;
        }
        .lead.text-muted {
            color: var(--text-muted-color) !important;
        }

        /* Timeline Styles */
        .events-timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .events-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--primary-color), var(--secondary-color), var(--events-color));
            transform: translateX(-50%);
            border-radius: 2px;
            z-index: 1;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 4rem;
        }
      
        .marker-inner {
            width: 50px;
            height: 50px;
            background: var(--events-color);
            border: 4px solid var(--background-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            animation: pulse-marker 2.5s infinite;
        }

        @keyframes pulse-marker {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Event Card Styles */
        .event-card-modern {
            background: var(--background-color);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .event-card-modern:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        /* Image Styles */
        .event-image-wrapper {
            position: relative;
            overflow: hidden;
            height: 100%;
            min-height: 280px;
        }

        .event-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .event-card-modern:hover .event-image {
            transform: scale(1.05);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            cursor: pointer;
        }

        .event-card-modern:hover .image-overlay {
            opacity: 1;
        }
     

        /* Content Styles */
        .event-content {
            position: relative;
            z-index: 2;
        }

        .event-badge {
            display: inline-block;
            padding: 6px 16px;
            background: var(--events-color);
            color: white;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .event-badge.success { background: var(--secondary-color); }
        .event-badge.primary { background: var(--primary-color); }

        .event-title {
            font-family: var(--font-family-secondary);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-color);
        }
        .event-title.text-event { color: var(--events-color); }
        .event-title.text-success { color: var(--secondary-color); }
        .event-title.text-primary { color: var(--primary-color); }

        .event-description {
            color: var(--text-muted-color);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .meta-item {
            color: var(--text-muted-color);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }
        .meta-item i {
            color: var(--primary-color);
            width: 20px;
        }

        /* Button Styles */
        .btn-modern {
            background: var(--events-color);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-modern:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(36, 49, 120, 0.25);
        }

        .btn-modern.success { background: var(--secondary-color); }
        .btn-modern.success:hover { box-shadow: 0 10px 20px rgba(13, 177, 75, 0.25); }
        .btn-modern.primary { background: var(--primary-color); }
        .btn-modern.primary:hover { box-shadow: 0 10px 20px rgba(132, 21, 24, 0.25); }

        /* CTA Styles */
        .cta-wrapper {
            background: var(--background-color);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid #e9ecef;
        }
        .cta-wrapper h4 {
            font-family: var(--font-family-secondary);
        }

        .btn-cta {
            background: linear-gradient(135deg, var(--primary-color), var(--events-color));
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.4s ease;
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(132, 21, 24, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .event-title { font-size: 1.6rem; }
        }
        
        @media (max-width: 767px) {
            .events-timeline::before {
                left: 25px;
                transform: translateX(0);
            }
            .timeline-item .row {
                flex-direction: column;
            }
            .timeline-item .order-md-1,
            .timeline-item .order-md-2 {
                order: 0 !important;
            }
            .timeline-marker {
                left: 25px;
                transform: translateX(-50%);
            }
            .event-card-modern {
                margin-left: 60px;
                width: calc(100% - 60px);
            }
            .event-image-wrapper {
                height: 220px;
            }
            .event-title {
                font-size: 1.4rem;
            }
            .cta-wrapper {
                padding: 2rem;
            }
        }


          /* Contact Section */
    .contact-section {
      padding: 80px 0;
    }
    .contact-card {
      background: #fff;
      border-radius: 15px;
      padding: 40px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.08);
      transition: 0.3s;
    }
    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }
    .contact-info {
      margin-bottom: 30px;
    }
    .contact-info h3 {
      color: var(--primary-color);
      font-weight: 700;
      margin-bottom: 15px;
    }
    .contact-info p { margin-bottom: 10px; }
    .contact-info i {
      color: var(--accent-color);
      margin-right: 8px;
    }

    /* Contact Form */
    .contact-form .form-control {
      border-radius: 10px;
      padding: 14px;
      border: 2px solid #eee;
      transition: all 0.3s ease;
    }
    .contact-form .form-control:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.2rem rgba(132, 21, 24, 0.2);
    }
    .btn-submit {
      background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
      color: #fff;
      padding: 14px 35px;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .btn-submit:hover {
      background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
      transform: translateY(-2px);
    }

    /* Map */
    .map-container {
      margin-top: 40px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

     /* Example style */
.navbar-menu a.active {
    font-weight: bolder;
    color: var(--primary-color); /* brand color */
    border-bottom: 2px solid var(--primary-color);
    background: rgba(255, 255, 255, 0.733); /* light glow background */
    padding: 4px 8px;
    border-radius: 6px;
}
.navbar-menu .btn-contact.active {
   
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    background: linear-gradient(145deg, var(--primary-color), #125a80);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3),
                -4px -4px 8px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}


  .truncate-3 {
  display: -webkit-box;
  -webkit-line-clamp: 5; /* number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
}


    .project-detail-card {
            background: #fff;
            border-radius: 1rem;
        }

        .project-detail-card img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-top-left-radius: 1rem;
            border-top-right-radius: 1rem;
        }

        .project-detail-content {
            padding: 2rem;
        }

        .project-detail-content h1 {
            color: var(--projection-color);
            margin-bottom: 1.5rem;
        }

        .project-detail-content p {
            line-height: 1.8;
            text-align: justify;
            color: #555;
        }

        /* Sidebar */
        .sidebar-widget {
            background-color: var(--background-color);
            border-radius: 1rem;
            position: sticky;
            top: 120px; /* Adjust based on navbar height */
        }
        .sidebar-widget h4{
            border-bottom: 2px solid var(--projection-color);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .project-list li {
            margin-bottom: 0.5rem;
        }

        .project-list a {
            text-decoration: none;
            color: var(--text-color);
            display: block;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .project-list a:hover {
            background-color: var(--projection-color);
            color: white;
            transform: translateX(5px);
        }

        .project-list a.active {
            background-color: var(--projection-color);
            color: white;
            font-weight: 700;
        }

                        .project-detail-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.project-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.project-detail-content h1 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}
.blockquote {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
}
       /* Inventory Section */
        .inventory-section {
            padding: 1rem 0;
        }
        
        .sidebar-widget {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            position: sticky;
            top: 100px;
        }
        
        .sidebar-widget h4 {
            font-family: var(--heading-font);
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        
        .inventory-list li a {
            display: block;
            padding: 12px 15px;
            text-decoration: none;
            color: var(--secondary-color);
            font-weight: bold;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .inventory-list li a:hover,
        .inventory-list li a.active {
            background-color: var(--primary-color);
            color: white;
            transform: translateX(5px);
        }
        
        .inventory-content h2 {
            font-family: var(--heading-font);
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            margin-top: 2rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 1rem;
        }
        
        .inventory-table {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .inventory-table thead {
            background-color: #343a40;
            color: white;
        }

        .table-striped>tbody>tr:nth-of-type(odd)>* {
            background-color: rgba(0, 0, 0, 0.03);
        }

          /* Services Section */
        .services-section {
            padding: 1rem 0;
            background-color: var(--background-color);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-family: var(--heading-font);
            font-size: 2.5rem;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .service-card {
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.07);
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #eee;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .service-card .icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            display: inline-block;
            line-height: 1;
        }

        .service-card h4 {
            font-family: var(--heading-font);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
        }
        
        .service-card p {
            color: #666;
            line-height: 1.6;
        }
