

.logo-image {
	height: 50px;
	width: 500px; /* Fixed size for desktop view */
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
	.logo-image {
		height: auto; /* Maintain aspect ratio */
		width: 100%; /* Fit the parent container */
		max-width: 300px; /* Optional: Set a maximum width for better control */
	}
}


.logo-image-content {
	height: 13px;
	width: 150px; /* Fixed size for desktop view */
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
	.logo-image-content  {
		height: auto; /* Maintain aspect ratio */
		width: 100%; /* Fit the parent container */
		max-width: 300px; /* Optional: Set a maximum width for better control */
	}
}

#features-2.custom-section {
	background-image: url('../background/Pattern.png'); /* Replace with the actual path to your image */
	background-size: cover; /* Ensures the image covers the entire section */
	background-position: center; /* Centers the image */
	background-repeat: no-repeat; /* Prevents the image from repeating */
	padding: 50px 20px; /* Adds padding for content spacing */
	color: #ffffff !important; /* Ensures all text in this section is white */ /* Sets text color for better contrast */
	text-align: center; /* Centers text (optional) */
}

/* Enforce specific text colors for headers and paragraphs */
#features-2.custom-section h2, 
#features-2.custom-section h5, 
#features-2.custom-section p {
	color: #ffffff !important; /* Set text color to white */
}

@media (max-width: 768px) {
	#features-2.custom-section {
		background-size: contain; /* Ensures the entire image is visible */
		padding: 30px 15px; /* Adjusts spacing for smaller screens */
	}
}

#features-2.custom-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
	z-index: 1;
}

#features-2.custom-section > * {
	position: relative; /* Ensure content is above the overlay */
	z-index: 2;
}

#about-1 {
	position: relative;
	background-image: url('../background/slider-image.jpg'); /* Replace with your image path */
	background-size: cover; /* Ensures the image covers the entire area */
	background-position: center; /* Centers the image */
	background-repeat: no-repeat; /* Prevents the image from repeating */
	height: 100vh; /* Sets height to 100% of the viewport height */
	width: 100%; /* Ensures the width spans the viewport */
	color: #ffffff !important; /* Makes text color white */
	display: flex; /* Allows for centering content */
	align-items: center; /* Vertically centers content */
	justify-content: center; /* Horizontally centers content */
}

/* Overlay for better contrast */
#about-1::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
	z-index: 1; /* Ensures the overlay is below the content */
}

/* Content container styling */
#about-1 .container {
	position: relative;
	z-index: 2; /* Ensures content is above any overlay */
	text-align: center; /* Centers text (optional) */
	max-width: 1200px; /* Limits the width of the content */
}

/* Title styling */
#about-1 .about-1-title h2 {
	margin-bottom: 15px;
	color: #ffffff !important; /* Ensures header text is white */
	font-size: 2.5rem; /* Adjust size for emphasis */
}

/* Paragraph styling */
#about-1 .about-1-title p {
	margin-top: 10px;
	color: #ffffff !important; /* Ensures paragraph text is white */
	font-size: 1.2rem; /* Optional: Adjust text size */
	line-height: 1.6; /* Improves readability */
}

@media (max-width: 768px) {

	#about-1 .about-1-title h2 {
		font-size: 1.8rem; /* Smaller font for mobile */
	}

	#about-1 .about-1-title p {
		font-size: 1rem; /* Adjust paragraph font size */
	}

	#about-1 {
		height: auto; /* Allows the height to adjust naturally on smaller screens */
		padding: 20px;
	}

	.logo-white {
		max-width: 200px; /* Adjust logo size for mobile */
	}
}

/* Default Header Styling */
#header {
	background-color: transparent; /* Default background for all pages */
	color: #ffffff; /* Default white text */
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	transition: background-color 0.3s ease, color 0.3s ease;
}

/* Default Links Styling */
#header a {
	color: inherit; /* Inherit color from header */
	transition: color 0.3s ease;
}

/* Home Page Styling */
.header-homepage {
	/* background-color: transparent;  */
	/* Transparent header for the homepage */
}

