  /* Navbar styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            align-items: center;
            padding: 10px 5%;
            
            transition: all 0.3s ease;
            z-index: 1000;
        }

        /* Logo container */
        .logo-container {
            height: 60px;
            display: flex;
            align-items: center;
        }

        /* Logo image styling */
        .logo {
            max-height: 100%;
            width: auto;
            object-fit: contain;
        }

        /* Scrolled state */
        .navbar.scrolled {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 5px 5%;
        }

 /*HEADER*/
 .header-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 20px;
			padding:2em 0;
			
        }

        .image-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            margin: 0.5em 0;
        }
 
 /*Original*/
 /*carousel*/
	.original-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border-radius: .25rem;
	 
	}

	.original-card-white{background-color: #fff;}
	.original-card-img{width:100%;height: 400px;object-fit:cover;object-position:center}	
	.original-card-txt{background:#fff;text-align:center;}

 
 
 /*OVERLAY*/
  .image-overlay-card{
    max-width: 100%;
    margin: 20px auto;
    position: relative;
  }
  
  .image-overlay-container {
    position: relative;
    width: 100%;
  }
  
  .card-overlay-image {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .image-overlay-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
  }
  
  .caption-overlay-title {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
  }
  
  .caption-overlay-text {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
  }
/*CLASSIC*/
        .card-classic-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            padding: 20px;
			
        }
        
        /* Individual card-classic styling */
        .card-classic {
            flex: 1 1 300px; /* Grow, shrink, basis */
            display: flex;
            flex-direction: column;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            background: white;
        }
        
        /* 16:9 Aspect Ratio Image Container */
        .card-classic-img-container {
            position: relative;
            width: 100%;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
            overflow: hidden;
        }
        
        .card-classic-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* card-classic content area - grows to fill space */
        .card-classic-body {
            flex: 1; /* Makes card-classics equal height */
            display: flex;
            flex-direction: column;
            padding: 20px;
        }
        
        .card-classic-title {
            font-size: 1.25rem;
            margin: 0 0 12px 0;
            color: #333;
        }
        
        .card-classic-text {
            flex: 1; /* Pushes button to bottom */
            color: #666;
            margin: 0 0 16px 0;
            line-height: 1.5;
        }
        
        /* Button container - stays at bottom */
        .card-classic-footer {
         
            padding: 12px 0;
            border-top: 1px solid #e0e0e0;
            text-align: center;
        }
 
 /*Lightbox*/
  .lightbox-gallery-container {
            max-width: 1024px;
            width: 98%;
            margin: 0 auto;
            padding: 20px;
        }

        .thumbnail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            grid-auto-rows: 300px;
            gap: 0;
        }

        .thumbnail-item {
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
            border: 2px solid transparent;
        }

        .thumbnail-item.wide {
            grid-column: span 2;
        }

        .thumbnail-item.tall {
            grid-row: span 1;
        }

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

        .thumbnail-item:hover .thumbnail-image {
            transform: scale(1.05);
        }

        .thumbnail-caption,.thumbnail-h4 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 12px;
            margin: 0;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .thumbnail-item:hover .thumbnail-caption {
            background: rgba(0, 0, 0, 0.9);
        }

        .thumbnail-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
            z-index: 1;
        }

        /* Lightbox styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-image {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 30px;
            cursor: pointer;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 40px;
            cursor: pointer;
            padding: 20px;
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

		.lightbox-caption {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        text-align: center;
        background: rgba(0, 0, 0, 0.7);
        padding: 10px 20px;
        border-radius: 4px;
        max-width: 80%;
        font-size: 16px;
    }


	/*feature*/
		  .feature-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .feature-box {
            text-align: center;
            padding: 3em;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            border: 1px solid #eee;
            margin: 10px 0;
            border-radius: 5px;
            position: relative;
        }
        
        .feature-icon {
            position: absolute;
            top: 15px;
            left: 15px;
            font-size: 2em;
            color: #0078e7;
        }
        
        .feature-content {
            padding-top: 10px;
        }
        
        .feature-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 8px;
        }
        
        .feature-subtitle {
            font-size: 14px;
            color: #666;
        }
/*alternate*/
 /* Row container */
        .row {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
        }
        
        /* Common column styles */
        .col {
            width: 100%;
            padding: 0;
        }
        
        /* Image column */
        .img-col {
            height: 300px; /* Fixed height for images */
            overflow: hidden;
        }
        
        .img-col img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }
        
        /* Content column */
        .content-col {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2rem;
            box-sizing: border-box;
        }
        
    

		/*snapshot*/
		  .snapshot-container {
            display: grid;
            gap: 2rem;
            margin: 0 auto;
			
			
        }

        .snapshot-item {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .snapshot-icon-wrapper {
            width: 72px;
            height: 72px;
			border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .snapshot-icon {
            color: white;
            font-size: 32px;
        }

		
		
		
		
		
		
		/* Responsive grid */
        @media (min-width: 768px) {
            .snapshot-container {
                grid-template-columns: repeat(3, 1fr);
            }
			/*alternative*/
			 .col {
                width: 50%;
            }
            
            /* Odd rows: image left, content right */
            .row-odd .img-col {
                order: 1;
            }
            
            .row-odd .content-col {
                order: 2;
            }
            
            /* Even rows: image right, content left */
            .row-even .img-col {
                order: 2;
            }
            
            .row-even .content-col {
                order: 1;
            }
            
            /* Make image columns taller on larger screens */
            .img-col {
                height: 400px;
            }


        }


		/*list - group*/
		.listg-group {
            display: grid;
            gap: 1rem;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .listg-item {
            position: relative;
            background: #fff;
            border-radius: 8px;
            padding: 20px 20px 20px 80px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            min-height: 100px;
            display: flex;
            align-items: center;
        }

        .listg-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #007bff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .listg-content {
            text-align: center;
            width: 100%;
        }

        .listg-heading {
            margin: 0 0 8px 0;
            color: #333;
            font-size: 1.2rem;
        }

        .listg-text {
            margin: 0;
            color: #666;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        @media (min-width: 768px) {
            .listg-group {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .listg-item {
                padding-left: 90px;
            }
            
            .listg-icon {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 767px) {
            .listg-group {
                grid-template-columns: 1fr;
            }
        }


		/*carasouel*/
		.carasouel-background {}
		.carasouel-heading {font-weight: bold}
		.carasouel-subhead {font-weight: bold}
		.carasouel-para {color: #181818;}