﻿/* Section-boxx Styles by DeepSeek */    
 /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
  
        
        /* Main container covering entire width with responsive padding */
        .section-mainboxx {
            width: 100%;
            padding: 20px 5%; /* Default padding for mobile */
            max-width: 100vw;
            overflow-x: hidden;
        }
        
        /* Inner container for content */
        .section-boxx {
            width: 100%;
            margin: 0 auto 30px;
        }
        
        /* Heading style */
        .section-boxx h2 {
          /*  text-align: center; 
            margin-bottom: 30px;
            font-size: 2rem;
            color: #333;*/
        }
        
        /* Container for the items - flex layout */
        .section-items-container {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
        }
        
        /* Individual items - default to full width on mobile */
        .section-item {
            flex: 1 1 100%; /* Full width on mobile by default */
            min-height: 200px;
            padding: 30px;
            color: white;
            display: flex;
            flex-direction: column; /* Stack children vertically */
            gap: 15px; /* Space between stacked elements */
        }
        
        /* Style for content inside section-item */
        .section-item h1, 
        .section-item h2, 
        .section-item h3, 
        .section-item p {
            width: 100%; /* Take full width of container */
            margin: 0; /* Remove default margins */
            padding: 0; /* Remove default padding */
        }
        
        .section-item img {
            max-width: 100%;
            height: auto;
        /*    margin-top: auto;  Push image to bottom if there's space */
        }
        
        .section-item a {
            color: inherit;
            text-decoration: underline;
        }
        
        /* Color variations for items */