/* Homepage Links */
.header-homepage a {
	color: #FF6908; /* Orange links for homepage */
}

.header-homepage a:hover {
	color: #ffcc00; /* Optional hover effect for links */
}

/* Scrolled State for Home Page */
.header-homepage.scrolled {
	background-color: #000000; /* Black background on scroll */
	color: #FF6908; /* Orange text on black background */
}

.header-homepage.scrolled a {
	color: #FF6908; /* Orange links on black background */
}

.header-homepage.scrolled a:hover {
	color: #ffcc00; /* Optional hover effect */
}

/* Styling for Other Pages */
#header:not(.header-homepage) {
	background-color: #ffffff; /* White background for other pages */
	color: #333333; /* Black text */
}

#header:not(.header-homepage) a {
	color: #333333; /* Black links for other pages */
}

#header:not(.header-homepage) a:hover {
	color: #000000; /* Optional hover effect for other pages */
}

/* Logo Display Behavior */
.logo-white {
	display: none; /* Hide white logo by default */
}

/* Homepage Logo Behavior */
.header-homepage .logo-white {
	display: block; /* Show white logo on homepage */
}

.header-homepage .logo-black {
	display: none; /* Hide black logo on homepage */
}

/* Other Pages Logo Behavior */
#header:not(.header-homepage) .logo-white {
	display: none; /* Hide white logo on other pages */
}

#header:not(.header-homepage) .logo-black {
	display: block; /* Show black logo on other pages */
}

/* Scrolled State Logo Behavior */
.header-homepage.scrolled .logo-white {
	display: none; /* Hide white logo on scroll */
}

.header-homepage.scrolled .logo-black {
	display: block; /* Show black logo on scroll */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	#header a {
		color: #FF6908 !important; /* ✅ Force orange */
	}

	.header-homepage.scrolled a {
		color: #FF6908; /* Ensure link visibility on scroll for mobile */
	}

	.header-homepage a:hover,
	.header-homepage.scrolled a:hover {
		color: #ffcc00; /* Hover effect remains consistent */
	}
}

.text-orange {
    color: #FF6908 !important;
}

.text-black {
	color: #333333 !important;
}

.text-white {
	color: #ffffff !important;
}

.text-black {
	color: #333333 !important;
}

/*
*MENU
*/
/* Default color for main menu links */
.wsmenu-list .h-link {
    color: #333 !important; /* Main menu default text color */
    text-decoration: none;
	transition: color 0.3s ease;
}

/* Hover and active color for main menu links */
.wsmenu-list .h-link:hover,
.wsmenu-list .h-link:focus,
.wsmenu-list .h-link:active {
    color: #FF6908 !important; /* Main menu hover and active color */
    text-decoration: none;
}

/* Default color for submenu links */
.wsmenu-list .sub-menu .h-link {
    color: #333 !important; /* Submenu default text color */
    text-decoration: none;
}

/* Hover and active color for submenu links */
.wsmenu-list .sub-menu .h-link:hover,
.wsmenu-list .sub-menu .h-link:focus,
.wsmenu-list .sub-menu .h-link:active {
    color: #FF6908 !important; /* Submenu hover and active color */
    text-decoration: none;
}

/* Submenu styling */
.wsmenu-list .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    border-radius: 4px;
    z-index: 1000;
}

/* Show the submenu on hover */
.wsmenu-list .dropdown:hover > .sub-menu {
    display: block;
}

/* Hover effect for submenu links */
.wsmenu-list .sub-menu .h-link:hover {
    color: #FF6908 !important;
}

/* Dropdown arrow rotation on hover */
.wsarrow {
    transition: transform 0.3s ease;
}

.dropdown:hover > .wsarrow {
    transform: rotate(180deg); /* Rotate the arrow */
}

/* Active state styling for the current menu item */
.wsmenu-list .current-menu-item > .h-link {
    color: #FF6908 !important;
}

/* Optional - Customize text selection color (when highlighted by user) */
::selection {
    background-color: #FF6908; /* Background color when text is selected */
    color: #ffffff; /* Text color when selected */
}


/*--END For Menu--*/

.gradient-bg {
	/* background: linear-gradient(rgba(255, 126, 95, 0.6), rgba(254, 180, 123, 0.6)), 
				url('<?php echo base_url()?>src/background/Gradient.png') no-repeat center center; */
	background-color: #000000;
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 100px;
}

.gradient-bg .txt-block,
.gradient-bg .txt-block p,
.gradient-bg .txt-block h2,
.gradient-bg .section-id {
    color: #ffffff; /* Dark gray for better contrast across gradient */
}

.gradient-bg .section-id {
    color: #4a4a4a; /* Slightly lighter dark gray for a softer contrast on the section ID */
}



.section-id.highlight {
	color: #ff7e5f; /* Adjust as needed for a bold look */
	font-weight: bold;
	font-size: 1.1em;
}

h2.mb-3, h3.mt-4 {
	font-weight: 600;
	color: #333;
}

.lead {
	font-size: 1.15em;
	color: #666;
}

.simple-list {
	padding-left: 1.5rem;
	margin-top: 0.5rem;
}

.simple-list .list-item {
	margin-bottom: 1rem;
	line-height: 1.5;
}

.simple-list .list-item strong {
	color: #ff7e5f; /* Accent color for key points */
}

.pt-80, .pb-80 {
	padding-top: 80px;
	padding-bottom: 80px;
}

.section-id.highlight {
	color: #ff7e5f; /* Adjust as needed */
	font-size: 0.9em;
	font-weight: bold;
}

.compact-title {
	font-size: 1.5em;
	font-weight: 600;
	color: #333;
	margin-bottom: 0.5rem;
}

.intro-text {
	font-size: 0.95em;
	color: #555;
	margin-bottom: 1rem;
}

.compact-subtitle {
	font-size: 1.2em;
	font-weight: 500;
	color: #444;
	margin-top: 1.5rem;
}

.compact-list {
	padding-left: 1.2rem;
	margin-top: 0.5rem;
}

.compact-list .list-item {
	font-size: 0.9em;
	color: #444;
	margin-bottom: 0.75rem;
	line-height: 1.4;
}

.compact-list .list-item strong {
	color: #ff7e5f; /* Accent color */
	font-weight: 600;
}

/* Service Card Styling */
.service-card {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust height if needed */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Hover Effect */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Ensure images appear vibrant */
.service-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the card properly */
    opacity: 1 !important; /* Ensures full visibility */
    filter: brightness(1.1) contrast(1.1) !important; /* Enhances clarity and sharpness */
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* Remove faded effect on hover */
.service-card:hover .service-logo img {
    transform: scale(1.05); /* Adds a slight zoom effect */
    filter: brightness(1.2) contrast(1.2); /* Enhances visibility when hovered */
}

/* Card Front (image) */
.card-front {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image fills the card */
    opacity: 0.8;
}

.card-front .overlay {
    display: none !important; /* Disables any existing overlay */
}

.card-front .service-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the card */
    opacity: 0.8;
}

.card-front .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay */
    z-index: 1;
}

/* Card body content positioning */
.card-body {
    position: absolute;
    top: 50%; /* Vertically center the content */
    left: 50%; /* Horizontally center the content */
    transform: translate(-50%, -50%); /* Adjust for exact centering */
    z-index: 2;
    text-align: center;
    padding: 10px;
}

.card-title {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 600;
}

/* Card Back (description) */
.card-back {
    width: 100%;
    height: 100%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
    text-align: justify;
    box-sizing: border-box;
    border-radius: 16px;
    z-index: 2;
}