/* In your CSS, replace the color classes with these options */
/*----- color ----- */
.section-item:nth-child(1) { 
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
    color: #333;
}
.section-item:nth-child(2) { 
    background: linear-gradient(120deg, #e0f7ff 0%, #b3e5fc 100%);
    color: #0d47a1;
}
.section-item:nth-child(3) { 
    background: linear-gradient(to bottom, #f0fff4 0%, #c6f6d5 100%);
    color: #2e7d32;
}
.section-item:nth-child(4) { 
    background: linear-gradient(135deg, #eceff1 0%, #cfd8dc 100%);
    color: #263238;
} 
.section-item:nth-child(5) { 
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #e65100;
}
.section-item:nth-child(6) { 
    background: linear-gradient(120deg, #f3e5f5 0%, #e1bee7 100%);
    color: #6a1b9a;
}
.section-item:nth-child(7) { 
    background: linear-gradient(to bottom, #e1f5fe 0%, #b3e0ff 100%);
    color: #01579b;
}
.section-item:nth-child(8) { 
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #1b5e20;
} 
 
/* 1. White Marble
.section-item { 
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    color: #1a3d8c;
}
*/

           
        /* Desktop styles - 2, 3, or 4 items per row */
        @media (min-width: 768px) {
            .section-mainboxx {
                padding: 30px 8%; /* Larger padding on desktop */
            }
            
            /* For 2 items per row */
            .section-item {
                flex: 1 1 50%; /* 2 items per row */
            }
            
            /* For 3 items per row - add this class to section-items-container */
            .items-per-row-3 .section-item {
                flex: 1 1 33.33%;
            }
            
            /* For 4 items per row - add this class to section-items-container */
            .items-per-row-4 .section-item {
                flex: 1 1 25%;
            }
        }

/* End of Section-boxx Styles by DeepSeek */    

/* ------ Start of Scrolling Box by Deepseek ------------- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            
        }
 /* .main-container {
            width: 100%;
            padding: 20px;
        } */
        .main-container25 {
            width: 100%;
            padding: 20px 20px;
            background: linear-gradient(to bottom right, #109bc5, #014b91);
        }

        .scroller-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .scroller-container {
            width: 100%;
            height: 600px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            display: flex;
            scrollbar-width: none;
        }

        .scroller-container::-webkit-scrollbar {
            display: none;
        }

        .scroller {
            display: flex;
            flex-wrap: nowrap;
            height: 100%;
            padding: 0 20px;
            align-items: center;
        }

        .scroller-item {
            flex: 0 0 320px;
            height: 550px;
            margin-right: 20px;
            scroll-snap-align: start;
            background: #fff;
            border-radius: 16px;
            padding:0px;
            
            box-shadow: 0 4px 8px rgba(0,0,0,0.4);
            list-style: none;
            display: flex;
            flex-direction: column;
        }

        .scroller-item:last-child {
            margin-right: 0;
        }

        .scroller-item img {
            width: 100%;
            height: 300px;
          
            object-fit: cover;
            border-radius:  16px 16px 0 0;
        }

        .scroller-item h3 {
            margin: 5px 10px;
            font-size: 1.1rem;
        }

        .scroller-item p {
            font-size: 1rem;
            color: #555;
            flex-grow: 1;
            margin: 5px 10px;
            overflow: auto;
        }

        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            z-index: 10;
            border: none;
            font-size: 1.2rem;
        }

        .nav-arrow.left {
            left: 10px;
        }

        .nav-arrow.right {
            right: 10px;
        }

        .nav-arrow:hover {
            background: white;
        }

        .nav-arrow.disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
                /* Pause button */
        .pause-btn {
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            padding: 5px 20px;
            background: rgba(0,0,0,0.7);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            z-index: 10;
        }
/* ---------- END OF Auto Scrolling Boxx ----- */
/* ------ Cast-Designer Portfolio ----by Deepseek ------- */
  .portfolio-container {
            font-family: Arial, sans-serif;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .portfolio-title {
            text-align: center;
            color: #0066cc;
            margin-bottom: 20px;
        }
        
        .portfolio-items {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        
        .portfolio-item {
            width: calc(25% - 20px);
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 10px;
            box-sizing: border-box;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            background-color: #ffffff;
            text-align:center;
        }
        
        .portfolio-item:hover {
            transform: translateY(-5px);
            background-color: #f0f0f0;
        }
        
        .item-image {
            width: 120px;
            height: 100px;
            /*background-color: #ffffff;*/
            border-radius: 8px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0066cc;
            font-size: 20px;
        }
        
        .item-title {
            font-weight: bold;
            font-size: 18px;
            margin-bottom: 10px;
            color: #333;
        }
        
        .item-description {
            font-size: 14px;
            color: #666;
            line-height: 1.4;
            padding-bottom:10px;
        }
        
        @media (max-width: 768px) {
            .portfolio-item {
                width: calc(50% - 15px);
            }
        }
        
        @media (max-width: 480px) {
            .portfolio-item {
                width: 100%;
            }
        }
/* ------- End of Portfolio ----------*/
       /* Base button styles */
        .fancy-btn {
            position: relative;
            display: inline-block;
            padding: 10px 10px;
            color: #fff;
            background: #4CAF50;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
            border-radius: 50px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: none;
            cursor: pointer;
            font-size: 12px;
            min-width: 130px;
            text-align: center;
        }
        
        /* Ripple effect styles */
        .btn-ripple {
            position: relative;
            overflow: hidden;
        }
        .btn-ripple:hover:after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.8);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
            animation: ripple 1s ease-out;
        }
        @keyframes ripple {
    	0% { transform: scale(0, 0); }
    	50% { opacity: 1; } /* More visible at midpoint */
    	100% { transform: scale(25, 25); opacity: 0; }
		}
        
       /* Ripple Button */
       
       /* ------ FAQ -------- */
         :root {
            --primary-color: #6e45e2;
            --secondary-color: #88d3ce;
            --text-color: #333;
            --light-bg: #f9f9f9;
        }
        
        .faq-main{
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f7fa;
            padding: 40px 20px;
            color: var(--text-color);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-main h1 {
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 40px;
            font-size: 2.5rem;
        }
        
        .faq-container {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        
        .faq-item {
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-question {
            padding: 20px 60px 20px 25px;
            position: relative;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
            transition: all 0.3s ease;
            background: white;
        }
        
        .faq-question:hover {
            background: var(--light-bg);
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
            border-radius: 50%;
            background: rgba(110, 69, 226, 0.1);
        }
        
        .faq-item.active .faq-question::after {
            content: '-';
            background: var(--primary-color);
            color: white;
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            line-height: 1.6;
            color: #555;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 25px 25px 25px;
            max-height: 500px;
        }
        
        /* Animation for the content */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .faq-item.active .faq-answer {
            animation: fadeIn 0.3s ease forwards;
        }
        
        /* Responsive adjustments */
        @media (max-width: 600px) {
            .faq-question {
                padding-right: 50px;
                font-size: 1.1rem;
            }
        }

        
/* ----- FAQ by Deepseek ------ */
/* ---- Slide show ------ */
               /* Reset and base styles */
        .cd-slideshow-reset {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        /* Parent container */
        .cd-slideshow-parent {
            width: 100%;
            height: 90vh;
            position: relative;
            overflow: hidden;
            font-family: 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #333;
        }
 
 
 
 
 
 
 
    
        /* Main slideshow container */
        .cd-slideshow-container {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        /* Individual slide - desktop layout */
        .cd-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: row;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        /* Mobile layout */
        @media (max-width: 768px) {
            .cd-slide {
                flex-direction: column;
            }
        }
        
        .cd-slide.cd-active {
            opacity: 1;
            z-index: 1;
        }
        
        /* Image container - desktop */
        .cd-image-container {
            width: 50%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            
            padding: 2rem;
        }
        
        /* Image container - mobile */
        @media (max-width: 768px) {
            .cd-image-container {
                width: 100%;
                height: 40%;
                padding: .1rem;
            }
                 .cd-image-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            
        }
        }
        
        .cd-image-container img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
            
        }
        
        /* Content container - desktop */
        .cd-content-container {
            width: 50%;
            height: 100%;
            padding: 2rem;
            overflow-y: auto;
           	background-color: #f5f5f5;
             
        }
        
        /* Content container - mobile */
        @media (max-width: 768px) {
            .cd-content-container {
                width: 100%;
                height: 60%;
                padding: 0.5rem;
            }
        }
        
        .cd-content-container h1 {
          /*  margin-bottom: 1.5rem;
            color: #2c3e50;
            font-size: 1.8rem; */
        }
        
        /* Smaller heading on mobile */
        @media (max-width: 768px) {
            .cd-content-container h1 {
                font-size: 1.2rem;
                margin-bottom: 0.5rem;
            }
            
        .cd-content-container p {
            margin-bottom: 0.3rem;
            font-size:0.9rem;
            line-height: 1;
        }
        
        .cd-content-container ul {
            font-size:0.9rem;
            margin-bottom: 0.3rem;
            padding-left: 2rem;
            line-height: 1;
        }
        
        .cd-content-container li {
            font-size:0.9rem;
            margin-bottom: 0.3rem;
            line-height: 1;
        }

        }
        
        .cd-content-container p {
            margin-bottom: 1rem;
        }
        
        .cd-content-container ul {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        
        .cd-content-container li {
            margin-bottom: 0.5rem;
        }
        
        /* Navigation container */
        .cd-navigation-container {
            position: absolute;
            bottom: 2rem;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            z-index: 10;
        }
        
        /* Navigation arrows */
        .cd-nav-arrow {
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            margin: 0 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: background-color 0.3s;
        }
        
        .cd-nav-arrow:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }
        
        /* Slide indicators */
        .cd-indicators-container {
            position: absolute;
            bottom: 1rem;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            z-index: 10;
        }
        
        .cd-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: gray; /* rgba(255, 255, 255, 0.5); */
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .cd-indicator.cd-active {
            background-color: black;
        }
/* ----- End of Slide Show ----- */

/* ------ Colorful List by DeepSeek ------ */
.colorlist16 {
    list-style: none;
    padding: 0;
}
.colorlist16 li {
    padding: 12px 20px;
    margin: 8px 0;
    font-weight: 600;
    background: #f8f9fa;
    border-left: 4px solid;
    transition: all 0.5s ease;
}
/* 16 Unique Colors (vibrant and distinct) */
.colorlist16 li:nth-child(1)  { border-color: #FF5F6D; } /* Coral */
.colorlist16 li:nth-child(2)  { border-color: #FFC371; } /* Peach */
.colorlist16 li:nth-child(3)  { border-color: #A8FF78; } /* Mint */
.colorlist16 li:nth-child(4)  { border-color: #78FFD6; } /* Aqua */
.colorlist16 li:nth-child(5)  { border-color: #7F7FD5; } /* Lavender */
.colorlist16 li:nth-child(6)  { border-color: #FF9E7D; } /* Salmon */
.colorlist16 li:nth-child(7)  { border-color: #6BFFB8; } /* Emerald */
.colorlist16 li:nth-child(8)  { border-color: #FF6B6B; } /* Pastel Red */
.colorlist16 li:nth-child(9)  { border-color: #4ECDC4; } /* Tiffany Blue */
.colorlist16 li:nth-child(10) { border-color: #FFA07A; } /* Light Salmon */
.colorlist16 li:nth-child(11) { border-color: #9370DB; } /* Medium Purple */
.colorlist16 li:nth-child(12) { border-color: #20B2AA; } /* Light Sea Green */
.colorlist16 li:nth-child(13) { border-color: #FF6347; } /* Tomato */
.colorlist16 li:nth-child(14) { border-color: #BA55D3; } /* Medium Orchid */
.colorlist16 li:nth-child(15) { border-color: #3CB371; } /* Medium Sea Green */
.colorlist16 li:nth-child(16) { border-color: #FF8C00; } /* Dark Orange */

/* Hover Effect */
.colorlist16 li:hover {
    background: linear-gradient(90deg, white, #f0f0f0);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* List Style 1 -- */

.feature-list1 {
    list-style-type: none;
    padding-left: 0;
    border-radius: 8px;
    overflow: hidden;
}

.feature-list1 li, 
.feature-list1 ul {
    /* Reset inherited margins and padding */
    margin: 0; 
    padding: 10px 10px; 
    
    /* Reset list styling */
    list-style-type: none;
    
    /* Your existing styles */
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, transparent, #0066cc, transparent) 1;
    font-weight: 600;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
}

/* If this is a nested list and you want to ensure no inheritance */
.feature-list1 ul ul,
.feature-list1 ul li,
.feature-list1 li ul,
.feature-list1 li li {
    margin: 0;
    padding: 10px 10px;
}

.feature-list1 li:hover {
    background: rgba(0, 102, 204, 0.05);
   /* padding-left: 25px; */
}
.feature-list1 li:last-child {
    border-bottom: none;
}

/* ------ End of colorful list ----- */

/* ------ Counter ------- */
        .counter-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 20px;
            padding: 20px;
            background: #f5f5f5;
            border-radius: 8px;
            width: 200px;
            text-align:center;
        }
        

        .counter {
            font-size: 48px;
            font-weight: bold;
            color: #90EE90; /* light Green */
            font-variant-numeric: tabular-nums; /* Ensures numbers align properly */
            text-align:center;
        }
        
        .counter-label {
            font-size: 18px;
            color: #ADD8E6; /* light blue */
            text-align: center;
            margin-top: 8px;
        }
        
        /* Animation */
        @property --num {
            syntax: '<integer>';
            inherits: false;
            initial-value: 0;
        }
        
        .counter {
            animation: counter 2s ease-out forwards;
            counter-reset: num var(--num);
        }
        
        .counter::after {
            content: counter(num);
        }
        
        @keyframes counter {
            from {
                --num: 0;
            }
            to {
                --num: var(--target);
            }
        }
        
        /* Layout for demo */
        .counters-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }
/* ------ End of Counter ----- */

/* Animated Crawing containers -------- */
             
        /* Base container style */
        .scroll-animate {
          /*  width: 80%;
            margin: 40px auto;
            padding: 30px;
            background: #f5f5f5;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            
             Animation properties */
            opacity: 0;
            transition: all 1.5s ease-out;
        }

        /* Original directional animations (unchanged) */
        .animate-left { transform: translateX(-100px); }
        .animate-right { transform: translateX(100px); }
        .animate-top { transform: translateY(-100px); }
        .animate-bottom { transform: translateY(100px); }
        
        /* New zoom-in effect */
        .animate-zoomin {
            transform: scale(0.25);
            transform-origin: center;
        }
        
        /* Random needs no initial transform - handled by JS */
        .animate-random { transform: none; } 
        
        /* Active state when visible */
        .scroll-animate.visible {
            opacity: 1;
            transform: translate(0, 0) scale(1) !important;
        }
        
        /* Spacer to demonstrate scrolling */
        .spacer {
            height: 150vh;
            background: linear-gradient(#eee, #fff);
        }
    /* END Of Animated Containers */
/* ------ Topic Container ----- */
     :root {
            --dark-bg: #2c3e50;
            --light-bg: #ecf0f1;
            --highlight: #3498db;
            --text-dark: #333;
            --text-light: #fff;
        }

        .topic-maincontainer {
            display: flex;
            max-width: 100%;
            margin: 20px auto;
            min-height: 80vh;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        
        /* Topics Menu */
        .topics-menu {
            width: 25%;
            background: var(--dark-bg);
            overflow-y: auto;
        }
        
        .topic-item {
            padding: 16px 20px;
            color: var(--text-light);
            cursor: pointer;
            border-left: 4px solid transparent;
            transition: all 0.3s ease;
        }
        
        .topic-item:hover {
            background: rgba(255,255,255,0.1);
        }
        
        .topic-item.active {
            background: var(--light-bg);
            color: var(--text-dark);
            border-left: 4px solid var(--highlight);
            font-weight: 600;
        }
        
        /* Content Area */
        .content-area {
            width: 75%;
            padding: 25px;
            overflow-y: auto;
            background: var(--light-bg);
            display: none;
        }
        
        .content-area.active {
            display: block;
        }
        
        .content-image {
            width: 80%;
            height: 40%;
            margin: 0 auto 25px;
            background: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
            border-radius: 4px;
        }
        
        .content-heading {
            color: var(--dark-bg);
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--highlight);
        }
        
        .content-list {
            padding-left: 16px;
        }
        
        .content-list li {
  padding-left: 16px;          
 margin-bottom: 6px;
        }
        
        /* Mobile Layout */
        @media (max-width: 768px) {
            .topic-maincontainer {
                flex-direction: column;
                height: auto;
            }
            
            .topics-menu, .content-area {
                width: 100%;
            }
            
            .content-area {
                display: none;
                padding: 20px;
            }
            
            .content-area.active {
                display: block;
            }
            
            .topic-item.active {
                margin-bottom: 0;
                border-radius: 0;
            }
            
            .content-image {
                width: 100%;
               /* height: 200px; */
            }
        }
/* ----- END of Topic Container ------ */

/* HIDE in Mobile ad Desktop ---- */
/* Hide on mobile devices (typically screens less than 768px wide) */
.hideinmobile {
    display: none !important;
}

/* Hide on desktop devices (typically screens 768px wide and above) */
.hideindesktop {
    display: none !important;
}

/* Show on desktop - reverse of hideinmobile */
@media (min-width: 768px) {
    .hideinmobile {
        display: block !important;
        /* Use 'inline', 'flex', 'grid', etc. as needed for your element */
    }
}

/* Show on mobile - reverse of hideindesktop */
@media (max-width: 767px) {
    .hideindesktop {
        display: block !important;
        /* Use 'inline', 'flex', 'grid', etc. as needed for your element */
    }
}
/* END of HIDE --- */

        /* HShowcase specific styles - won't affect main styles */
        .hshowcase-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 10px auto;
            max-width: 1200px;
            justify-content: center;
        }

        .hshowcase {
            display: flex;
            width: calc(50% - 15px);
            min-height: 240px;
            background-color: #f9f9f9;
            border-radius: 2px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }

        .hshowcase-image {
            width: 50%; /* Fixed width instead of flex:1 */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: transform 0.3s ease;
        }

        .hshowcase-image:hover {
      
          transform: scale(1.05);
        }
  
		.hshowcase-content         {
            width: 50%; /* Fixed width instead of flex:1 */
            padding: 5px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .hshowcase-icon {
            font-size: 32px;
            color: #4a6baf;
            margin-bottom: 0px;
        }

        .hshowcase-heading {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 0px;
            line-height: 1.1;
            text-align: center;
        }

        .hshowcase-description {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-align: center;
            margin-top:8px;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .hshowcase {
                width: 100%;
                flex-direction: column;
                min-height: auto;
            }
            
            .hshowcase-image {
                width: 100%;
                height: 240px;
            }
            
            .hshowcase-content {
                width: 100%;
            }
        }
/*  ----- END of Hshowcase -------*/
        /* Vshowcase Exclusive Styles */
        .vshowcase-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin: 20px auto;
           

        }
        
        .vshowcase {
            position: relative;
            width: calc(33.333% - 20px);
            min-width: 280px;
            max-width: 350px;
        }
        
        .vshowcase-image {
            position: relative;
            width: 100%;
            height: 240px;
            overflow: hidden;
            border-radius: 2px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .vshowcase-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .vshowcase:hover .vshowcase-image img {
            transform: scale(1.05);
        }
        

        .vshowcase-desc {
            position: relative;
            width: calc(100% - 60px);
            margin: -15px auto 0;
            padding: 15px 5px 5px;
            background: white;
            border-radius: 0px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
            z-index: 2;
            transition: transform 0.3s ease;

        }
      .vshowcase-desc:hover {
		transform: translateY(-50%);
		
}  



        .vshowcase-icon {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            border: 2px solid white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .vshowcase-icon i {
            font-size: 20px;
            color: #333;
        }
        
        .vshowcase-title {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
            text-align: center;
            line-height: 1.3;
            font-family: 'Arial', sans-serif;
            letter-spacing: 0.5px;
        }
        
        .vshowcase-text {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            text-align: center;
            font-family: 'Arial', sans-serif;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        @media (max-width: 992px) {
            .vshowcase {
                width: calc(50% - 15px);
            }
        }
        
        @media (max-width: 768px) {
            .vshowcase {
                width: 100%;
                max-width: 400px;
            }
        }
/* -------- END of Vshowcase --------- */
        /* V3showcase Exclusive Styles */
        .v3showcase-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin: 20px auto;
           

        }
        
        .v3showcase {
            position: relative;
            width: calc(33.333% - 20px);
            min-width: 280px;
            max-width: 400px;
            
        }
        
        .v3showcase-image {
            position: relative;
            width: 100%;
            height: 240px;
            overflow: hidden;
            border-radius: 2px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .v3showcase-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .v3showcase:hover .v3showcase-image img {
            transform: scale(1.05);
        }
        

        .v3showcase-desc {
            position: relative;
           /* width: calc(33.333% - 20px); */
            margin: 0px auto 0;
            padding: 5px 5px 5px;
            background: white;
            border-radius: 0px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
            z-index: 2;
            transition: transform 0.3s ease;

        }


        
        .v3showcase-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 0px;
            text-align: center;
            line-height: 1.2;
            font-family: 'Roboto', sans-serif;
            letter-spacing: 0.5px;
            margin-top: 5px;
        }
        
        .v3showcase-text {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            text-align: center;
            font-family: 'Roboto', sans-serif;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-top: 5px;
        }
        
        @media (max-width: 992px) {
            .v3showcase {
                width: calc(50% - 15px);
            }
        }
        
        @media (max-width: 768px) {
            .v3showcase {
                width: 100%;
                max-width: 400px;
            }
        }
/* -------- END of v4showcase --------- */
        /* v4showcase Exclusive Styles */
        .v4showcase-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin: 20px auto;
          	align-items: stretch; 

        }
        
        .v4showcase {
            position: relative;
            width: calc(25% - 10px);
            min-width: 170px;
            max-width: 400px;
            display: flex;
  			flex-direction: column;
        }
        
        .v4showcase-image {
            position: relative;
            width: 100%;
            height: 240px;
            overflow: hidden;
            border-radius: 2px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .v4showcase-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .v4showcase:hover .v4showcase-image img {
            transform: scale(1.25);
        }
        

        .v4showcase-desc {
            position: relative;
           /* width: calc(33.333% - 20px); */
            margin: 0px auto 0;
            padding: 5px 5px 5px;
            background: white;
            border-radius: 0px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
            z-index: 2;
            transition: transform 0.3s ease;
			flex: 1;
        }


        
        .v4showcase-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 0px;
            text-align: center;
            line-height: 1.2;
            font-family: 'Roboto', sans-serif;
            letter-spacing: 0.5px;
            margin-top: 5px;
        }
        
        .v4showcase-text {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            text-align: center;
            font-family: 'Roboto', sans-serif;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-top: 5px;
            
        }
        
        @media (max-width: 992px) {
            .v4showcase {
                width: calc(50% - 15px);
            }
        }
        
        @media (max-width: 768px) {
            .v4showcase {
                width: 100%;
                max-width: 450px;
            }
        }
/* -------- END of v4showcase --------- */


/* -------- COLLAPSIBE CONTENT ----- */
.collapsible-section {
  margin: 15px 0;
  /*border: 1px solid #e0e0e0;*/
  border-radius: 5px;
  overflow: hidden;
}

.collapsible-header {
  padding: 12px 15px;
  background-color: #f5f5f5;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
}

.collapsible-header:hover {
  background-color: #e9e9e9;
}

.collapsible-icon {
  display: inline-block;
  margin-right: 10px;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s;
}

.collapsible-header h3 {
  margin: 0;
  font-size: 16px;
  color: #2c3e50;
}

.collapsible-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.collapsible-section.active .collapsible-content {
  padding: 15px;
  max-height: 1000px;
}

.collapsible-section.active .collapsible-icon {
  transform: rotate(45deg);
}
/* END OF collapsible Content ----- */
/* Page Zoom Slider */

/* Exclusive styles for banner slider - won't affect other elements */
.banner-slider-container {
    --slider-height: 600px; /* Customize height here */
    position: relative;
    width: 100%;
    height: var(--slider-height);
    overflow: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.banner-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease, transform 8s ease;
    transform: scale(1.2);
}

.banner-slider .slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.banner-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.banner-slider ul  {
    margin: 0;
    padding:0;
}
.banner-slider li  {
    margin: 0;
    padding:0;
}

.slide-caption {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(30px);
    width:90%;
    max-width: 800px;
    text-align: center;
    color: white;
    padding: 1.5rem;
    opacity: 0;
    /*
    backdrop-filter: blur(2px);
    background: rgba(100, 100, 100, 0.6);  Gray with transparency 
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);*/
    transition: all 2s ease;
    transition-delay: 0.5s;
}

.slide.active .slide-caption {
    transform: translate(-50%, -50%) translateY(0);
    opacity: 1;
}
.slide-caption h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-size: 3rem;
    margin: 0 auto;
    text-align:center;
    color: #fff;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.15);
}
.slide-caption p {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-weight:500;
    font-size: 1.5rem;
    text-align:center;
    margin: 0;
    color: #f5f5f5;
    text-shadow: 
        0 1px 1px rgba(0, 0, 0, 0.2),
        0 2px 2px rgba(0, 0, 0, 0.15),
        0 4px 4px rgba(0, 0, 0, 0.1),
        0 8px 8px rgba(0, 0, 0, 0.05);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    transform: translateY(-50%);
}

.slider-controls button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease;
}

.slider-controls button:hover {
    background: rgba(0, 0, 0, 0.8);
}
/*
.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
    
    text-align:right;
}*/
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0; /* Add this to ensure it starts from left edge */
    right: 0; /* Add this to ensure it stretches to right edge */
    width: 100vw; /* Use viewport width instead of 100% */
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
    margin-left: calc(-50vw + 50%); /* Counteract body margins */
    margin-right: calc(-50vw + 50%); /* Counteract body margins */
    margin: 0 0;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 0 0;
}

.slider-dot.active {
    background: white;
}

/* Animation for zoom effect */
@keyframes zoomIn {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

@keyframes zoomOut {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-slider-container {
        --slider-height: 400px;
    }
    
    .slide-caption {
        max-width: 90%;
        left: 50%;
        bottom: 10%;
        padding: 1rem;
    }
    
    .slide-caption h3 {
        font-size: 1.1rem;
        font-weight:700;
    }
       .slide-caption p {
        font-size: .75rem;
    }
    

    
}

/* END of Page Zoom Slider */

/* END of Page Zoom Slider 2 Molibe Image */
/* Core Slider Styles */
.responsive-hero-slider {
    --slider-height: 550px;
    --mobile-height: 400px;
    position: relative;
    width: 100%;
    height: var(--slider-height);
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease, transform 8s ease;
    transform: scale(1.1);
    margin:0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

/* Image Handling - Critical Fix */
.hero-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Captions */
.hero-caption {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(30px);
    width: 80%;
    max-width: 800px;
    text-align: center;
    color: white;
    padding: 1.5rem;
    opacity: 0;
    /*background: rgba(100, 100, 100, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);*/
    transition: all 1s ease;
    transition-delay: 0.5s;
}

.hero-slide.active .hero-caption {
    transform: translate(-50%, -50%) translateY(0);
    opacity: 1;
}

.hero-caption h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-size: 3rem;
    margin: 0 auto;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2), 
                 0 2px 2px rgba(0,0,0,0.15), 
                 0 4px 4px rgba(0,0,0,0.1), 
                 0 8px 8px rgba(0,0,0,0.05);
}
.hero-caption p {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-weight:500;
    font-size: 1.5rem;
    text-align:center;
    margin: 0;
    color: #f5f5f5;
    text-shadow: 
        0 1px 1px rgba(0, 0, 0, 0.2),
        0 2px 2px rgba(0, 0, 0, 0.15),
        0 4px 4px rgba(0, 0, 0, 0.1),
        0 8px 8px rgba(0, 0, 0, 0.05);
}

/* Controls */
.hero-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    transform: translateY(-50%);
}

.hero-controls button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease;
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100vw;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 0 0;
}

.hero-dot.active {
    background: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .responsive-hero-slider {
        height: var(--mobile-height);
    }
    
    .hero-caption {
        max-width: 90%;
        padding: 1rem;
    }
    
    .hero-caption h3 {
        font-size: 1.5rem;
    }
     .hero-caption p {
        font-size: 1rem;
    }
    

}