.card-text.description {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

/* Text Container for better spacing */
.text-container {
    padding: 10px;
    text-align: center;
    max-width: 80%;  /* Limit the text width */
    margin: 0 auto;  /* Center text block */
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
    /* Stack cards vertically */
    .row-cols-1 .col {
        width: 100% !important;
        margin-bottom: 15px; /* Add spacing between stacked cards */
    }

    /* Adjust card size for mobile */
    .service-card {
        height: 250px; /* Slightly smaller height for mobile */
    }

    /* Make text size smaller on mobile */
    .card-title {
        font-size: 1.1rem;
    }

    .card-text.description {
        font-size: 0.9rem; /* Smaller text for mobile */
    }

    /* Ensure images maintain cover property */
    .card-front img {
        object-fit: cover; /* Ensure image maintains proper size */
    }

    /* Card Body text adjustment */
    .card-body {
        padding: 5px; /* Reduced padding */
    }
}


.custom-section {
	position: relative;
	background: url('../background/Pattern.png') no-repeat center center;
	background-size: cover;
	padding: 100px 0;
	color: #000; /* Default text color */
}

.custom-section:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.6); /* Light overlay for desktop */
	z-index: 0;
}

.custom-section .container {
	position: relative;
	z-index: 1;
}

/* Mobile-specific styles */
/* =================== HEADER & MENU (Fixed for Mobile) =================== */
@media (max-width: 768px) {
    /* Ensure main menu text remains orange */
    .wsmobileheader .wsmenu-list.nav-theme a,
    .wsmobileheader .h-link,
    .wsmobileheader .sub-menu .h-link {
        color: #FF6908 !important;
    }

    /* Force submenu items to be orange */
    .wsmobileheader .sub-menu .h-link:hover,
    .wsmobileheader .sub-menu .h-link:focus,
    .wsmobileheader .sub-menu .h-link:active {
        color: #FF6908 !important;
    }

    /* Mobile menu toggle (hamburger icon) should be orange */
    .wsmobileheader a#wsnavtoggle span {
        background-color: #FF6908 !important;
    }

    /* Ensure header text remains orange */
    #header {
        background-color: white !important;
        color: #FF6908 !important;
    }

    /* Ensure all header links are orange */
    #header a {
        color: #FF6908 !important;
    }

    /* Dropdown menu arrows should remain orange */
    .wsarrow {
        color: #FF6908 !important;
    }

    /* Force header background to white for better contrast */
    .wsmobileheader {
        background-color: white !important;
    }

    /* Adjust mobile logo */
    .wsmobileheader .smllogo img {
        max-width: 200px !important;
    }
}

/* =================== STRONGER RULES FOR FORCING ORANGE TEXT =================== */
@media (max-width: 768px) {
    /* Apply orange color to all menu items */
    .wsmenu-list a,
    .wsmenu-list .h-link,
    .wsmenu-list .sub-menu .h-link {
        color: #FF6908 !important;
    }

    /* Make sure dropdown items don't revert to black */
    .wsmenu-list .sub-menu a {
        color: #FF6908 !important;
    }

    /* Prevent color changes on hover */
    .wsmenu-list a:hover,
    .wsmenu-list .h-link:hover,
    .wsmenu-list .sub-menu a:hover {
        color: #FF6908 !important;
    }

	#header a, 
    .wsmenu-list .h-link, 
    .wsmenu-list .sub-menu .h-link, 
    .wsmobileheader .h-link {
        color: #FF6908 !important;
    }

	 /* Ensure hovered and active states remain orange */
	 #header a:hover, 
	 .wsmenu-list .h-link:hover, 
	 .wsmenu-list .sub-menu .h-link:hover {
		 color: #FF6908 !important;
	 }
 
	 /* Mobile menu text forced to orange */
	 .wsmobileheader .wsmenu-list.nav-theme a, 
	 .wsmobileheader .wsmenu-list .sub-menu .h-link {
		 color: #FF6908 !important;
	 }
 
	 /* Ensure mobile header stays visible with proper contrast */
	 .wsmobileheader {
		 background-color: white !important;
	 }
 
	 /* Mobile menu toggle (hamburger icon) should also be orange */
	 .wsmobileheader a#wsnavtoggle span {
		 background-color: #FF6908 !important;
	 }
 
	 /* Make dropdown menu arrows orange */
	 .wsarrow {
		 color: #FF6908 !important;
	 }
}


