@charset "utf-8";
/*    Website designed and created by Adam Nicholls    */
@import url(https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;700&display=swap);

/* 
James Electrical Services Ltd
07500844696
#mobile
info@jameselectricalservices.co.uk
-----------------
15 Coniston Road
Twickenham
London
TW2 7HH
------------------
electrical
electricians
Domestic Electrics
Commercial Electrics
Planned and Reactive Electrical Maintenance
Emergency Electrician
------------------
13/02/2024
jameselectricalservices.uk
Whatsapp 44 first - https://wa.me/447500844696
------------------
<img src="media/images/logo.png" alt="">
 */

:root{
	--dark: #151515;
	--medium: #4d3d3d;
	--light: #D7FF0E;
	--accent: #FFFF87;

	--bigrad: 12px;
	--mediumrad: 8px;
	--smallrad: 4px;

	--bigpad: 60px;
	--mediumpad: 40px;
	--smallpad: 15px;

	--mainfont: 'Quicksand', sans-serif;
	--titlefont: 'Quicksand', sans-serif;	

	--logoheight: 60px;
	--logoheightmob: 50px;
}
@media screen and (max-width: 40em) {
	:root{
		--bigpad: 60px;
		--mediumpad: 30px;
		--smallpad: 15px;
	}
}
.logo img{
	max-height: var(--logoheight);
	display: inline-block;
	-webkit-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	transition: ease 0.3s;
	max-width: 300px;
	filter: brightness(0) invert(1); /* Re-add this to make logo white */
}
@media screen and (max-width: 64em) {
	.logo{
		text-align: center;
		width: 100%;
		padding-left: 60px;
		padding-right: 60px;
	}
	.logo img{
		max-height: var(--logoheightmob);
		text-align: center;
		max-width: 100%;
	}
}
.logo p{
	font-size: 1.5rem;
	color: var(--dark);
	margin: 0;
	font-weight: 700;
	letter-spacing: -1px;
}
.top-section{
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	z-index: 999 !important;
	padding: calc(var(--smallpad) * 0.7) 0 !important;
	background: rgba(21, 21, 21, 0.2) !important;
	backdrop-filter: blur(10px) !important;
	-webkit-backdrop-filter: blur(10px) !important;
	transition: all 0.3s ease !important;
}
.widerow{
    max-width: 100%; /* Use Foundation's default max-width or 100% if full-width needed */
    margin-left: auto;
    margin-right: auto;
}
header{
	width: 100%;
	margin: 0;
	border-radius: 0;
	padding-top: calc(var(--logoheight) + var(--smallpad) * 2);
}
main{
	position: relative;
	z-index: 1;
}

/******** Essentials ********/
body {
    margin: 0 !important;
    padding: 0 !important;
    background-color: var(--dark) !important;
    max-width: none; /* Allow body to size naturally */
    overflow-x: visible; /* Let content determine overflow */
}

/* Fix header spacing */
.home-header {
    width: 100% !important;
    margin: 0 !important;
    padding-top: calc(var(--logoheight) + var(--smallpad) * 2) !important;
    border-radius: 0 !important;
}

/* Fix mobile menu spacing */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(21, 21, 21, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: left 0.3s ease-in-out;
    padding: 80px 20px 20px;
}

.mobile-menu.active {
    left: 0;
}

/* Navigation styles */
.mobile-menu nav {
    margin-top: 20px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin: 15px 0;
}

.mobile-menu ul li a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    display: block;
    padding: 10px;
    transition: color 0.2s ease;
}

.mobile-menu ul li a:hover {
    color: var(--light);
}

/* Close button styles */
.nav-toggler {
    width: 30px;
    height: 20px;
    position: fixed;
    top: 25px;
    left: 20px;
    z-index: 1001;
    cursor: pointer;
    display: none;
}

.nav-toggler div {
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    transition: all 0.3s ease;
}

.nav-toggler .toggler-one { top: 0; }
.nav-toggler .toggler-two { top: 50%; transform: translateY(-50%); }
.nav-toggler .toggler-three { bottom: 0; }

/* Burger menu active state */
.mobile-menu-active .nav-toggler .toggler-one {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-active .nav-toggler .toggler-two {
    opacity: 0;
}

.mobile-menu-active .nav-toggler .toggler-three {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Logo positioning for mobile */
@media screen and (max-width: 64em) {
    .nav-toggler {
        display: block;
    }
    
    .logo {
        text-align: center;
        width: 100%;
        padding: 10px 60px;
    }
    
    .logo img {
        max-height: var(--logoheightmob);
        max-width: 200px;
        margin: 0 auto;
    }
    
    /* Mobile menu items */
    .mobile-menu nav {
        margin-top: 40px;
    }
    
    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu ul li {
        margin: 15px 0;
        text-align: center;
    }
    
    .mobile-menu ul li a {
        color: white;
        font-size: 1.4rem;
        text-decoration: none;
        display: block;
        padding: 10px;
        transition: color 0.2s ease;
    }
    
    .mobile-menu ul li a:hover {
        color: var(--light);
    }
    
    /* Hide desktop navigation */
    .navigation {
        display: none;
    }
}

/* Adjust content padding when menu is active */
body.mobile-menu-active {
    overflow: hidden;
}

/* Ensure proper scroll padding for smooth scrolling */
html {
    scroll-padding-top: 100px; /* Match with headerOffset in JavaScript */
    overflow-x: hidden; /* Apply basic overflow control here */
}

/* Ensure content sections have proper padding */
section .row, main .row {
    /* Let the base .row rule handle max-width and margins */
}

/* Fix footer spacing */
footer {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

a, a:active, a:visited, a:link{
	text-decoration: none;
	color: #777;
}
p{
	font-size: 1rem;
	line-height: 1.75rem;
	font-weight: 500;
	opacity: 0.92;
	font-family: var(--mainfont);
}
ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
h1,h2,h3,h4,h5,h6{
	margin: 0;
	margin-bottom: 10px;
	font-weight: 400;
	font-family: var(--titlefont);
	display: block;
	width: 100%;
}
/******** BN Kit ********/
.social a{
	display: inline-block;
	width: 2rem;
	height: 2rem;
	line-height: 2rem;
	text-align: center;
	margin-right: 8px;
	border-radius: var(--mediumrad);
	-webkit-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	transition: ease 0.3s;
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.social a:hover{background-color: var(--medium)!important;}
.social span{color: white;margin: 0;}
.bigbg{
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
	min-height: 400px;
	max-height: 750px;
	border-radius: var(--bigrad);
	/* display: flex !important; */ /* Removed flex properties */
	/* align-items: center !important; */
	/* justify-content: center !important; */
	padding: 2rem 0 !important; /* Keep vertical padding */
    width: 100%; /* Ensure it takes full width of parent column */
    box-sizing: border-box; /* Include padding in width calculation */
    overflow: hidden; /* Prevent internal content from overflowing */
}
.bigbg img {
	/* width: 100% !important; */ /* Replaced with max-width */
    max-width: 100%; /* Ensure image doesn't exceed container width */
	height: auto !important;
	object-fit: cover !important;
	border-radius: var(--bigrad) !important;
    display: block; /* Improve layout behavior */
}
@media screen and (max-width: 768px) {
	.bigbg {
		min-height: 300px;
		padding: 1.5rem 0 !important;
	}
}
/******** Typegraphy ********/
.sub-title, blockquote span{
	font-size: 0.825rem;
	line-height: 1.1;
	font-weight: 300;
	color: var(--accent);
	display: block;
	position: relative;
	margin: 0;
	margin-bottom: 1rem;
	padding-left: 20px;
}
.sub-title::before, blockquote span::before{
	position: absolute;
	width: 16px;
	height: 1px;
	bottom: 4px;
	left: 0;
	content: " ";
	background-color: var(--accent);
}
main h1{
	font-size: 2rem;
	line-height: 1.2;
	font-weight: 700;
	color: var(--medium);	
}
main h2{
	font-size: 2rem;
	line-height: 1.2;
	font-weight: 700;
	color: var(--medium);	
}
main h3{
	font-size: 1.75rem;
	line-height: 1.2;
	font-weight: 700;
	color: var(--medium);	
}
main h4{
	font-size: 1.5rem;
	line-height: 1.2;
	font-weight: 500;
	color: var(--medium);	
}
main h5{
	font-size: 1.25rem;
	line-height: 1.2;
	font-weight: 700;
	color: var(--light);	
}
main h6{
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 700;
	color: var(--light);	
}
main strong{font-weight: 700;;}
/******** Colour codes ********/
.light-text :is(p, h1, h2){color: white;}
.light-text :is(h3, h4, h5){color: var(--accent);}
.extradarkbg :is(p, h1, h2){color: var(--light);}
.extradarkbg :is(h3, h4, h5){color: var(--accent);}
.darkbg :is(p, h1, h2, li){color: white;}
.darkbg :is(h3, h4, h5){color: var(--accent);}
.medbg :is(p, h1, h2, li){color: white;}
.medbg :is(h3, h4, h5){color: var(--accent);}
.lightbg :is(p, h1, h2){color: var(--dark);}
.lightbg :is(h3, h4, h5){color: var(--medium);}
.caption :is(p, h1, h2){color: white;}
.caption :is(h3, h4, h5){color: var(--accent);}
/******** Buttons ********/
/* Button container for centering */
.button-container {
    display: flex !important;
    justify-content: center !important;
    margin: 2rem 0 !important;
}

/* Button styles */
.button {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.8rem 1.5rem !important;
    background: linear-gradient(to right, #D7FF0E, #FFFF87) !important;
    color: black !important;
    text-decoration: none !important;
    border-radius: var(--smallrad) !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

/* Icon styles */
.button [uk-icon] {
    position: relative !important;
    display: inline-block !important;
    width: 20px !important;
    height: 20px !important;
    margin-left: 8px !important;
    color: black !important;
}

/* Hover effect */
.button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3) !important;
}

.button2{
	background-image:
	 -webkit-linear-gradient(left, var(--dark), var(--medium));
	background-image:
	 -o-linear-gradient(left, var(--dark), var(--medium));
	background-image:
	 linear-gradient(to right, var(--dark), var(--medium));
}
.button2::after{
	background-color: var(--accent);
}
.button + .button{margin-left: 1rem;}
.cta{
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1;
	margin: 0;
	display: inline-block;
	color: var(--medium)!important;
	text-decoration: underline!important;
}
.cta:hover{color: var(--accent)!important;}
.caption-blur .cta{
	color: white!important;
	display: block;
	margin-top: 1rem;
}
.darkbg .cta{color: white!important;}
@media screen and (max-width: 40em) {
	.button{
		display: block;
		width: 100%;
		text-align: center;
	}
	.button + .button{
		margin: 0;
		margin-top: 0.5rem;
	}
}
/******** List ********/
main ul{
	margin-top: var(--smallpad);
	margin-bottom: var(--smallpad);	
}
main ul li{
	position: relative;
	font-size: 1rem;
	line-height: 2rem;
	margin-bottom: 15px;
	text-align: left;
	padding-left: 24px;
	display: inline-block;
	width: 100%;
	text-transform: capitalize;
}
main ul li::before{
	position: absolute;
	left: 0;
	top: 16px;
	width: 16px;
	height: 1px;
	line-height: 30px;
	text-align: center;
	background-position: center;
	background-repeat: no-repeat;
	content: " ";
	background-color: var(--accent);
}
main ol{
	counter-reset: my-awesome-counter;
	padding: 0;
	margin-top: var(--smallpad);
	margin-bottom: var(--mediumpad);	
}
main ol li{
	position: relative;
	font-size: 1rem;
	line-height: 2rem;
	margin-bottom: 10px;
	text-align: left;
	padding: var(--smallpad);
	display: inline-block;
	width: 100%;
	font-weight: 700;
	-webkit-transition: ease 0.6s;
	-o-transition: ease 0.6s;
	transition: ease 0.6s;
  counter-increment: my-awesome-counter;
}
main ol li a{
	-webkit-transition: ease 0.6s;
	-o-transition: ease 0.6s;
	transition: ease 0.6s;
}
ol li::before {
  content: counter(my-awesome-counter) ". ";
  color: var(--accent);
  font-weight: bold;
}
/******** Section sizes ********/
section{
	padding-top: 30px !important; /* Reduced from 60px */
	padding-bottom: 30px !important; /* Reduced from 60px */
	position: relative;
}
.next-section{
	padding-bottom: 30px !important; /* Reduced from 60px */
	padding-top: 0;
	position: relative;
}
.next-inner-section{
	padding-bottom: 0;
	padding-top: 30px !important; /* Reduced from 60px */
	position: relative;
}
.large-section{
	padding-top: 45px !important; /* Reduced from 90px */
	padding-bottom: 45px !important; /* Reduced from 90px */
	position: relative;
}
.medium-section{
	padding-top: 15px !important; /* Reduced from 30px */
	padding-bottom: 15px !important; /* Reduced from 30px */
	position: relative;
}
.small-section{
	padding-top: 7.5px !important; /* Reduced from 15px */
	padding-bottom: 7.5px !important; /* Reduced from 15px */
	position: relative;
}
@media screen and (max-width: 64em) {
	section{padding-top: 12.5px !important;padding-bottom: 12.5px !important;}
	.medium-section{padding-top: 6.25px !important;padding-bottom: 6.25px !important;}
	.small-section{padding-top: 3.75px !important;padding-bottom: 3.75px !important;}
	.next-section{padding-bottom: 12.5px !important;}
	.large-section{padding-bottom: 25px !important;padding-top: 25px !important;}
}
.card{
	border-radius: var(--mediumrad);
	padding: var(--mediumpad);
}
.card .bigbg{min-height: 200px; margin-bottom: 30px;}
/******** Text sections ********/
.left-text{padding: var(--bigpad);padding-left: 0;}
.right-text{padding: var(--bigpad) 0 !important; /* Remove left padding, keep top/bottom padding */}
.text{padding: var(--bigpad);}
main .content:nth-child(even) .left-text{
	order: +1;
	padding-left: var(--bigpad);
	padding-right: 0;
}
@media screen and (max-width: 64em) {
	main .content:nth-child(even) .left-text{order: auto;padding: var(--bigpad) 1.15rem;}
	.left-text{padding: var(--bigpad) 1.5rem;}
	.right-text{padding: var(--bigpad) 0 !important; /* Keep consistent on mobile */}
	.text{padding: var(--bigpad) 1.15rem;}
}
/******** Navigations ********/
nav ul li{display: inline-block;position: relative;}
nav ul li a{
	display: inline-block;
	line-height: 2.5rem;
	padding: 0 8px;
	font-size: 0.9rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9) !important;
	position: relative;
	-webkit-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	transition: ease 0.3s;
	text-transform: capitalize;
}
nav ul li::after {
    position: absolute;
    bottom: 0;
    width: 0;
    left: 50%;
    z-index: 10;
    height: 2px;
    background-color: #FFFF87 !important;
    content: " ";
    transition: ease 0.3s;
    box-shadow: 0 0 8px rgba(255, 255, 135, 0.8) !important;
}
nav ul li:hover::after {
    width: 60%;
    left: 20%;
    box-shadow: 0 0 12px rgba(255, 255, 135, 1) !important;
}
nav ul li > ul{
	position: absolute;
	top: calc(100% - 2px);
	text-align: left;
	clear: both;
	white-space: nowrap;
	padding: var(--smallpad) var(--mediumpad);
	border-radius: var(--smallrad);	
	background-color: var(--dark);
	opacity: 0;
	z-index: 10;
	width: auto;
	transform: scale(0.5);
	pointer-events: none;
	transform-origin: top left;
	-webkit-transition: ease 0.1s;
	-o-transition: ease 0.1s;
	transition: ease 0.1s;
	border-top: 3px solid var(--accent);
	box-shadow: 0 0 80px rgba(0,0,0,0.2);
}
nav ul li > ul li{display: block;}
nav ul li > ul li a{
	padding: 0;
	color: white!important;
	line-height: 35px;
}
nav ul li > ul li a:hover{color: var(--accent)!important;}
nav ul li:hover > ul{
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
}
nav ul li:hover > ul{
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
}
nav ul li > a{margin-right: 10px;}
nav ul li > a:only-child{margin-right: 0px;}
nav ul li > a::after {
	background-image: url(../images/shapes/navdown.svg);
	position: absolute;
	right: -10px;
	top: 5px;
	width: 20px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
	content: " ";
}
nav ul li > ul li::after{display: none!important;}
nav ul li > a:only-child::after { display: none;}
.toggler{display: none;}
.mob-call{display: none;}
.call-text{display: none;}
.nav-toggler p{display: none;}
.mobile-menu nav ul {
    margin: 20px 0;
}
.mobile-menu nav ul li {
		display: block;
    margin: 10px 0;
}
.mobile-menu nav ul li a {
    color: var(--accent) !important;
    font-size: 1.1rem;
		display: block;
    padding: 10px 0;
}
.mobile-menu .submenu {
    display: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-left: 15px;
    border-left: 2px solid #D7FF0E;
    padding-left: 10px;
}

.mobile-menu .has-submenu.active .submenu {
    display: block;
    max-height: 500px;
    opacity: 1;
    overflow: visible;
}

.mobile-menu .submenu li a {
    padding: 8px 15px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .has-submenu > a::after {
    content: '▼';
    display: inline-block;
    font-size: 0.6em;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.mobile-menu .has-submenu.active > a::after {
    transform: rotate(180deg);
}
@media (max-width: 768px) {
	.nav-toggler {
		display: block !important;
	}
	
	.navigation {
		display: none !important;
	}
	.logo {
        text-align: center;
        padding: 10px 60px;
    }
    
    .logo img {
        max-height: 60px;
        margin: 0 auto;
    }
    
    /* Remove arrows from mobile menu items */
    .mobile-menu nav ul li > a::after {
        display: block !important;
        background-image: url(../images/shapes/chevron-right.svg);
        position: absolute;
        right: 1rem;
        top: 0px;
        width: 25px;
        height: 3rem;
        line-height: 3;
		text-align: center;
        background-size: 50%;
        background-position: center;
		background-repeat: no-repeat;
        content: " ";
        transform: rotate(0deg);
    }
    
    /* Style submenu toggle */
    .submenu-toggle::after {
        content: '+';
        float: right;
        font-size: 1.2rem;
    }
    
    .submenu-toggle.active::after {
        content: '-';
    }
}
.toggler-one,
.toggler-two,
.toggler-three {
	width: 25px;
		height: 3px;
	background-color: white !important;
	margin: 5px 0;
	transition: 0.3s ease;
}
.nav-toggler.active .toggler-one {
	transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggler.active .toggler-two {
	opacity: 0;
}
.nav-toggler.active .toggler-three {
	transform: rotate(-45deg) translate(7px, -7px);
	}
	.mobile-menu .columns{padding: 0;}
	.nav-title{
		font-size: 1.25rem;
		font-weight: 700;
		margin-top: 1rem;
	}
	.mobile-nav-contact{
	margin-top: 20px;
	}
.mobile-nav-contact a {
		display: block;
    padding: 15px 20px;
    margin: 10px 0;
    background: var(--accent);
    color: white !important;
    text-align: center;
    border-radius: var(--smallrad);
    font-weight: 500;
}
.mobile-nav-contact a:first-child {
    background: var(--dark);
	}
	.mobile-menu .social{margin-top: 1rem;}
	.mobile-nav-contact a::after {
		background-image: url(../images/shapes/navdown.svg);
		position: absolute;
		right: 1rem;
		top: 0px;
		width: 25px;
		height: 3rem;
		line-height: 3;
		text-align: center;
		background-size: 50%;
		background-position: center;
		background-repeat: no-repeat;
		content: " ";
	}
	.mobile-nav-contact > a[href*="form"]:after{background-image: url(../images/shapes/bookmark.svg);}
	nav ul li > a::after {
		background-image: url(../images/shapes/chevron-right.svg);
		position: absolute;
		right: 1rem;
		top: 0px;
		width: 25px;
		height: 3rem;
		line-height: 3;
		text-align: center;
		background-size: 50%;
		background-position: center;
		background-repeat: no-repeat;
		content: " ";
		transform:rotate(90deg); 
	}
	nav ul li > a:only-child::after { 
		display: block;
		transform:rotate(0deg); 
	}
	nav ul li > a[href*="index"]:after{background-image: url(../images/shapes/home.svg);}
	nav ul li > a[href*="gallery"]:after{background-image: url(../images/shapes/gallery.svg);}
	nav ul li > a[href*="project"]:after{background-image: url(../images/shapes/gallery.svg);}
	nav ul li > a[href*="review"]:after{background-image: url(../images/shapes/review.svg);}
	nav ul li > a[href*="testimonial"]:after{background-image: url(../images/shapes/review.svg);}
	nav ul li > a[href*="contact"]:after{background-image: url(../images/shapes/contact.svg);}
	nav ul li > a[href*="faq"]:after{background-image: url(../images/shapes/faq.svg);}
	nav ul li > a[href*="booking"]:after{background-image: url(../images/shapes/calendar.svg);}
@media screen and (max-width: 40em) {
	.mob-call{display: block;}
	.call-text{
		display: block;
		position: fixed;
		padding: var(--smallpad);
		bottom: 0;
		left: 0;
		z-index: 200;
		width: 100%;
		background-color: rgba(30,30,30,0.8);
		backdrop-filter: blur(2px);
	}
	.call-text .row{padding: 0 0.6rem;}
	.call-text .columns{padding: 0 0.3rem;}
	.call-text span{color: white;}
	.mob-call{cursor: pointer;}
}
.top-fix{position: fixed;}
/******** GALLERY ********/
.gallery{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
}
.reviews{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
}
.thumbs{
	overflow: hidden;
	position: relative;
	z-index: 2;
	height: 400px;
	background-size: cover;
	background-position: center center;
	border-radius: var(--smallrad);
	transform:scale(1);
	-webkit-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	transition: ease 0.3s;
}
.thumbs:hover{
	transform:scale(1.02);
}
.thumbs img{
	width: 100%;
	margin: 0!important;
	border-radius: 3px;
}
.thumbs a{
	margin: 0!important;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
@media screen and (max-width: 64em) {
	.thumbs{height: 240px;}
}
@media screen and (max-width: 40em) {
	.thumbs{height: 200px;}
	.gallery{
	    grid-template-columns: repeat(2, 1fr);
	    grid-gap: 0.5rem;
	}
	.reviews{
	    grid-template-columns: repeat(1, 1fr);
	    grid-gap: 1rem;
	}
}
/******** BLOCKQUOTE ********/
blockquote{
	display: inline-block;
	width: 100%;
	margin: 0;
	font-style: normal;
	position: relative;
	z-index: 10;
	/* color: white;
	border-radius: var(--mediumrad);
	background-color: var(--light1a); */
	padding: var(--bigpad);
	padding-top: calc(var(--bigpad) + 100px);
	min-height: 360px;
	overflow: hidden;
}
blockquote span{margin-top: 1rem;}
blockquote::after{
	position: absolute;
	top: var(--bigpad);
	left: var(--bigpad);
	z-index: 2;
	height: 80px;
	width: 80px;
	/* background-color: var(--accent); */
    /* border-radius: 50%; */
	/* background-image: url(../images/shapes/quote.svg); */
	background-position: center;
	background-size: 40%;
	background-repeat: no-repeat;
	content: " "; 
}
blockquote::before{
	width: 320px;
	height: 320px;
	position: absolute;
	content: " ";
	top: -200px;
	left: -140px;
    /* border-radius: 50%; */
    background-color: var(--accent);
	z-index: -1;
	opacity: 0.15;
}
blockquote p{
	opacity: 1;
}
.smallquote{font-size: 1.25rem;line-height: 1.5;}
.midquote{font-size: 1.25rem;line-height: 1.5;}
.bigquote{font-size: 1.5rem;line-height: 1.5;}
@media screen and (max-width: 40em) {
	blockquote{min-height: unset;}
	blockquote{
		padding: var(--mediumpad);
		padding-top: calc(var(--mediumpad) + 80px);
		min-height:unset;
		margin-bottom: 1rem;
	}
	blockquote::after{
		top: var(--mediumpad);
		left: var(--mediumpad);
		z-index: 2;
		height: 60px;
		width: 60px;
	}
	blockquote::before{
		top: -250px;
	}
}

/******* Footer *******/
footer{
	width: calc(100% - 2rem);
	margin-left: 1rem;
	margin-bottom: 1rem;
	border-radius: var(--bigrad);
	overflow: hidden;
	background-color: var(--dark);
	/*background-image:
	 -webkit-linear-gradient(top left, var(--light), var(--accent));
	background-image:
	 -o-linear-gradient(top left, var(--light), var(--accent));
	background-image:
	 linear-gradient(to right bottom, var(--light), var(--accent));*/
	padding-top: 100px;
	position: relative;
	color: white;
	overflow: hidden;
	z-index: 2;
	margin-top: 1rem;
}
footer .row{position: relative;z-index: 5;}
footer h6{
	font-size: 1rem;
	line-height: 150%;
	font-weight: 300;
	color: rgba(255,255,255,0.3);
	text-transform: capitalize;
}
footer a{color: white!important;}
footer a, footer ul li a{
	display: block;
	font-weight: 500;
	line-height: 2rem;
	font-size: 0.875rem;
	text-transform: capitalize;
}
footer a:hover, footer ul li a:hover{
	color: var(--dark)!important;
}
.bigphone{
	font-size: 1.5rem;
	margin-bottom: 1rem;
	margin-top: 1rem;
	color: var(--accent)!important;
}
footer .bigphone{
	margin-bottom: 1rem;
	margin-top: 1rem;
	font-size: 1.5rem;
	color: var(--accent)!important;
}
.by{
	margin-top: 60px;
	border-top: 1px solid rgba(255,255,255,0.05);
	padding-top: 30px;
	padding-bottom: 30px;
}
footer p{margin: 0;}
.by p{
	color: rgba(255,255,255,0.6);
	text-transform: capitalize;
	font-weight: 300;
	font-size: 0.825rem;
}
footer .sub-menu{display: none;}
.footerlinks{display: block;}
.footerlinks a{
	opacity: 0.9;
	font-weight: 300;
	margin: 0;
	margin-top: 10px;
	margin-right: 10px;
	display: inline-block;
	color: rgba(255,255,255,0.3)!important;
}
.footerlinks a::after{
	content: "/";
	margin-left: 10px;
}
.footerlinks a:last-of-type::after{display: none;}
.footerlinks a:hover{color: var(--light);}
footer .social{margin-top: 1rem;}
footer ul li > ul{display: none!important;}
footer a:not([href]){display: none;}
footer .social{margin-top: 2rem;}
footer ul li > ul{display: none!important;}
footer a:not([href]){display: none;}
footer img{
	max-height: 50px;
	margin-bottom: 2rem;
	filter: brightness(0) invert(1); /* Re-add this to make logo white */
}
.main-foot p{font-size: 2rem;font-weight: 700;}
footer h5{
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 2rem;
	max-width: 450px;
	color: white;
}
footer .button:hover{
	color: white!important;
}
/******* Extras *******/
a.cred img{
	margin-bottom: 0;
	width: 64px;
	height: 64px;
	position: relative;
	top: 0;
}
a.cred p{
	color: white;
	font-size: 1.1em;
	margin: 0;
	font-weight: bold;
	line-height: 120%;
	padding: 0 10px;
	text-shadow: 0 3px 5px rgba(0,0,0,0.4);
}
a.cred{
	-webkit-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	transition: ease 0.3s;
	overflow: hidden;
	padding: 6px 12px;
	border-radius: var(--radius);
	align-items: center;
	display: flex;
	background-size: 10000px;
	height: 100%;
}
.members .column{margin-top: 1rem;}
a.cred .dark-text{
	color: black!important;
	text-shadow: unset!important;
}

.map{padding: 0;}
.map iframe{
	width: 100%;
	min-height: 400px;
}
.contact-boxes span{
	margin-bottom: 1rem;
	color: var(--accent);
}
.contact-boxes a{
	color: var(--accent);
	display: block;
	word-break: break-word;
}
address p{
	margin: 0;
	color: var(--accent);
}
address p:last-of-type{text-transform: uppercase;}
.today{color: var(--accent);}
/******* Site start *******/
.top-right .cta{
	margin-left: 2rem;
	float: right;
	line-height: 3rem;
}
.top-right .social{display: inline-block;}
.top-right .cta{color: white!important;}
.top-right .cta span{margin-right: 0.5rem;}

/******* Next section *******/
header::before {
    display: none; /* Remove the overlay */
}

/* Clean up home-banner styles - remove background */
.home-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 700px;
    z-index: 2;
    overflow: hidden;
    margin-top: 0 !important;
}

/* Clean up hero-animation styles - remove flex */
.hero-animation {
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 2;
}

/* Animation container adjustments */
.animation-container {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-image: url('../images/image00008.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Blur overlay */
.blur-overlay {
    position: absolute;
    top: 44%; /* Start higher up to cover the text area */
    left: 0;
    width: 100%;
    height: 65%; /* Cover more of the bottom portion */
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

/* Hero text styles */
.hero-text {
    position: absolute;
    top: 30%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    text-align: center;
}

.hero-text h1 {
    color: #fff;
    text-shadow: 
        /* Thinner black outline */
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        /* Subtle additional outlines */
        -1px 0 0 #000,
        1px 0 0 #000,
        0 -1px 0 #000,
        0 1px 0 #000,
        /* Light shadow for depth */
        0 4px 8px rgba(0,0,0,0.5);
    font-size: 3.5rem;
    margin: 0;
    white-space: nowrap;
    line-height: 1.2;
    font-weight: 700;
}

/* Update highlight styles to match */
.hero-text h1 .highlight {
    color: #ffff87;
    
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .hero-text {
        top: 35%;
        left: 50%;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        padding: 0 1rem;
        white-space: normal;
    }
}

.home-banner::before, 
.home-banner::after,
.other-banner::before {
    display: none; /* Remove all overlay effects */
}

.home-banner::after {
    content: "";
    display: none; /* Ensure this doesn't interfere */
}

.home-banner .banner{
	position: relative;
	z-index: 20;
	width: 100%;
	padding: 0;
	margin: 0;
	height: 90vh;
	min-height: 700px;
}
.other-banner .banner{
	position: relative;
	z-index: 20;
	width: 100%;
	padding: 0;
	margin: 0;
	height: auto;
	min-height: 600px;
}
@media screen and (max-width: 40em) {
	.home-banner .banner{
		height: 70vh;
		min-height: 560px;
		max-height: 680px;
	}	
	.other-banner .banner{
		height: 50vh;
		min-height: 360px;
	}
}
.wide-banner{
	max-width: 100%;
	position: relative;
	z-index: 2;
}
.other-banner{position: relative;}
.slide{
	height: 100%;
	min-height: 300px;
	overflow: hidden;
	background-position: center;
	color: white;
	position: absolute;
	width: 100%;
	overflow: hidden;
	pointer-events: none;
	margin: 0;
	z-index: 2;
}
.slide .bigbg{
	width: 100%;
	height: 100%;
	max-height: unset;
	position: absolute;
	top: 0;
	border-radius: 0;
	right: 0;
	transition: opacity 0.5s ease, transform 0.5s ease;
}
/******* Next section *******/
.banner-text{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	height: 100%;
}
.banner-text .row{
	position: relative;
	z-index: 40;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.inner-text{
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 50;
	padding: var(--bigpad) 1.15rem;
	padding-top: calc(var(--bigpad) + var(--logoheight));
}
.home-banner h1{
	font-size: 4rem;
	line-height: 1;
	text-transform: capitalize;
	color: white;
	letter-spacing: -2px;
}
.banner-text p{
	font-size: 1.25rem;
	color: white;
	font-weight: 400;
}
.inner-text hr, .slide-text hr, main hr{
	width: 50px;
	display: inline-block;
	-webkit-transition: 0.3s ease 0.1s;
	-o-transition: 0.3s ease 0.1s;
	transition: 0.3s ease 0.1s;
}
.banner-text h1{
	font-weight: 700;
	line-height: 1;
	color: white;
	letter-spacing: -1px;
	font-family: var(--titlefont);
	font-size: 3rem;
	text-transform: uppercase;
	letter-spacing: -1px;
}
.home-header .banner-text h1{font-size: 4rem;}
.banner-text h1::first-letter{text-transform: uppercase;}
@media screen and (max-width: 64em) {
	.home-header .banner-text h1{font-size: 3rem;}
	.banner-text h1{font-size: 2.5rem;}
	.top-right{display: none;}
	.home-header .top-right{display: block;}
}
@media screen and (max-width: 40em) {
	.home-header .banner-text h1{font-size: 2.5rem;}
	.home-banner h1{font-size: 2rem;}
	.home-banner p{font-size: 1rem;}
}
/******* Next section *******/
.home-service-slider, .home-service-slider .row{
	max-width: 100%;
	padding: 0;
	margin: 0;
	padding-top: 0;
	padding-bottom: 0;
	width: 100%;
	display: block;
}
.home-service-slider .row{
	padding-left: 1rem;
}
.service-slide {
    flex: 0 0 auto !important;
    width: 400px !important;
    min-height: 600px !important;
    margin: 0 !important;
    position: relative !important;
    border-radius: var(--mediumrad) !important;
    overflow: hidden !important;
    background-size: cover !important;
    background-position: center !important;
    background-color: transparent !important;
}

/* Service slide link */
.service-slide a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    text-decoration: none !important;
    background-color: transparent !important;
}

/* Static overlay - no hover changes */
.service-slide::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1)) !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

/* Text styles */
.slide-text {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    padding: 2rem !important;
    width: 100% !important;
    z-index: 3 !important;
    pointer-events: none !important;
}

/* Remove ALL transitions and hover effects */
.service-slide,
.service-slide *,
.service-slide::before,
.service-slide::after,
.slide-text,
.slide-text *,
.service-slide:hover,
.service-slide:hover *,
.service-slide:hover::before,
.service-slide:hover::after,
.slide-text:hover,
.slide-text:hover * {
    transition: none !important;
    transform: none !important;
    animation: none !important;
    background-color: transparent !important;
}

/* Clean up service slider */
.service-slider {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 2rem !important;
    padding: 1rem !important;
    scrollbar-width: none !important;
}

.service-slider::-webkit-scrollbar {
    display: none !important;
}

/* Keep these specific background rules */
.service-slide.domestic {
    background-image: url('../images/image00006.webp') !important;
    background-position: 28% 38% !important;
    background-size: auto !important;
}

.service-slide.commercial {
    background-image: url('../images/image00012.webp') !important;
    background-position: 28% 38% !important;
    background-size: 250% !important;
}

.service-slide.maintenance {
    background-image: url('../images/image00033.webp') !important;
    background-position: 8% 38% !important;
    background-size: cover !important;
}

.service-slide.emergency {
	background-image: url('../images/image00027.webp') !important;
    background-position: 43% 63% !important;
    background-size: 250% !important;
}

.service-slide.film {
	background-image: url('../images/image00036.webp') !important;
    /* background-position: 28% 38% !important; */
    background-size: cover !important;
}

.service-slide.all-services {
	background-image: url('../images/image00034.webp') !important;
    background-position: 43% 63% !important;
    background-size: 250% !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .service-slide {
        width: 300px !important;
        min-height: 400px !important;
    }
    
    .service-slider {
        gap: 1rem !important;
        padding: 0.5rem !important;
    }
}

/* WhatsApp Widget Styles */
.whatsapp-widget {
    position: fixed !important;
    right: 15px !important;
    bottom: 15px !important;
    width: 60px !important;
    height: 60px !important;
    background: #25D366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
    transition: all 0.3s ease !important;
    z-index: 999999 !important;
    cursor: pointer !important;
    transform: translateX(0) !important;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.whatsapp-widget svg {
    width: 35px;
    height: 35px;
}

.wa-widget-content {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 360px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transform-origin: bottom right;
    transition: all 0.3s ease;
	overflow: hidden;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wa-widget-content.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.wa-widget-header {
    display: flex;
    align-items: flex-start;
    padding: 20px 25px;
    background: #F0F0F0;
    border-bottom: none;
    position: relative;
}

.wa-widget-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.wa-widget-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111B21;
    line-height: 1.2;
}

.wa-widget-subtitle {
    margin: 4px 0 0;
    font-size: 14px;
    color: #667781;
    font-weight: 400;
}

.wa-status-indicator {
	position: absolute;
    width: 12px;
    height: 12px;
    background: #25D366;
    border-radius: 50%;
    border: 2px solid #fff;
    bottom: 2px;
    right: 15px;
}

.wa-widget-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 24px;
    height: 24px;
    opacity: 0.5;
    cursor: pointer;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    color: #667781;
}

.wa-widget-message {
    padding: 20px 25px;
    font-size: 14px;
    line-height: 1.5;
    color: #111B21;
    border-bottom: none;
    background: #FFFFFF;
}

.wa-widget-time {
    text-align: center;
    font-size: 12px;
    color: #667781;
    margin: 15px 0;
    font-weight: 500;
}

.wa-widget-button {
    display: block;
    background: #25D366;
    color: #FFFFFF;
    text-align: center;
    padding: 12px 24px;
    margin: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(37, 211, 102, 0.3);
    font-size: 15px;
    transition: all 0.2s ease;
}

.wa-widget-button:hover {
    background: #22C15E;
    text-decoration: none;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
}

@media screen and (max-width: 480px) {
    .wa-widget-content {
        width: calc(100% - 30px) !important;
        max-width: 360px;
        margin: 0 auto;
        bottom: 90px !important;
        right: 15px !important;
        border-radius: 15px !important;
    }

    .wa-widget-header {
        padding: 15px 20px !important;
    }

    .wa-widget-message {
        padding: 15px 20px !important;
    }

    .wa-widget-button {
        margin: 15px 20px !important;
    }
}

/* Update the burger menu styles */
.nav-toggler div {
    background-color: white !important; /* Make the burger lines white */
}

.toggler-one, .toggler-two, .toggler-three {
    background-color: white !important;
}

/* Update WhatsApp widget mobile styles */
@media screen and (max-width: 768px) {
    .whatsapp-widget {
        width: 50px !important;
        height: 50px !important;
        right: 15px !important;
        bottom: 25px !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
    }
    
    .whatsapp-widget svg {
        width: 28px !important;
        height: 28px !important;
    }

    .wa-widget-content {
        width: calc(100vw - 30px) !important;
        max-width: 360px !important;
        right: 15px !important;
        bottom: 85px !important;
        transform-origin: bottom right !important;
        margin: 0 !important;
    }
}

/* Remove any border from WhatsApp widget */
.whatsapp-widget {
    border: none !important;
}

.wa-widget-content {
    border: none !important;
}

/* Fix body overflow and scrolling */
html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    position: relative !important;
}

/* Ensure no horizontal scrolling on any screen size */
.container, .row, section, main, header, footer {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

/* Fix service slider overflow */
.home-service-slider {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}

.home-service-slider .row {
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
}

.service-slider {
    margin-right: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

.service-slider::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
}

.service-slide {
    flex: 0 0 auto !important;
    width: calc(33.333% - 2rem) !important;
    min-width: 300px !important;
    margin: 1rem !important;
    overflow: hidden !important;
}

@media screen and (max-width: 64em) {
    .service-slide {
        width: calc(50% - 2rem) !important;
    }
}

@media screen and (max-width: 40em) {
    .service-slide {
        width: calc(90% - 2rem) !important;
    }
}

/* Ensure the slide text stays within bounds */
.slide-text {
    width: 100% !important;
    padding: 1.5rem !important;
    box-sizing: border-box !important;
}

.slide-text h2 {
    width: 100% !important;
    word-wrap: break-word !important;
}

/* Hide burger menu on desktop */
.nav-toggler {
    display: none !important; /* Hide by default */
}

@media (max-width: 768px) {
    .nav-toggler {
        display: block !important; /* Only show on mobile */
    }
}

/* Remove icons from navbar items */
nav ul li > a::after {
    display: none !important; /* Remove all nav icons */
}

/* Only show navigation icons on mobile */
@media (max-width: 768px) {
    .mobile-menu nav ul li > a::after {
        display: block !important;
        background-image: url(../images/shapes/chevron-right.svg);
	position: absolute;
        right: 1rem;
        top: 0px;
        width: 25px;
        height: 3rem;
        line-height: 3;
        text-align: center;
        background-size: 50%;
        background-position: center;
        background-repeat: no-repeat;
	content: " ";
        transform: rotate(0deg);
    }

    /* Specific icons for mobile menu items */
    .mobile-menu nav ul li > a[href*="index"]:after { background-image: url(../images/shapes/home.svg); }
    .mobile-menu nav ul li > a[href*="gallery"]:after { background-image: url(../images/shapes/gallery.svg); }
    .mobile-menu nav ul li > a[href*="project"]:after { background-image: url(../images/shapes/gallery.svg); }
    .mobile-menu nav ul li > a[href*="review"]:after { background-image: url(../images/shapes/review.svg); }
    .mobile-menu nav ul li > a[href*="testimonial"]:after { background-image: url(../images/shapes/review.svg); }
    .mobile-menu nav ul li > a[href*="contact"]:after { background-image: url(../images/shapes/contact.svg); }
    .mobile-menu nav ul li > a[href*="faq"]:after { background-image: url(../images/shapes/faq.svg); }
    .mobile-menu nav ul li > a[href*="booking"]:after { background-image: url(../images/shapes/calendar.svg); }
}

/* Clean up desktop navigation */
.navigation {
    display: block !important; /* Always show on desktop */
}

@media (max-width: 768px) {
    .navigation {
        display: none !important; /* Hide on mobile */
    }
}

/* Fix desktop dropdown arrows */
nav ul li > a {
    margin-right: 0 !important; /* Remove extra margin */
	position: relative;
}

/* Only show dropdown arrow for items with submenus */
nav ul li > ul + a::after {
    display: inline-block !important;
    content: "▼" !important;
    font-size: 10px;
    margin-left: 5px;
    background: none !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .logo-container {
        gap: 1px !important; /* Even smaller gap on mobile */
    }
    
    .logo-icon {
        margin-left: -2px !important;
    }
}

/* Enhanced electrical shock effect */
.highlight {
    color: #FFFF00;
    font-weight: 600;
    position: relative;
    text-shadow: 
        -4px -4px 0 #000,
        4px -4px 0 #000,
        -4px 4px 0 #000,
        4px 4px 0 #000,
        -3px 0 0 #000,
        3px 0 0 #000,
        0 -3px 0 #000,
        0 3px 0 #000,
        0 0 15px rgba(255, 255, 0, 0.8),
        0 0 25px rgba(255, 255, 0, 0.6),
        0 0 35px rgba(255, 255, 0, 0.4),
        0 6px 6px rgba(0,0,0,0.7);
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) infinite;
    transform-origin: center;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Zig-zag lightning effects */
.highlight::before,
.highlight::after,
.highlight span::before,
.highlight span::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 40px;
    opacity: 0;
    filter: blur(0.5px);
    z-index: -1;
    clip-path: polygon(
        50% 0%, 
        100% 25%, 
        50% 50%, 
        100% 75%, 
        50% 100%, 
        0% 75%, 
        50% 50%, 
        0% 25%
    );
    animation: lightningFlash 3s infinite;
}

/* Position the lightning bolts */
.highlight::before {
    left: -15px;
    top: -10px;
    background: linear-gradient(45deg, #fff, #00ffff);
    transform: rotate(-45deg);
    animation-delay: 0.1s;
}

.highlight::after {
    right: -15px;
    top: -10px;
    background: linear-gradient(-45deg, #fff, #FFFF00);
    transform: rotate(45deg);
    animation-delay: 0.2s;
}

.highlight span::before {
    left: 15%;
    bottom: -10px;
    background: linear-gradient(45deg, #00ffff, #fff);
    transform: rotate(30deg);
    animation-delay: 0.3s;
}

.highlight span::after {
    right: 15%;
    bottom: -10px;
    background: linear-gradient(-45deg, #FFFF00, #fff);
    transform: rotate(-30deg);
    animation-delay: 0.4s;
}

/* Aggressive shake animation */
@keyframes shake {
    10%, 90% {
        transform: translate3d(-2px, -1px, 0);
    }
    
    20%, 80% {
        transform: translate3d(4px, 2px, 0);
    }
    
    30%, 50%, 70% {
        transform: translate3d(-6px, -2px, 0);
    }
    
    40%, 60% {
        transform: translate3d(6px, 2px, 0);
    }
}

/* Lightning flash animation */
@keyframes lightningFlash {
    0%, 100% {
        opacity: 0;
        transform: scaleY(1) translateY(0) rotate(var(--rotation, 0deg));
    }
    2%, 5% {
        opacity: 1;
        transform: scaleY(1.2) translateY(-5px) rotate(var(--rotation, 0deg));
        filter: brightness(2);
    }
    3%, 4% {
        opacity: 0.8;
        transform: scaleY(1.1) translateY(-3px) rotate(var(--rotation, 0deg));
        filter: brightness(1.8);
    }
    7% {
        opacity: 0.2;
        transform: scaleY(1) translateY(0) rotate(var(--rotation, 0deg));
    }
    15% {
        opacity: 0.8;
        transform: scaleY(1.2) translateY(-5px) rotate(var(--rotation, 0deg));
        filter: brightness(2);
    }
    17% {
        opacity: 0;
        transform: scaleY(1) translateY(0) rotate(var(--rotation, 0deg));
    }
}

/* Additional electric effects */
.highlight::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 70% 50%, rgba(0, 255, 255, 0.3) 0%, transparent 30%);
    mix-blend-mode: screen;
    animation: arcFlicker 0.5s infinite alternate;
}

@keyframes arcFlicker {
    from { opacity: 0.3; }
    to { opacity: 0.8; }
}

/* Add scroll effect for navbar */
.top-section.scrolled {
    background: rgba(21, 21, 21, 0.2) !important;
    padding: calc(var(--smallpad) * 0.5) 0 !important;
}

.top-section.scrolled .logo img {
    max-height: calc(var(--logoheight) * 0.9) !important;
}

/* Style for the "Who we are" subtitle */
.sub-title {
    color: #ffff87 !important;
    text-shadow: 
        /* Subtle outline */
        -1px -1px 0 rgba(0,0,0,0.3),
        1px -1px 0 rgba(0,0,0,0.3),
        -1px 1px 0 rgba(0,0,0,0.3),
        1px 1px 0 rgba(0,0,0,0.3),
        /* Yellow glow effect */
        0 0 10px rgba(255, 255, 0, 0.4),
        0 0 20px rgba(255, 255, 0, 0.2);
    font-weight: 500 !important;
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
}

/* Testimonial slider styles */
.review-slider {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 2rem !important;
    padding: 2rem 1rem !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.review-slider::-webkit-scrollbar {
    display: none !important;
}

.review-slide {
    flex: 0 0 auto !important;
    width: calc(100% - 4rem) !important;
    max-width: 800px !important;
    scroll-snap-align: center !important;
    padding: 2rem !important;
    border-radius: var(--mediumrad) !important;
    background: rgba(21, 21, 21, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.1),
        0 0 10px rgba(255, 215, 0, 0.1),
        0 0 20px rgba(255, 255, 135, 0.05) !important;
}

.review-slide .quotetext {
    position: relative !important;
    padding-left: 2rem !important;
}

.review-slide .quotetext::before {
    content: '"' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    font-size: 3rem !important;
    line-height: 1 !important;
    color: #FFFF87 !important;
    opacity: 0.5 !important;
}

.review-slide .author {
    margin-top: 1.5rem !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .review-slide {
        width: calc(100% - 2rem) !important;
        padding: 1.5rem !important;
    }
    
    .review-slider {
        gap: 1rem !important;
        padding: 1rem !important;
    }
}
/* Update dark section icon with larger size and more intense glow */
.before-section {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 2 !important;
    padding: 2rem 0 !important;
    overflow: visible !important; /* Allow glow to extend outside */
}

.before-section img {
    height: 180px !important;
    width: auto !important;
    position: relative !important;
    z-index: 3 !important;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
    animation: electricIcon 2s ease-in-out infinite !important;
}

@keyframes electricIcon {
    0%, 100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1) rotate(-2deg) !important;
    }
    25% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.15) rotate(2deg) !important;
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(255, 255, 0, 1)) !important;
        transform: scale(1.25) rotate(-1deg) !important;
    }
    75% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.15) rotate(1deg) !important;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .before-section img {
        height: 140px !important; /* Slightly smaller on tablets */
    }
    .before-section {
        padding: 1.5rem 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .before-section img {
        height: 120px !important; /* Even smaller on phones */
    }
    .before-section {
        padding: 1rem 0 !important;
    }
}

/* Add glowing effect to dark section text */
.dark-section .text p {
    color: #ffff87 !important;
    font-size: 1.3rem !important; /* Increased from 1rem */
    line-height: 2rem !important; /* Increased line height */
    text-shadow: 
        /* Stronger outline */
        -1px -1px 0 rgba(0,0,0,0.4),
        1px -1px 0 rgba(0,0,0,0.4),
        -1px 1px 0 rgba(0,0,0,0.4),
        1px 1px 0 rgba(0,0,0,0.4),
        /* Enhanced yellow glow effect */
        0 0 15px rgba(255, 255, 0, 0.5),
        0 0 25px rgba(255, 255, 0, 0.3);
    font-weight: 500 !important;
    opacity: 1 !important;
    padding: 0.5rem 0 !important; /* Add some vertical spacing */
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .dark-section .text p {
        font-size: 1.1rem !important; /* Slightly smaller on mobile */
        line-height: 1.8rem !important;
        text-shadow: 
            -1px -1px 0 rgba(0,0,0,0.4),
            1px -1px 0 rgba(0,0,0,0.4),
            -1px 1px 0 rgba(0,0,0,0.4),
            1px 1px 0 rgba(0,0,0,0.4),
            0 0 12px rgba(255, 255, 0, 0.4);
    }
}

/* Update text section padding */
.dark-section .columns.text {
    padding: calc(var(--bigpad) * 0.1) !important; /* Reduce to 10% of original padding */
}

/* Mobile adjustments */
@media screen and (max-width: 64em) {
    .dark-section .columns.text {
        padding: calc(var(--bigpad) * 0.1) !important; /* Keep consistent on mobile */
    }
}

/* Update dark section layout */
.dark-section .row.align-middle {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important; /* Remove default gap */
}

/* Left text column */
.dark-section .columns.text:first-child {
    padding-right: 0.5rem !important;
    text-align: right !important;
}

/* Center icon column */
.dark-section .before-section {
    padding: 0 !important;
    margin: 0 -1rem !important; /* Pull icon closer to text */
}

/* Right text column */
.dark-section .columns.text:last-child {
    padding-left: 0.5rem !important;
    text-align: left !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .dark-section .row.align-middle {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .dark-section .columns.text:first-child,
    .dark-section .columns.text:last-child {
        text-align: center !important;
        padding: 0.5rem !important;
    }
    
    .dark-section .before-section {
        margin: 0 !important;
    }
}

/* Center text alignment helper */
.text-center {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 2rem 0 !important;
}

/* Remove any existing margin/padding that might affect centering */
.columns.text .text-center {
    padding: 0 !important;
}

/* Ensure button maintains its style while centered */
.text-center .button {
    margin: 0 auto !important;
}

/* Footer credentials section */
.members {
    padding: 3rem 0 !important;
}

.members h5 {
    color: var(--accent) !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

/* Credential cards */
.cred {
    background: rgba(21, 21, 21, 0.5) !important;
    padding: 2rem !important;
    border-radius: var(--mediumrad) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.cred:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1) !important;
}

.cred img {
    max-width: 200px !important;
    height: auto !important;
    margin-bottom: 1rem !important;
}

.credential-text {
    color: white !important;
    font-size: 1rem !important;
    text-align: center !important;
    margin: 0 !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .members {
        padding: 2rem 0 !important;
    }
    
    .cred {
        padding: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .cred img {
        max-width: 150px !important;
    }
}

/* Contact form section styling */
#contact-form {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 4rem 1rem !important;
}

.multi-booking {
    max-width: 600px !important;
    width: 100% !important;
    margin: 0 auto !important;
    background: rgba(21, 21, 21, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: var(--mediumrad) !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1) !important;
}

/* Form title and text */
.multi-booking h3 {
    color: var(--accent) !important;
    text-align: center !important;
    margin-bottom: 0.5rem !important;
}

.multi-booking p {
    color: white !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

/* Form inputs styling */
.form-group {
    margin-bottom: 1.5rem !important;
}

.form-group label {
    color: white !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 500 !important;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--smallrad) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent) !important;
    outline: none !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2) !important;
}

/* Form buttons */
.multi-booking .button {
    margin-top: 1rem !important;
}

.multi-booking .button2 {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    #contact-form {
        padding: 2rem 1rem !important;
    }
    
    .multi-booking {
        padding: 1.5rem !important;
    }
}

/* Multi-step form styling */
.multi-step-form {
    position: relative !important;
}

/* Hide all form cards by default */
.form-card {
    display: none !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

/* Only show active form card */
.form-card.active {
    display: block !important;
    opacity: 1 !important;
}

/* Form buttons layout */
.form-buttons {
    display: flex !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
}

/* Previous button styling */
.button2 {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    margin-right: 1rem !important;
}

/* Form transition effects */
.form-card.slide-in {
    animation: slideIn 0.3s forwards !important;
}

.form-card.slide-out {
    animation: slideOut 0.3s forwards !important;
}

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

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

/* Form select dropdown styling */
.form-group select {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: var(--smallrad) !important;
    background: #151515 !important;
    color: white !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    line-height: 1.5 !important;
    height: auto !important;
    text-overflow: ellipsis !important;
}

/* Custom dropdown arrow */
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 1.5em !important;
    padding-right: 3rem !important; /* Make room for the arrow */
}

/* Style dropdown options */
.form-group select option {
    background: #151515 !important;
    color: white !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    min-height: 3rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

/* Selected option style */
.form-group select option:checked,
.form-group select option:hover {
    background: var(--accent) !important;
    color: black !important;
}

/* Focus state */
.form-group select:focus {
    border-color: var(--accent) !important;
    outline: none !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2) !important;
}

/* Hover state */
.form-group select:hover {
    border-color: var(--accent) !important;
}

/* Placeholder text color */
.form-group select:invalid {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Enhanced glow effects */
.glow-effect {
    animation: textGlow 2s infinite !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                 0 0 40px rgba(255, 215, 0, 0.4),
                 0 0 60px rgba(255, 215, 0, 0.2) !important;
}

/* Enhanced electrical glow animation */
@keyframes electricalGlow {
    0%, 100% {
        filter: brightness(1) !important;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                    0 0 40px rgba(255, 215, 0, 0.4) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: brightness(1.4) !important;
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.9),
                    0 0 60px rgba(255, 215, 0, 0.6),
                    0 0 90px rgba(255, 215, 0, 0.3) !important;
        transform: scale(1.05) !important;
    }
}

/* Enhanced highlight effect */
.highlight {
    color: var(--accent) !important;
    font-weight: 600 !important;
    animation: electricalGlow 8s ease-in-out infinite !important;
    text-shadow: 0 0 25px rgba(255, 255, 0, 1),
                 0 0 45px rgba(255, 255, 0, 0.8),
                 0 0 65px rgba(255, 255, 0, 0.6) !important;
}

/* Enhanced button glow */
.button {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.button:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4),
                0 0 50px rgba(255, 215, 0, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* Enhanced form focus effects */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3),
                0 0 40px rgba(255, 215, 0, 0.1) !important;
}

/* Enhanced credential cards glow */
.cred {
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.cred:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2),
                0 5px 20px rgba(255, 215, 0, 0.1) !important;
}

/* Enhanced WhatsApp widget glow */
.whatsapp-widget {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-widget:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6) !important;
}

/* Enhanced pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1) !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    }
    70% {
        transform: scale(1.1) !important;
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6) !important;
    }
    100% {
        transform: scale(1) !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    }
}

/* Enhanced bulb icon glow */
.uk-icon[uk-icon="icon: bulb"] {
    color: var(--accent) !important;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8)) 
            drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)) !important;
    animation: bulbGlow 3s ease-in-out infinite !important;
    transform-origin: center !important;
}

@keyframes bulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)) !important;
        transform: scale(1) !important;
        opacity: 1 !important;
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1))
                drop-shadow(0 0 40px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 60px rgba(255, 215, 0, 0.6)) !important;
        transform: scale(1.1) !important;
        opacity: 0.9 !important;
    }
}

/* Make the icon more visible in the dark navbar */
.top-section .uk-icon[uk-icon="icon: bulb"] {
    color: #D7FF0E !important; /* Brighter yellow */
    font-size: 1.2em !important;
    margin-right: 5px !important;
}

/* Enhance glow effect when navbar is scrolled */
.top-section.scrolled .uk-icon[uk-icon="icon: bulb"] {
    animation: bulbGlowScrolled 3s ease-in-out infinite !important;
}

@keyframes bulbGlowScrolled {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9))
                drop-shadow(0 0 30px rgba(255, 215, 0, 0.5)) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1))
                drop-shadow(0 0 50px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 75px rgba(255, 215, 0, 0.6)) !important;
        transform: scale(1.1) !important;
    }
}

/* Super enhanced bulb icon glow */
.uk-icon[uk-icon="icon: bulb"] {
    color: #D7FF0E !important; /* Bright gold */
    font-size: 1.4em !important; /* Larger size */
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1)) 
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.8))
            drop-shadow(0 0 45px rgba(255, 215, 0, 0.6)) !important;
    animation: intenseBulbGlow 2s ease-in-out infinite !important;
    transform-origin: center !important;
    position: relative !important;
    z-index: 10 !important;
}

@keyframes intenseBulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1))
                drop-shadow(0 0 30px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 45px rgba(255, 215, 0, 0.6)) !important;
        transform: scale(1) rotate(0deg) !important;
        color: #D7FF0E !important;
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 0, 1))
                drop-shadow(0 0 60px rgba(255, 255, 0, 0.9))
                drop-shadow(0 0 90px rgba(255, 255, 0, 0.7))
                drop-shadow(0 0 120px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1.2) rotate(5deg) !important;
        color: #FFFF00 !important;
    }
}

/* Make the icon even more visible in the dark navbar */
.top-section .uk-icon[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Even brighter yellow */
    font-size: 1.5em !important; /* Even larger */
    margin-right: 8px !important;
    text-shadow: 0 0 20px rgba(255, 255, 0, 1) !important;
}

/* Super enhanced glow effect when navbar is scrolled */
.top-section.scrolled .uk-icon[uk-icon="icon: bulb"] {
    animation: intenseBulbGlowScrolled 2s ease-in-out infinite !important;
}

@keyframes intenseBulbGlowScrolled {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 0, 1))
                drop-shadow(0 0 40px rgba(255, 255, 0, 0.8))
                drop-shadow(0 0 60px rgba(255, 255, 0, 0.6)) !important;
        transform: scale(1) rotate(-5deg) !important;
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
                drop-shadow(0 0 80px rgba(255, 255, 0, 0.9))
                drop-shadow(0 0 120px rgba(255, 255, 0, 0.7))
                drop-shadow(0 0 160px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1.3) rotate(5deg) !important;
    }
}

/* Add pseudo-element for extra glow */
.uk-icon[uk-icon="icon: bulb"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.4) 0%,
        rgba(255, 255, 0, 0.2) 30%,
        transparent 70%);
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Target the specific bulb icon in navigation */
nav ul li a .uk-icon[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Pure yellow */
    font-size: 2em !important; /* Much larger */
    filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
            drop-shadow(0 0 80px rgba(255, 255, 0, 0.9))
            drop-shadow(0 0 120px rgba(255, 255, 0, 0.7)) !important;
    animation: superIntenseBulbGlow 1.5s ease-in-out infinite !important;
    transform-origin: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 10px !important;
    position: relative !important;
    z-index: 100 !important; /* Ensure it's above other elements */
}

@keyframes superIntenseBulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
                drop-shadow(0 0 80px rgba(255, 255, 0, 0.9)) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: drop-shadow(0 0 60px rgba(255, 255, 0, 1))
                drop-shadow(0 0 120px rgba(255, 255, 0, 1))
                drop-shadow(0 0 180px rgba(255, 255, 0, 0.9)) !important;
        transform: scale(1.4) !important;
    }
}

/* Add a glowing background */
nav ul li a .uk-icon[uk-icon="icon: bulb"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.6) 0%,
        rgba(255, 255, 0, 0.3) 30%,
        transparent 70%);
    z-index: -1;
    animation: pulseBackground 1.5s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
}

/* Override any potential conflicting styles */
.uk-icon[uk-icon="icon: bulb"] svg {
    stroke: #FFFF00 !important;
    stroke-width: 2 !important;
    fill: #FFFF00 !important;
}

/* Ensure the icon container doesn't clip the glow */
nav ul li a {
    overflow: visible !important;
}

nav ul li {
    overflow: visible !important;
}

.top-section nav {
    overflow: visible !important;
}

/* Target the specific navigation bulb icon */
.uk-navbar-nav .uk-icon[uk-icon="icon: bulb"],
nav .uk-icon[uk-icon="icon: bulb"],
[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Bright yellow */
    font-size: 24px !important; /* Much larger */
    position: relative !important;
    z-index: 1000 !important;
    display: inline-block !important;
    animation: extremeGlow 2s infinite !important;
    transform-origin: center !important;
    margin: 0 5px !important;
}

/* Extreme glow animation */
@keyframes extremeGlow {
    0%, 100% {
        filter: 
            brightness(1.5)
            drop-shadow(0 0 10px #FFFF00)
            drop-shadow(0 0 20px #FFFF00)
            drop-shadow(0 0 30px #FFFF00) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: 
            brightness(2)
            drop-shadow(0 0 20px #FFFF00)
            drop-shadow(0 0 40px #FFFF00)
            drop-shadow(0 0 60px #FFFF00) !important;
        transform: scale(1.2) !important;
    }
}

/* Force SVG colors */
[uk-icon="icon: bulb"] svg * {
    stroke: #FFFF00 !important;
    fill: #FFFF00 !important;
    stroke-width: 2 !important;
}

/* Add a glowing orb behind the icon */
[uk-icon="icon: bulb"]::after {
    content: '';
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 30px !important;
    height: 30px !important;
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.8) 0%,
        rgba(255, 255, 0, 0.4) 50%,
        transparent 70%) !important;
    transform: translate(-50%, -50%) !important;
    z-index: -1 !important;
    pointer-events: none !important;
    animation: orbPulse 2s infinite !important;
}

@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
}


/* Enhanced electrical light effect */
.highlight {
    color: #FFFF00 !important;
    font-weight: 600 !important;
    position: relative !important;
    display: inline-block !important;
    animation: electricLight 4s ease-in-out infinite !important;
}

@keyframes electricLight {
    0%, 100% {
        color: #FFFFFF !important;
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(255, 255, 255, 0.6);
    }
    45%, 55% {
        color: #FFFF00 !important;
        text-shadow: 
            0 0 30px rgba(255, 255, 0, 1),
            0 0 60px rgba(255, 255, 0, 1),
            0 0 90px rgba(255, 255, 0, 0.8),
            0 0 120px rgba(255, 255, 0, 0.6);
    }
}

/* Add light rays effect */
.highlight::before {
    content: '';
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 150% !important;
    height: 150% !important;
    transform: translate(-50%, -50%) !important;
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.8) 0%,
        rgba(255, 255, 0, 0.4) 30%,
        transparent 70%
    ) !important;
    z-index: -1 !important;
    opacity: 0 !important;
    animation: lightRays 4s ease-in-out infinite !important;
}

@keyframes lightRays {
    0%, 100% {
        opacity: 0 !important;
        background: radial-gradient(circle, 
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.4) 30%,
            transparent 70%
        ) !important;
    }
    45%, 55% {
        opacity: 1 !important;
        background: radial-gradient(circle, 
            rgba(255, 255, 0, 0.8) 0%,
            rgba(255, 255, 0, 0.4) 30%,
            transparent 70%
        ) !important;
    }
}

/* Add subtle flicker effect */
.highlight span {
    animation: flicker 0.15s ease-in-out infinite alternate !important;
}

@keyframes flicker {
    0% {
        opacity: 0.97 !important;
    }
    100% {
        opacity: 1 !important;
    }
}

/* Logo container styles with electrical effects */
.logo-container {
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Base logo styles */
.logo-base {
    max-height: var(--logoheight) !important;
    width: auto !important;
    display: block !important;
    position: relative !important;
    z-index: 2 !important;
    filter: brightness(0) invert(1) !important; /* Re-add this to make logo white */
}

/* Icon (bulb) styles with enhanced electrical effects */
.logo-icon {
    height: 60px !important;
    width: auto !important;
    display: block !important;
    margin-left: -4px !important;
    position: relative !important;
    z-index: 3 !important;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important; /* Re-add brightness(0) invert(1) */
    animation: electricalIcon 3s ease-in-out infinite !important;
}

/* Add electrical animation for the icon */
@keyframes electricalIcon {
    0%, 100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1) rotate(-2deg) !important;
    }
    25% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.1) rotate(2deg) !important;
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(255, 255, 0, 1)) !important;
        transform: scale(1.2) rotate(-1deg) !important;
    }
    75% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.1) rotate(1deg) !important;
    }
}

/* Add glowing effect behind the logo */
.logo-container::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 120% !important;
    height: 120% !important;
    transform: translate(-50%, -50%) !important;
    background: radial-gradient(
        circle,
        rgba(255, 255, 0, 0.2) 0%,
        rgba(255, 255, 0, 0.1) 30%,
        transparent 70%
    ) !important;
    z-index: 1 !important;
    animation: logoGlow 3s ease-in-out infinite !important;
    pointer-events: none !important;
}

@charset "utf-8";
/*    Website designed and created by Adam Nicholls    */
@import url(https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;700&display=swap);

/* 
James Electrical Services Ltd
07500844696
#mobile
info@jameselectricalservices.co.uk
-----------------
15 Coniston Road
Twickenham
London
TW2 7HH
------------------
electrical
electricians
Domestic Electrics
Commercial Electrics
Planned and Reactive Electrical Maintenance
Emergency Electrician
------------------
13/02/2024
jameselectricalservices.uk
Whatsapp 44 first - https://wa.me/447500844696
------------------
<img src="media/images/logo.png" alt="">
 */

:root{
	--dark: #151515;
	--medium: #4d3d3d;
	--light: #D7FF0E;
	--accent: #FFFF87;

	--bigrad: 12px;
	--mediumrad: 8px;
	--smallrad: 4px;

	--bigpad: 60px;
	--mediumpad: 40px;
	--smallpad: 15px;

	--mainfont: 'Quicksand', sans-serif;
	--titlefont: 'Quicksand', sans-serif;	

	--logoheight: 60px;
	--logoheightmob: 50px;
}
@media screen and (max-width: 40em) {
	:root{
		--bigpad: 60px;
		--mediumpad: 30px;
		--smallpad: 15px;
	}
}
.logo img{
	max-height: var(--logoheight);
	display: inline-block;
	-webkit-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	transition: ease 0.3s;
	max-width: 300px;
	filter: brightness(0) invert(1); /* Re-add this to make logo white */
}
@media screen and (max-width: 64em) {
	.logo{
		text-align: center;
		width: 100%;
		padding-left: 60px;
		padding-right: 60px;
	}
	.logo img{
		max-height: var(--logoheightmob);
		text-align: center;
		max-width: 100%;
	}
}
.logo p{
	font-size: 1.5rem;
	color: var(--dark);
	margin: 0;
	font-weight: 700;
	letter-spacing: -1px;
}
.top-section{
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	z-index: 999 !important;
	padding: calc(var(--smallpad) * 0.7) 0 !important;
	background: rgba(21, 21, 21, 0.2) !important;
	backdrop-filter: blur(10px) !important;
	-webkit-backdrop-filter: blur(10px) !important;
	transition: all 0.3s ease !important;
}
.widerow{
    max-width: 100%; /* Use Foundation's default max-width or 100% if full-width needed */
    margin-left: auto;
    margin-right: auto;
}
header{
	width: 100%;
	margin: 0;
	border-radius: 0;
	padding-top: calc(var(--logoheight) + var(--smallpad) * 2);
}
main{
	position: relative;
	z-index: 1;
}

/******** Essentials ********/
body {
    margin: 0 !important;
    padding: 0 !important;
    background-color: var(--dark) !important;
    max-width: none; /* Allow body to size naturally */
    overflow-x: visible; /* Let content determine overflow */
}

/* Fix header spacing */
.home-header {
    width: 100% !important;
    margin: 0 !important;
    padding-top: calc(var(--logoheight) + var(--smallpad) * 2) !important;
    border-radius: 0 !important;
}

/* Fix mobile menu spacing */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(21, 21, 21, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: left 0.3s ease-in-out;
    padding: 80px 20px 20px;
}

.mobile-menu.active {
    left: 0;
}

/* Navigation styles */
.mobile-menu nav {
    margin-top: 20px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin: 15px 0;
}

.mobile-menu ul li a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    display: block;
    padding: 10px;
    transition: color 0.2s ease;
}

.mobile-menu ul li a:hover {
    color: var(--light);
}

/* Close button styles */
.nav-toggler {
    width: 30px;
    height: 20px;
    position: fixed;
    top: 25px;
    left: 20px;
    z-index: 1001;
    cursor: pointer;
    display: none;
}

.nav-toggler div {
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    transition: all 0.3s ease;
}

.nav-toggler .toggler-one { top: 0; }
.nav-toggler .toggler-two { top: 50%; transform: translateY(-50%); }
.nav-toggler .toggler-three { bottom: 0; }

/* Burger menu active state */
.mobile-menu-active .nav-toggler .toggler-one {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-active .nav-toggler .toggler-two {
    opacity: 0;
}

.mobile-menu-active .nav-toggler .toggler-three {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Logo positioning for mobile */
@media screen and (max-width: 64em) {
    .nav-toggler {
        display: block;
    }
    
    .logo {
        text-align: center;
        width: 100%;
        padding: 10px 60px;
    }
    
    .logo img {
        max-height: var(--logoheightmob);
        max-width: 200px;
        margin: 0 auto;
    }
    
    /* Mobile menu items */
    .mobile-menu nav {
        margin-top: 40px;
    }
    
    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu ul li {
        margin: 15px 0;
        text-align: center;
    }
    
    .mobile-menu ul li a {
        color: white;
        font-size: 1.4rem;
        text-decoration: none;
        display: block;
        padding: 10px;
        transition: color 0.2s ease;
    }
    
    .mobile-menu ul li a:hover {
        color: var(--light);
    }
    
    /* Hide desktop navigation */
    .navigation {
        display: none;
    }
}

/* Adjust content padding when menu is active */
body.mobile-menu-active {
    overflow: hidden;
}

/* Ensure proper scroll padding for smooth scrolling */
html {
    scroll-padding-top: 100px; /* Match with headerOffset in JavaScript */
    overflow-x: hidden; /* Apply basic overflow control here */
}

/* Ensure content sections have proper padding */
section .row, main .row {
    /* Let the base .row rule handle max-width and margins */
}

/* Fix footer spacing */
footer {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

a, a:active, a:visited, a:link{
	text-decoration: none;
	color: #777;
}
p{
	font-size: 1rem;
	line-height: 1.75rem;
	font-weight: 500;
	opacity: 0.92;
	font-family: var(--mainfont);
}
ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
h1,h2,h3,h4,h5,h6{
	margin: 0;
	margin-bottom: 10px;
	font-weight: 400;
	font-family: var(--titlefont);
	display: block;
	width: 100%;
}
/******** BN Kit ********/
.social a{
	display: inline-block;
	width: 2rem;
	height: 2rem;
	line-height: 2rem;
	text-align: center;
	margin-right: 8px;
	border-radius: var(--mediumrad);
	-webkit-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	transition: ease 0.3s;
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.social a:hover{background-color: var(--medium)!important;}
.social span{color: white;margin: 0;}
.bigbg{
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
	min-height: 400px;
	max-height: 750px;
	border-radius: var(--bigrad);
	padding: 2rem 0 !important;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.bigbg img {
    max-width: 100%;
	height: auto !important;
	object-fit: cover !important;
	border-radius: var(--bigrad) !important;
    display: block;
}
@media screen and (max-width: 768px) {
	.bigbg {
		min-height: 300px;
		padding: 1.5rem 0 !important;
	}
}
/******** Typegraphy ********/
.sub-title, blockquote span{
	font-size: 0.825rem;
	line-height: 1.1;
	font-weight: 300;
	color: var(--accent);
	display: block;
	position: relative;
	margin: 0;
	margin-bottom: 1rem;
	padding-left: 20px;
}
.sub-title::before, blockquote span::before{
	position: absolute;
	width: 16px;
	height: 1px;
	bottom: 4px;
	left: 0;
	content: " ";
	background-color: var(--accent);
}
main h1{
	font-size: 2rem;
	line-height: 1.2;
	font-weight: 700;
	color: var(--medium);	
}
main h2{
	font-size: 2rem;
	line-height: 1.2;
	font-weight: 700;
	color: var(--medium);	
}
main h3{
	font-size: 1.75rem;
	line-height: 1.2;
	font-weight: 700;
	color: var(--medium);	
}
main h4{
	font-size: 1.5rem;
	line-height: 1.2;
	font-weight: 500;
	color: var(--medium);	
}
main h5{
	font-size: 1.25rem;
	line-height: 1.2;
	font-weight: 700;
	color: var(--light);	
}
main h6{
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 700;
	color: var(--light);	
}
main strong{font-weight: 700;;}
/******** Colour codes ********/
.light-text :is(p, h1, h2){color: white;}
.light-text :is(h3, h4, h5){color: var(--accent);}
.extradarkbg :is(p, h1, h2){color: var(--light);}
.extradarkbg :is(h3, h4, h5){color: var(--accent);}
.darkbg :is(p, h1, h2, li){color: white;}
.darkbg :is(h3, h4, h5){color: var(--accent);}
.medbg :is(p, h1, h2, li){color: white;}
.medbg :is(h3, h4, h5){color: var(--accent);}
.lightbg :is(p, h1, h2){color: var(--dark);}
.lightbg :is(h3, h4, h5){color: var(--medium);}
.caption :is(p, h1, h2){color: white;}
.caption :is(h3, h4, h5){color: var(--accent);}
/******** Buttons ********/
/* Button container for centering */
.button-container {
    display: flex !important;
    justify-content: center !important;
    margin: 2rem 0 !important;
}

/* Button styles */
.button {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.8rem 1.5rem !important;
    background: linear-gradient(to right, #D7FF0E, #FFFF87) !important;
    color: black !important;
    text-decoration: none !important;
    border-radius: var(--smallrad) !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

/* Icon styles */
.button [uk-icon] {
    position: relative !important;
    display: inline-block !important;
    width: 20px !important;
    height: 20px !important;
    margin-left: 8px !important;
    color: black !important;
}

/* Hover effect */
.button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3) !important;
}

.button2{
	background-image:
	 -webkit-linear-gradient(left, var(--dark), var(--medium));
	background-image:
	 -o-linear-gradient(left, var(--dark), var(--medium));
	background-image:
	 linear-gradient(to right, var(--dark), var(--medium));
}
.button2::after{
	background-color: var(--accent);
}
.button + .button{margin-left: 1rem;}
.cta{
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1;
	margin: 0;
	display: inline-block;
	color: var(--medium)!important;
	text-decoration: underline!important;
}
.cta:hover{color: var(--accent)!important;}
.caption-blur .cta{
	color: white!important;
	display: block;
	margin-top: 1rem;
}
.darkbg .cta{color: white!important;}
@media screen and (max-width: 40em) {
	.button{
		display: block;
		width: 100%;
		text-align: center;
	}
	.button + .button{
		margin: 0;
		margin-top: 0.5rem;
	}
}
/******** List ********/
main ul{
	margin-top: var(--smallpad);
	margin-bottom: var(--smallpad);	
}
main ul li{
	position: relative;
	font-size: 1rem;
	line-height: 2rem;
	margin-bottom: 15px;
	text-align: left;
	padding-left: 24px;
	display: inline-block;
	width: 100%;
	text-transform: capitalize;
}
main ul li::before{
	position: absolute;
	left: 0;
	top: 16px;
	width: 16px;
	height: 1px;
	line-height: 30px;
	text-align: center;
	background-position: center;
	background-repeat: no-repeat;
	content: " ";
	background-color: var(--accent);
}
main ol{
	counter-reset: my-awesome-counter;
	padding: 0;
	margin-top: var(--smallpad);
	margin-bottom: var(--mediumpad);	
}
main ol li{
	position: relative;
	font-size: 1rem;
	line-height: 2rem;
	margin-bottom: 10px;
	text-align: left;
	padding: var(--smallpad);
	display: inline-block;
	width: 100%;
	font-weight: 700;
	-webkit-transition: ease 0.6s;
	-o-transition: ease 0.6s;
	transition: ease 0.6s;
  counter-increment: my-awesome-counter;
}
main ol li a{
	-webkit-transition: ease 0.6s;
	-o-transition: ease 0.6s;
	transition: ease 0.6s;
}
ol li::before {
  content: counter(my-awesome-counter) ". ";
  color: var(--accent);
  font-weight: bold;
}
/******** Section sizes ********/
section{
	padding-top: 30px !important; /* Reduced from 60px */
	padding-bottom: 30px !important; /* Reduced from 60px */
	position: relative;
}
.next-section{
	padding-bottom: 30px !important; /* Reduced from 60px */
	padding-top: 0;
	position: relative;
}
.next-inner-section{
	padding-bottom: 0;
	padding-top: 30px !important; /* Reduced from 60px */
	position: relative;
}
.large-section{
	padding-top: 45px !important; /* Reduced from 90px */
	padding-bottom: 45px !important; /* Reduced from 90px */
	position: relative;
}
.medium-section{
	padding-top: 15px !important; /* Reduced from 30px */
	padding-bottom: 15px !important; /* Reduced from 30px */
	position: relative;
}
.small-section{
	padding-top: 7.5px !important; /* Reduced from 15px */
	padding-bottom: 7.5px !important; /* Reduced from 15px */
	position: relative;
}
@media screen and (max-width: 64em) {
	section{padding-top: 12.5px !important;padding-bottom: 12.5px !important;}
	.medium-section{padding-top: 6.25px !important;padding-bottom: 6.25px !important;}
	.small-section{padding-top: 3.75px !important;padding-bottom: 3.75px !important;}
	.next-section{padding-bottom: 12.5px !important;}
	.large-section{padding-bottom: 25px !important;padding-top: 25px !important;}
}
.card{
	border-radius: var(--mediumrad);
	padding: var(--mediumpad);
}
.card .bigbg{min-height: 200px; margin-bottom: 30px;}
/******** Text sections ********/
.left-text{padding: var(--bigpad);padding-left: 0;}
.right-text{padding: var(--bigpad) 0 !important; /* Remove left padding, keep top/bottom padding */}
.text{padding: var(--bigpad);}
main .content:nth-child(even) .left-text{
	order: +1;
	padding-left: var(--bigpad);
	padding-right: 0;
}
@media screen and (max-width: 64em) {
	main .content:nth-child(even) .left-text{order: auto;padding: var(--bigpad) 1.15rem;}
	.left-text{padding: var(--bigpad) 1.5rem;}
	.right-text{padding: var(--bigpad) 0 !important; /* Keep consistent on mobile */}
	.text{padding: var(--bigpad) 1.15rem;}
}
/******** Navigations ********/
nav ul li{display: inline-block;position: relative;}
nav ul li a{
	display: inline-block;
	line-height: 2.5rem;
	padding: 0 8px;
	font-size: 0.9rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9) !important;
	position: relative;
	-webkit-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	transition: ease 0.3s;
	text-transform: capitalize;
}
nav ul li::after {
    position: absolute;
    bottom: 0;
    width: 0;
    left: 50%;
    z-index: 10;
    height: 2px;
    background-color: #FFFF87 !important;
    content: " ";
    transition: ease 0.3s;
    box-shadow: 0 0 8px rgba(255, 255, 135, 0.8) !important;
}
nav ul li:hover::after {
    width: 60%;
    left: 20%;
    box-shadow: 0 0 12px rgba(255, 255, 135, 1) !important;
}
nav ul li > ul{
	position: absolute;
	top: calc(100% - 2px);
	text-align: left;
	clear: both;
	white-space: nowrap;
	padding: var(--smallpad) var(--mediumpad);
	border-radius: var(--smallrad);	
	background-color: var(--dark);
	opacity: 0;
	z-index: 10;
	width: auto;
	transform: scale(0.5);
	pointer-events: none;
	transform-origin: top left;
	-webkit-transition: ease 0.1s;
	-o-transition: ease 0.1s;
	transition: ease 0.1s;
	border-top: 3px solid var(--accent);
	box-shadow: 0 0 80px rgba(0,0,0,0.2);
}
nav ul li > ul li{display: block;}
nav ul li > ul li a{
	padding: 0;
	color: white!important;
	line-height: 35px;
}
nav ul li > ul li a:hover{color: var(--accent)!important;}
nav ul li:hover > ul{
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
}
nav ul li:hover > ul{
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
}
nav ul li > a{margin-right: 10px;}
nav ul li > a:only-child{margin-right: 0px;}
nav ul li > a::after {
	background-image: url(../images/shapes/navdown.svg);
	position: absolute;
	right: -10px;
	top: 5px;
	width: 20px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
	content: " ";
}
nav ul li > ul li::after{display: none!important;}
nav ul li > a:only-child::after { display: none;}
.toggler{display: none;}
.mob-call{display: none;}
.call-text{display: none;}
.nav-toggler p{display: none;}
.mobile-menu nav ul {
    margin: 20px 0;
}
.mobile-menu nav ul li {
		display: block;
    margin: 10px 0;
}
.mobile-menu nav ul li a {
    color: var(--accent) !important;
    font-size: 1.1rem;
		display: block;
    padding: 10px 0;
}
.mobile-menu .submenu {
    display: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-left: 15px;
    border-left: 2px solid #D7FF0E;
    padding-left: 10px;
}

.mobile-menu .has-submenu.active .submenu {
    display: block;
    max-height: 500px;
    opacity: 1;
    overflow: visible;
}

.mobile-menu .submenu li a {
    padding: 8px 15px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .has-submenu > a::after {
    content: '▼';
    display: inline-block;
    font-size: 0.6em;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.mobile-menu .has-submenu.active > a::after {
    transform: rotate(180deg);
}
@media (max-width: 768px) {
	.nav-toggler {
		display: block !important;
	}
	
	.navigation {
		display: none !important;
	}
	.logo {
        text-align: center;
        padding: 10px 60px;
    }
    
    .logo img {
        max-height: 60px;
        margin: 0 auto;
    }
    
    /* Remove arrows from mobile menu items */
    .mobile-menu nav ul li > a::after {
        display: block !important;
        background-image: url(../images/shapes/chevron-right.svg);
        position: absolute;
        right: 1rem;
        top: 0px;
        width: 25px;
        height: 3rem;
        line-height: 3;
		text-align: center;
        background-size: 50%;
        background-position: center;
		background-repeat: no-repeat;
        content: " ";
        transform: rotate(0deg);
    }
    
    /* Style submenu toggle */
    .submenu-toggle::after {
        content: '+';
        float: right;
        font-size: 1.2rem;
    }
    
    .submenu-toggle.active::after {
        content: '-';
    }
}
.toggler-one,
.toggler-two,
.toggler-three {
	width: 25px;
		height: 3px;
	background-color: white !important;
	margin: 5px 0;
	transition: 0.3s ease;
}
.nav-toggler.active .toggler-one {
	transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggler.active .toggler-two {
	opacity: 0;
}
.nav-toggler.active .toggler-three {
	transform: rotate(-45deg) translate(7px, -7px);
	}
	.mobile-menu .columns{padding: 0;}
	.nav-title{
		font-size: 1.25rem;
		font-weight: 700;
		margin-top: 1rem;
	}
	.mobile-nav-contact{
	margin-top: 20px;
	}
.mobile-nav-contact a {
		display: block;
    padding: 15px 20px;
    margin: 10px 0;
    background: var(--accent);
    color: white !important;
    text-align: center;
    border-radius: var(--smallrad);
    font-weight: 500;
}
.mobile-nav-contact a:first-child {
    background: var(--dark);
	}
	.mobile-menu .social{margin-top: 1rem;}
	.mobile-nav-contact a::after {
		background-image: url(../images/shapes/navdown.svg);
		position: absolute;
		right: 1rem;
		top: 0px;
		width: 25px;
		height: 3rem;
		line-height: 3;
		text-align: center;
		background-size: 50%;
		background-position: center;
		background-repeat: no-repeat;
		content: " ";
	}
	.mobile-nav-contact > a[href*="form"]:after{background-image: url(../images/shapes/bookmark.svg);}
	nav ul li > a::after {
		background-image: url(../images/shapes/chevron-right.svg);
		position: absolute;
		right: 1rem;
		top: 0px;
		width: 25px;
		height: 3rem;
		line-height: 3;
		text-align: center;
		background-size: 50%;
		background-position: center;
		background-repeat: no-repeat;
		content: " ";
		transform:rotate(90deg); 
	}
	nav ul li > a:only-child::after { 
		display: block;
		transform:rotate(0deg); 
	}
	nav ul li > a[href*="index"]:after{background-image: url(../images/shapes/home.svg);}
	nav ul li > a[href*="gallery"]:after{background-image: url(../images/shapes/gallery.svg);}
	nav ul li > a[href*="project"]:after{background-image: url(../images/shapes/gallery.svg);}
	nav ul li > a[href*="review"]:after{background-image: url(../images/shapes/review.svg);}
	nav ul li > a[href*="testimonial"]:after{background-image: url(../images/shapes/review.svg);}
	nav ul li > a[href*="contact"]:after{background-image: url(../images/shapes/contact.svg);}
	nav ul li > a[href*="faq"]:after{background-image: url(../images/shapes/faq.svg);}
	nav ul li > a[href*="booking"]:after{background-image: url(../images/shapes/calendar.svg);}
@media screen and (max-width: 40em) {
	.mob-call{display: block;}
	.call-text{
		display: block;
		position: fixed;
		padding: var(--smallpad);
		bottom: 0;
		left: 0;
		z-index: 200;
		width: 100%;
		background-color: rgba(30,30,30,0.8);
		backdrop-filter: blur(2px);
	}
	.call-text .row{padding: 0 0.6rem;}
	.call-text .columns{padding: 0 0.3rem;}
	.call-text span{color: white;}
	.mob-call{cursor: pointer;}
}
.top-fix{position: fixed;}
/******** GALLERY ********/
.gallery{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
}
.reviews{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
}
.thumbs{
	overflow: hidden;
	position: relative;
	z-index: 2;
	height: 400px;
	background-size: cover;
	background-position: center center;
	border-radius: var(--smallrad);
	transform:scale(1);
	-webkit-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	transition: ease 0.3s;
}
.thumbs:hover{
	transform:scale(1.02);
}
.thumbs img{
	width: 100%;
	margin: 0!important;
	border-radius: 3px;
}
.thumbs a{
	margin: 0!important;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
@media screen and (max-width: 64em) {
	.thumbs{height: 240px;}
}
@media screen and (max-width: 40em) {
	.thumbs{height: 200px;}
	.gallery{
	    grid-template-columns: repeat(2, 1fr);
	    grid-gap: 0.5rem;
	}
	.reviews{
	    grid-template-columns: repeat(1, 1fr);
	    grid-gap: 1rem;
	}
}
/******** BLOCKQUOTE ********/
blockquote{
	display: inline-block;
	width: 100%;
	margin: 0;
	font-style: normal;
	position: relative;
	z-index: 10;
	/* color: white;
	border-radius: var(--mediumrad);
	background-color: var(--light1a); */
	padding: var(--bigpad);
	padding-top: calc(var(--bigpad) + 100px);
	min-height: 360px;
	overflow: hidden;
}
blockquote span{margin-top: 1rem;}
blockquote::after{
	position: absolute;
	top: var(--bigpad);
	left: var(--bigpad);
	z-index: 2;
	height: 80px;
	width: 80px;
	/* background-color: var(--accent); */
    /* border-radius: 50%; */
	/* background-image: url(../images/shapes/quote.svg); */
	background-position: center;
	background-size: 40%;
	background-repeat: no-repeat;
	content: " "; 
}
blockquote::before{
	width: 320px;
	height: 320px;
	position: absolute;
	content: " ";
	top: -200px;
	left: -140px;
    /* border-radius: 50%; */
    background-color: var(--accent);
	z-index: -1;
	opacity: 0.15;
}
blockquote p{
	opacity: 1;
}
.smallquote{font-size: 1.25rem;line-height: 1.5;}
.midquote{font-size: 1.25rem;line-height: 1.5;}
.bigquote{font-size: 1.5rem;line-height: 1.5;}
@media screen and (max-width: 40em) {
	blockquote{min-height: unset;}
	blockquote{
		padding: var(--mediumpad);
		padding-top: calc(var(--mediumpad) + 80px);
		min-height:unset;
		margin-bottom: 1rem;
	}
	blockquote::after{
		top: var(--mediumpad);
		left: var(--mediumpad);
		z-index: 2;
		height: 60px;
		width: 60px;
	}
	blockquote::before{
		top: -250px;
	}
}

/******* Footer *******/
footer{
	width: calc(100% - 2rem);
	margin-left: 1rem;
	margin-bottom: 1rem;
	border-radius: var(--bigrad);
	overflow: hidden;
	background-color: var(--dark);
	/*background-image:
	 -webkit-linear-gradient(top left, var(--light), var(--accent));
	background-image:
	 -o-linear-gradient(top left, var(--light), var(--accent));
	background-image:
	 linear-gradient(to right bottom, var(--light), var(--accent));*/
	padding-top: 100px;
	position: relative;
	color: white;
	overflow: hidden;
	z-index: 2;
	margin-top: 1rem;
}
footer .row{position: relative;z-index: 5;}
footer h6{
	font-size: 1rem;
	line-height: 150%;
	font-weight: 300;
	color: rgba(255,255,255,0.3);
	text-transform: capitalize;
}
footer a{color: white!important;}
footer a, footer ul li a{
	display: block;
	font-weight: 500;
	line-height: 2rem;
	font-size: 0.875rem;
	text-transform: capitalize;
}
footer a:hover, footer ul li a:hover{
	color: var(--dark)!important;
}
.bigphone{
	font-size: 1.5rem;
	margin-bottom: 1rem;
	margin-top: 1rem;
	color: var(--accent)!important;
}
footer .bigphone{
	margin-bottom: 1rem;
	margin-top: 1rem;
	font-size: 1.5rem;
	color: var(--accent)!important;
}
.by{
	margin-top: 60px;
	border-top: 1px solid rgba(255,255,255,0.05);
	padding-top: 30px;
	padding-bottom: 30px;
}
footer p{margin: 0;}
.by p{
	color: rgba(255,255,255,0.6);
	text-transform: capitalize;
	font-weight: 300;
	font-size: 0.825rem;
}
footer .sub-menu{display: none;}
.footerlinks{display: block;}
.footerlinks a{
	opacity: 0.9;
	font-weight: 300;
	margin: 0;
	margin-top: 10px;
	margin-right: 10px;
	display: inline-block;
	color: rgba(255,255,255,0.3)!important;
}
.footerlinks a::after{
	content: "/";
	margin-left: 10px;
}
.footerlinks a:last-of-type::after{display: none;}
.footerlinks a:hover{color: var(--light);}
footer .social{margin-top: 1rem;}
footer ul li > ul{display: none!important;}
footer a:not([href]){display: none;}
footer .social{margin-top: 2rem;}
footer ul li > ul{display: none!important;}
footer a:not([href]){display: none;}
footer img{
	max-height: 50px;
	margin-bottom: 2rem;
	filter: brightness(0) invert(1); /* Re-add this to make logo white */
}
.main-foot p{font-size: 2rem;font-weight: 700;}
footer h5{
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 2rem;
	max-width: 450px;
	color: white;
}
footer .button:hover{
	color: white!important;
}
/******* Extras *******/
a.cred img{
	margin-bottom: 0;
	width: 64px;
	height: 64px;
	position: relative;
	top: 0;
}
a.cred p{
	color: white;
	font-size: 1.1em;
	margin: 0;
	font-weight: bold;
	line-height: 120%;
	padding: 0 10px;
	text-shadow: 0 3px 5px rgba(0,0,0,0.4);
}
a.cred{
	-webkit-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	transition: ease 0.3s;
	overflow: hidden;
	padding: 6px 12px;
	border-radius: var(--radius);
	align-items: center;
	display: flex;
	background-size: 10000px;
	height: 100%;
}
.members .column{margin-top: 1rem;}
a.cred .dark-text{
	color: black!important;
	text-shadow: unset!important;
}

.map{padding: 0;}
.map iframe{
	width: 100%;
	min-height: 400px;
}
.contact-boxes span{
	margin-bottom: 1rem;
	color: var(--accent);
}
.contact-boxes a{
	color: var(--accent);
	display: block;
	word-break: break-word;
}
address p{
	margin: 0;
	color: var(--accent);
}
address p:last-of-type{text-transform: uppercase;}
.today{color: var(--accent);}
/******* Site start *******/
.top-right .cta{
	margin-left: 2rem;
	float: right;
	line-height: 3rem;
}
.top-right .social{display: inline-block;}
.top-right .cta{color: white!important;}
.top-right .cta span{margin-right: 0.5rem;}

/******* Next section *******/
header::before {
    display: none; /* Remove the overlay */
}

/* Clean up home-banner styles - remove background */
.home-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 700px;
    z-index: 2;
    overflow: hidden;
    margin-top: 0 !important;
}

/* Clean up hero-animation styles - remove flex */
.hero-animation {
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 2;
}

/* Animation container adjustments */
.animation-container {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-image: url('../images/image00008.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Blur overlay */
.blur-overlay {
    position: absolute;
    top: 44%; /* Start higher up to cover the text area */
    left: 0;
    width: 100%;
    height: 65%; /* Cover more of the bottom portion */
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

/* Hero text styles */
.hero-text {
    position: absolute;
    top: 30%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    text-align: center;
}

.hero-text h1 {
    color: #fff;
    text-shadow: 
        /* Thinner black outline */
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        /* Subtle additional outlines */
        -1px 0 0 #000,
        1px 0 0 #000,
        0 -1px 0 #000,
        0 1px 0 #000,
        /* Light shadow for depth */
        0 4px 8px rgba(0,0,0,0.5);
    font-size: 3.5rem;
    margin: 0;
    white-space: nowrap;
    line-height: 1.2;
    font-weight: 700;
}

/* Update highlight styles to match */
.hero-text h1 .highlight {
    color: #ffff87;
    
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .hero-text {
        top: 35%;
        left: 50%;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        padding: 0 1rem;
        white-space: normal;
    }
}

.home-banner::before, 
.home-banner::after,
.other-banner::before {
    display: none; /* Remove all overlay effects */
}

.home-banner::after {
    content: "";
    display: none; /* Ensure this doesn't interfere */
}

.home-banner .banner{
	position: relative;
	z-index: 20;
	width: 100%;
	padding: 0;
	margin: 0;
	height: 90vh;
	min-height: 700px;
}
.other-banner .banner{
	position: relative;
	z-index: 20;
	width: 100%;
	padding: 0;
	margin: 0;
	height: auto;
	min-height: 600px;
}
@media screen and (max-width: 40em) {
	.home-banner .banner{
		height: 70vh;
		min-height: 560px;
		max-height: 680px;
	}	
	.other-banner .banner{
		height: 50vh;
		min-height: 360px;
	}
}
.wide-banner{
	max-width: 100%;
	position: relative;
	z-index: 2;
}
.other-banner{position: relative;}
.slide{
	height: 100%;
	min-height: 300px;
	overflow: hidden;
	background-position: center;
	color: white;
	position: absolute;
	width: 100%;
	overflow: hidden;
	pointer-events: none;
	margin: 0;
	z-index: 2;
}
.slide .bigbg{
	width: 100%;
	height: 100%;
	max-height: unset;
	position: absolute;
	top: 0;
	border-radius: 0;
	right: 0;
	transition: opacity 0.5s ease, transform 0.5s ease;
}
/******* Next section *******/
.banner-text{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	height: 100%;
}
.banner-text .row{
	position: relative;
	z-index: 40;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.inner-text{
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 50;
	padding: var(--bigpad) 1.15rem;
	padding-top: calc(var(--bigpad) + var(--logoheight));
}
.home-banner h1{
	font-size: 4rem;
	line-height: 1;
	text-transform: capitalize;
	color: white;
	letter-spacing: -2px;
}
.banner-text p{
	font-size: 1.25rem;
	color: white;
	font-weight: 400;
}
.inner-text hr, .slide-text hr, main hr{
	width: 50px;
	display: inline-block;
	-webkit-transition: 0.3s ease 0.1s;
	-o-transition: 0.3s ease 0.1s;
	transition: 0.3s ease 0.1s;
}
.banner-text h1{
	font-weight: 700;
	line-height: 1;
	color: white;
	letter-spacing: -1px;
	font-family: var(--titlefont);
	font-size: 3rem;
	text-transform: uppercase;
	letter-spacing: -1px;
}
.home-header .banner-text h1{font-size: 4rem;}
.banner-text h1::first-letter{text-transform: uppercase;}
@media screen and (max-width: 64em) {
	.home-header .banner-text h1{font-size: 3rem;}
	.banner-text h1{font-size: 2.5rem;}
	.top-right{display: none;}
	.home-header .top-right{display: block;}
}
@media screen and (max-width: 40em) {
	.home-header .banner-text h1{font-size: 2.5rem;}
	.home-banner h1{font-size: 2rem;}
	.home-banner p{font-size: 1rem;}
}
/******* Next section *******/
.home-service-slider, .home-service-slider .row{
	max-width: 100%;
	padding: 0;
	margin: 0;
	padding-top: 0;
	padding-bottom: 0;
	width: 100%;
	display: block;
}
.home-service-slider .row{
	padding-left: 1rem;
}
.service-slide {
    flex: 0 0 auto !important;
    width: 400px !important;
    min-height: 600px !important;
    margin: 0 !important;
    position: relative !important;
    border-radius: var(--mediumrad) !important;
    overflow: hidden !important;
    background-size: cover !important;
    background-position: center !important;
    background-color: transparent !important;
}

/* Service slide link */
.service-slide a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    text-decoration: none !important;
    background-color: transparent !important;
}

/* Static overlay - no hover changes */
.service-slide::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1)) !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

/* Text styles */
.slide-text {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    padding: 2rem !important;
    width: 100% !important;
    z-index: 3 !important;
    pointer-events: none !important;
}

/* Remove ALL transitions and hover effects */
.service-slide,
.service-slide *,
.service-slide::before,
.service-slide::after,
.slide-text,
.slide-text *,
.service-slide:hover,
.service-slide:hover *,
.service-slide:hover::before,
.service-slide:hover::after,
.slide-text:hover,
.slide-text:hover * {
    transition: none !important;
    transform: none !important;
    animation: none !important;
    background-color: transparent !important;
}

/* Clean up service slider */
.service-slider {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 2rem !important;
    padding: 1rem !important;
    scrollbar-width: none !important;
}

.service-slider::-webkit-scrollbar {
    display: none !important;
}

/* Keep these specific background rules */
.service-slide.domestic {
    background-image: url('../images/image00006.webp') !important;
    background-position: 28% 38% !important;
    background-size: auto !important;
}

.service-slide.commercial {
    background-image: url('../images/image00012.webp') !important;
    background-position: 28% 38% !important;
    background-size: 250% !important;
}

.service-slide.maintenance {
    background-image: url('../images/image00033.webp') !important;
    background-position: 8% 38% !important;
    background-size: cover !important;
}

.service-slide.emergency {
	background-image: url('../images/image00027.webp') !important;
    background-position: 43% 63% !important;
    background-size: 250% !important;
}

.service-slide.film {
	background-image: url('../images/image00036.webp') !important;
    /* background-position: 28% 38% !important; */
    background-size: cover !important;
}

.service-slide.all-services {
	background-image: url('../images/image00034.webp') !important;
    background-position: 43% 63% !important;
    background-size: 250% !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .service-slide {
        width: 300px !important;
        min-height: 400px !important;
    }
    
    .service-slider {
        gap: 1rem !important;
        padding: 0.5rem !important;
    }
}

/* WhatsApp Widget Styles */
.whatsapp-widget {
    position: fixed !important;
    right: 15px !important;
    bottom: 15px !important;
    width: 60px !important;
    height: 60px !important;
    background: #25D366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
    transition: all 0.3s ease !important;
    z-index: 999999 !important;
    cursor: pointer !important;
    transform: translateX(0) !important;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.whatsapp-widget svg {
    width: 35px;
    height: 35px;
}

.wa-widget-content {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 360px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transform-origin: bottom right;
    transition: all 0.3s ease;
	overflow: hidden;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wa-widget-content.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.wa-widget-header {
    display: flex;
    align-items: flex-start;
    padding: 20px 25px;
    background: #F0F0F0;
    border-bottom: none;
    position: relative;
}

.wa-widget-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.wa-widget-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111B21;
    line-height: 1.2;
}

.wa-widget-subtitle {
    margin: 4px 0 0;
    font-size: 14px;
    color: #667781;
    font-weight: 400;
}

.wa-status-indicator {
	position: absolute;
    width: 12px;
    height: 12px;
    background: #25D366;
    border-radius: 50%;
    border: 2px solid #fff;
    bottom: 2px;
    right: 15px;
}

.wa-widget-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 24px;
    height: 24px;
    opacity: 0.5;
    cursor: pointer;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    color: #667781;
}

.wa-widget-message {
    padding: 20px 25px;
    font-size: 14px;
    line-height: 1.5;
    color: #111B21;
    border-bottom: none;
    background: #FFFFFF;
}

.wa-widget-time {
    text-align: center;
    font-size: 12px;
    color: #667781;
    margin: 15px 0;
    font-weight: 500;
}

.wa-widget-button {
    display: block;
    background: #25D366;
    color: #FFFFFF;
    text-align: center;
    padding: 12px 24px;
    margin: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(37, 211, 102, 0.3);
    font-size: 15px;
    transition: all 0.2s ease;
}

.wa-widget-button:hover {
    background: #22C15E;
    text-decoration: none;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
}

@media screen and (max-width: 480px) {
    .wa-widget-content {
        width: calc(100% - 30px) !important;
        max-width: 360px;
        margin: 0 auto;
        bottom: 90px !important;
        right: 15px !important;
        border-radius: 15px !important;
    }

    .wa-widget-header {
        padding: 15px 20px !important;
    }

    .wa-widget-message {
        padding: 15px 20px !important;
    }

    .wa-widget-button {
        margin: 15px 20px !important;
    }
}

/* Update the burger menu styles */
.nav-toggler div {
    background-color: white !important; /* Make the burger lines white */
}

.toggler-one, .toggler-two, .toggler-three {
    background-color: white !important;
}

/* Update WhatsApp widget mobile styles */
@media screen and (max-width: 768px) {
    .whatsapp-widget {
        width: 50px !important;
        height: 50px !important;
        right: 15px !important;
        bottom: 25px !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
    }
    
    .whatsapp-widget svg {
        width: 28px !important;
        height: 28px !important;
    }

    .wa-widget-content {
        width: calc(100vw - 30px) !important;
        max-width: 360px !important;
        right: 15px !important;
        bottom: 85px !important;
        transform-origin: bottom right !important;
        margin: 0 !important;
    }
}

/* Remove any border from WhatsApp widget */
.whatsapp-widget {
    border: none !important;
}

.wa-widget-content {
    border: none !important;
}

/* Fix body overflow and scrolling */
html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    position: relative !important;
}

/* Ensure no horizontal scrolling on any screen size */
.container, .row, section, main, header, footer {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

/* Fix service slider overflow */
.home-service-slider {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}

.home-service-slider .row {
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
}

.service-slider {
    margin-right: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

.service-slider::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
}

.service-slide {
    flex: 0 0 auto !important;
    width: calc(33.333% - 2rem) !important;
    min-width: 300px !important;
    margin: 1rem !important;
    overflow: hidden !important;
}

@media screen and (max-width: 64em) {
    .service-slide {
        width: calc(50% - 2rem) !important;
    }
}

@media screen and (max-width: 40em) {
    .service-slide {
        width: calc(90% - 2rem) !important;
    }
}

/* Ensure the slide text stays within bounds */
.slide-text {
    width: 100% !important;
    padding: 1.5rem !important;
    box-sizing: border-box !important;
}

.slide-text h2 {
    width: 100% !important;
    word-wrap: break-word !important;
}

/* Hide burger menu on desktop */
.nav-toggler {
    display: none !important; /* Hide by default */
}

@media (max-width: 768px) {
    .nav-toggler {
        display: block !important; /* Only show on mobile */
    }
}

/* Remove icons from navbar items */
nav ul li > a::after {
    display: none !important; /* Remove all nav icons */
}

/* Only show navigation icons on mobile */
@media (max-width: 768px) {
    .mobile-menu nav ul li > a::after {
        display: block !important;
        background-image: url(../images/shapes/chevron-right.svg);
	position: absolute;
        right: 1rem;
        top: 0px;
        width: 25px;
        height: 3rem;
        line-height: 3;
        text-align: center;
        background-size: 50%;
        background-position: center;
        background-repeat: no-repeat;
	content: " ";
        transform: rotate(0deg);
    }

    /* Specific icons for mobile menu items */
    .mobile-menu nav ul li > a[href*="index"]:after { background-image: url(../images/shapes/home.svg); }
    .mobile-menu nav ul li > a[href*="gallery"]:after { background-image: url(../images/shapes/gallery.svg); }
    .mobile-menu nav ul li > a[href*="project"]:after { background-image: url(../images/shapes/gallery.svg); }
    .mobile-menu nav ul li > a[href*="review"]:after { background-image: url(../images/shapes/review.svg); }
    .mobile-menu nav ul li > a[href*="testimonial"]:after { background-image: url(../images/shapes/review.svg); }
    .mobile-menu nav ul li > a[href*="contact"]:after { background-image: url(../images/shapes/contact.svg); }
    .mobile-menu nav ul li > a[href*="faq"]:after { background-image: url(../images/shapes/faq.svg); }
    .mobile-menu nav ul li > a[href*="booking"]:after { background-image: url(../images/shapes/calendar.svg); }
}

/* Clean up desktop navigation */
.navigation {
    display: block !important; /* Always show on desktop */
}

@media (max-width: 768px) {
    .navigation {
        display: none !important; /* Hide on mobile */
    }
}

/* Fix desktop dropdown arrows */
nav ul li > a {
    margin-right: 0 !important; /* Remove extra margin */
	position: relative;
}

/* Only show dropdown arrow for items with submenus */
nav ul li > ul + a::after {
    display: inline-block !important;
    content: "▼" !important;
    font-size: 10px;
    margin-left: 5px;
    background: none !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .logo-container {
        gap: 1px !important; /* Even smaller gap on mobile */
    }
    
    .logo-icon {
        margin-left: -2px !important;
    }
}

/* Enhanced electrical shock effect */
.highlight {
    color: #FFFF00;
    font-weight: 600;
    position: relative;
    text-shadow: 
        -4px -4px 0 #000,
        4px -4px 0 #000,
        -4px 4px 0 #000,
        4px 4px 0 #000,
        -3px 0 0 #000,
        3px 0 0 #000,
        0 -3px 0 #000,
        0 3px 0 #000,
        0 0 15px rgba(255, 255, 0, 0.8),
        0 0 25px rgba(255, 255, 0, 0.6),
        0 0 35px rgba(255, 255, 0, 0.4),
        0 6px 6px rgba(0,0,0,0.7);
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) infinite;
    transform-origin: center;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Zig-zag lightning effects */
.highlight::before,
.highlight::after,
.highlight span::before,
.highlight span::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 40px;
    opacity: 0;
    filter: blur(0.5px);
    z-index: -1;
    clip-path: polygon(
        50% 0%, 
        100% 25%, 
        50% 50%, 
        100% 75%, 
        50% 100%, 
        0% 75%, 
        50% 50%, 
        0% 25%
    );
    animation: lightningFlash 3s infinite;
}

/* Position the lightning bolts */
.highlight::before {
    left: -15px;
    top: -10px;
    background: linear-gradient(45deg, #fff, #00ffff);
    transform: rotate(-45deg);
    animation-delay: 0.1s;
}

.highlight::after {
    right: -15px;
    top: -10px;
    background: linear-gradient(-45deg, #fff, #FFFF00);
    transform: rotate(45deg);
    animation-delay: 0.2s;
}

.highlight span::before {
    left: 15%;
    bottom: -10px;
    background: linear-gradient(45deg, #00ffff, #fff);
    transform: rotate(30deg);
    animation-delay: 0.3s;
}

.highlight span::after {
    right: 15%;
    bottom: -10px;
    background: linear-gradient(-45deg, #FFFF00, #fff);
    transform: rotate(-30deg);
    animation-delay: 0.4s;
}

/* Aggressive shake animation */
@keyframes shake {
    10%, 90% {
        transform: translate3d(-2px, -1px, 0);
    }
    
    20%, 80% {
        transform: translate3d(4px, 2px, 0);
    }
    
    30%, 50%, 70% {
        transform: translate3d(-6px, -2px, 0);
    }
    
    40%, 60% {
        transform: translate3d(6px, 2px, 0);
    }
}

/* Lightning flash animation */
@keyframes lightningFlash {
    0%, 100% {
        opacity: 0;
        transform: scaleY(1) translateY(0) rotate(var(--rotation, 0deg));
    }
    2%, 5% {
        opacity: 1;
        transform: scaleY(1.2) translateY(-5px) rotate(var(--rotation, 0deg));
        filter: brightness(2);
    }
    3%, 4% {
        opacity: 0.8;
        transform: scaleY(1.1) translateY(-3px) rotate(var(--rotation, 0deg));
        filter: brightness(1.8);
    }
    7% {
        opacity: 0.2;
        transform: scaleY(1) translateY(0) rotate(var(--rotation, 0deg));
    }
    15% {
        opacity: 0.8;
        transform: scaleY(1.2) translateY(-5px) rotate(var(--rotation, 0deg));
        filter: brightness(2);
    }
    17% {
        opacity: 0;
        transform: scaleY(1) translateY(0) rotate(var(--rotation, 0deg));
    }
}

/* Additional electric effects */
.highlight::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 70% 50%, rgba(0, 255, 255, 0.3) 0%, transparent 30%);
    mix-blend-mode: screen;
    animation: arcFlicker 0.5s infinite alternate;
}

@keyframes arcFlicker {
    from { opacity: 0.3; }
    to { opacity: 0.8; }
}

/* Add scroll effect for navbar */
.top-section.scrolled {
    background: rgba(21, 21, 21, 0.2) !important;
    padding: calc(var(--smallpad) * 0.5) 0 !important;
}

.top-section.scrolled .logo img {
    max-height: calc(var(--logoheight) * 0.9) !important;
}

/* Style for the "Who we are" subtitle */
.sub-title {
    color: #ffff87 !important;
    text-shadow: 
        /* Subtle outline */
        -1px -1px 0 rgba(0,0,0,0.3),
        1px -1px 0 rgba(0,0,0,0.3),
        -1px 1px 0 rgba(0,0,0,0.3),
        1px 1px 0 rgba(0,0,0,0.3),
        /* Yellow glow effect */
        0 0 10px rgba(255, 255, 0, 0.4),
        0 0 20px rgba(255, 255, 0, 0.2);
    font-weight: 500 !important;
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
}

/* Testimonial slider styles */
.review-slider {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 2rem !important;
    padding: 2rem 1rem !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.review-slider::-webkit-scrollbar {
    display: none !important;
}

.review-slide {
    flex: 0 0 auto !important;
    width: calc(100% - 4rem) !important;
    max-width: 800px !important;
    scroll-snap-align: center !important;
    padding: 2rem !important;
    border-radius: var(--mediumrad) !important;
    background: rgba(21, 21, 21, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.1),
        0 0 10px rgba(255, 215, 0, 0.1),
        0 0 20px rgba(255, 255, 135, 0.05) !important;
}

.review-slide .quotetext {
    position: relative !important;
    padding-left: 2rem !important;
}

.review-slide .quotetext::before {
    content: '"' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    font-size: 3rem !important;
    line-height: 1 !important;
    color: #FFFF87 !important;
    opacity: 0.5 !important;
}

.review-slide .author {
    margin-top: 1.5rem !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .review-slide {
        width: calc(100% - 2rem) !important;
        padding: 1.5rem !important;
    }
    
    .review-slider {
        gap: 1rem !important;
        padding: 1rem !important;
    }
}
/* Update dark section icon with larger size and more intense glow */
.before-section {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 2 !important;
    padding: 2rem 0 !important;
    overflow: visible !important; /* Allow glow to extend outside */
}

.before-section img {
    height: 180px !important;
    width: auto !important;
    position: relative !important;
    z-index: 3 !important;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
    animation: electricIcon 2s ease-in-out infinite !important;
}

@keyframes electricIcon {
    0%, 100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1) rotate(-2deg) !important;
    }
    25% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.15) rotate(2deg) !important;
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(255, 255, 0, 1)) !important;
        transform: scale(1.25) rotate(-1deg) !important;
    }
    75% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.15) rotate(1deg) !important;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .before-section img {
        height: 140px !important; /* Slightly smaller on tablets */
    }
    .before-section {
        padding: 1.5rem 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .before-section img {
        height: 120px !important; /* Even smaller on phones */
    }
    .before-section {
        padding: 1rem 0 !important;
    }
}

/* Add glowing effect to dark section text */
.dark-section .text p {
    color: #ffff87 !important;
    font-size: 1.3rem !important; /* Increased from 1rem */
    line-height: 2rem !important; /* Increased line height */
    text-shadow: 
        /* Stronger outline */
        -1px -1px 0 rgba(0,0,0,0.4),
        1px -1px 0 rgba(0,0,0,0.4),
        -1px 1px 0 rgba(0,0,0,0.4),
        1px 1px 0 rgba(0,0,0,0.4),
        /* Enhanced yellow glow effect */
        0 0 15px rgba(255, 255, 0, 0.5),
        0 0 25px rgba(255, 255, 0, 0.3);
    font-weight: 500 !important;
    opacity: 1 !important;
    padding: 0.5rem 0 !important; /* Add some vertical spacing */
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .dark-section .text p {
        font-size: 1.1rem !important; /* Slightly smaller on mobile */
        line-height: 1.8rem !important;
        text-shadow: 
            -1px -1px 0 rgba(0,0,0,0.4),
            1px -1px 0 rgba(0,0,0,0.4),
            -1px 1px 0 rgba(0,0,0,0.4),
            1px 1px 0 rgba(0,0,0,0.4),
            0 0 12px rgba(255, 255, 0, 0.4);
    }
}

/* Update text section padding */
.dark-section .columns.text {
    padding: calc(var(--bigpad) * 0.1) !important; /* Reduce to 10% of original padding */
}

/* Mobile adjustments */
@media screen and (max-width: 64em) {
    .dark-section .columns.text {
        padding: calc(var(--bigpad) * 0.1) !important; /* Keep consistent on mobile */
    }
}

/* Update dark section layout */
.dark-section .row.align-middle {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important; /* Remove default gap */
}

/* Left text column */
.dark-section .columns.text:first-child {
    padding-right: 0.5rem !important;
    text-align: right !important;
}

/* Center icon column */
.dark-section .before-section {
    padding: 0 !important;
    margin: 0 -1rem !important; /* Pull icon closer to text */
}

/* Right text column */
.dark-section .columns.text:last-child {
    padding-left: 0.5rem !important;
    text-align: left !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .dark-section .row.align-middle {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .dark-section .columns.text:first-child,
    .dark-section .columns.text:last-child {
        text-align: center !important;
        padding: 0.5rem !important;
    }
    
    .dark-section .before-section {
        margin: 0 !important;
    }
}

/* Center text alignment helper */
.text-center {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 2rem 0 !important;
}

/* Remove any existing margin/padding that might affect centering */
.columns.text .text-center {
    padding: 0 !important;
}

/* Ensure button maintains its style while centered */
.text-center .button {
    margin: 0 auto !important;
}

/* Footer credentials section */
.members {
    padding: 3rem 0 !important;
}

.members h5 {
    color: var(--accent) !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

/* Credential cards */
.cred {
    background: rgba(21, 21, 21, 0.5) !important;
    padding: 2rem !important;
    border-radius: var(--mediumrad) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.cred:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1) !important;
}

.cred img {
    max-width: 200px !important;
    height: auto !important;
    margin-bottom: 1rem !important;
}

.credential-text {
    color: white !important;
    font-size: 1rem !important;
    text-align: center !important;
    margin: 0 !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .members {
        padding: 2rem 0 !important;
    }
    
    .cred {
        padding: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .cred img {
        max-width: 150px !important;
    }
}

/* Contact form section styling */
#contact-form {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 4rem 1rem !important;
}

.multi-booking {
    max-width: 600px !important;
    width: 100% !important;
    margin: 0 auto !important;
    background: rgba(21, 21, 21, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: var(--mediumrad) !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1) !important;
}

/* Form title and text */
.multi-booking h3 {
    color: var(--accent) !important;
    text-align: center !important;
    margin-bottom: 0.5rem !important;
}

.multi-booking p {
    color: white !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

/* Form inputs styling */
.form-group {
    margin-bottom: 1.5rem !important;
}

.form-group label {
    color: white !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 500 !important;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--smallrad) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent) !important;
    outline: none !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2) !important;
}

/* Form buttons */
.multi-booking .button {
    margin-top: 1rem !important;
}

.multi-booking .button2 {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    #contact-form {
        padding: 2rem 1rem !important;
    }
    
    .multi-booking {
        padding: 1.5rem !important;
    }
}

/* Multi-step form styling */
.multi-step-form {
    position: relative !important;
}

/* Hide all form cards by default */
.form-card {
    display: none !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

/* Only show active form card */
.form-card.active {
    display: block !important;
    opacity: 1 !important;
}

/* Form buttons layout */
.form-buttons {
    display: flex !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
}

/* Previous button styling */
.button2 {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    margin-right: 1rem !important;
}

/* Form transition effects */
.form-card.slide-in {
    animation: slideIn 0.3s forwards !important;
}

.form-card.slide-out {
    animation: slideOut 0.3s forwards !important;
}

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

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

/* Form select dropdown styling */
.form-group select {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: var(--smallrad) !important;
    background: #151515 !important;
    color: white !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    line-height: 1.5 !important;
    height: auto !important;
    text-overflow: ellipsis !important;
}

/* Custom dropdown arrow */
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 1.5em !important;
    padding-right: 3rem !important; /* Make room for the arrow */
}

/* Style dropdown options */
.form-group select option {
    background: #151515 !important;
    color: white !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    min-height: 3rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

/* Selected option style */
.form-group select option:checked,
.form-group select option:hover {
    background: var(--accent) !important;
    color: black !important;
}

/* Focus state */
.form-group select:focus {
    border-color: var(--accent) !important;
    outline: none !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2) !important;
}

/* Hover state */
.form-group select:hover {
    border-color: var(--accent) !important;
}

/* Placeholder text color */
.form-group select:invalid {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Enhanced glow effects */
.glow-effect {
    animation: textGlow 2s infinite !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                 0 0 40px rgba(255, 215, 0, 0.4),
                 0 0 60px rgba(255, 215, 0, 0.2) !important;
}

/* Enhanced electrical glow animation */
@keyframes electricalGlow {
    0%, 100% {
        filter: brightness(1) !important;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                    0 0 40px rgba(255, 215, 0, 0.4) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: brightness(1.4) !important;
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.9),
                    0 0 60px rgba(255, 215, 0, 0.6),
                    0 0 90px rgba(255, 215, 0, 0.3) !important;
        transform: scale(1.05) !important;
    }
}

/* Enhanced highlight effect */
.highlight {
    color: var(--accent) !important;
    font-weight: 600 !important;
    animation: electricalGlow 8s ease-in-out infinite !important;
    text-shadow: 0 0 25px rgba(255, 255, 0, 1),
                 0 0 45px rgba(255, 255, 0, 0.8),
                 0 0 65px rgba(255, 255, 0, 0.6) !important;
}

/* Enhanced button glow */
.button {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.button:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4),
                0 0 50px rgba(255, 215, 0, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* Enhanced form focus effects */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3),
                0 0 40px rgba(255, 215, 0, 0.1) !important;
}

/* Enhanced credential cards glow */
.cred {
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.cred:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2),
                0 5px 20px rgba(255, 215, 0, 0.1) !important;
}

/* Enhanced WhatsApp widget glow */
.whatsapp-widget {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-widget:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6) !important;
}

/* Enhanced pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1) !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    }
    70% {
        transform: scale(1.1) !important;
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6) !important;
    }
    100% {
        transform: scale(1) !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    }
}

/* Enhanced bulb icon glow */
.uk-icon[uk-icon="icon: bulb"] {
    color: var(--accent) !important;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8)) 
            drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)) !important;
    animation: bulbGlow 3s ease-in-out infinite !important;
    transform-origin: center !important;
}

@keyframes bulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)) !important;
        transform: scale(1) !important;
        opacity: 1 !important;
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1))
                drop-shadow(0 0 40px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 60px rgba(255, 215, 0, 0.6)) !important;
        transform: scale(1.1) !important;
        opacity: 0.9 !important;
    }
}

/* Make the icon more visible in the dark navbar */
.top-section .uk-icon[uk-icon="icon: bulb"] {
    color: #D7FF0E !important; /* Brighter yellow */
    font-size: 1.2em !important;
    margin-right: 5px !important;
}

/* Enhance glow effect when navbar is scrolled */
.top-section.scrolled .uk-icon[uk-icon="icon: bulb"] {
    animation: bulbGlowScrolled 3s ease-in-out infinite !important;
}

@keyframes bulbGlowScrolled {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9))
                drop-shadow(0 0 30px rgba(255, 215, 0, 0.5)) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1))
                drop-shadow(0 0 50px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 75px rgba(255, 215, 0, 0.6)) !important;
        transform: scale(1.1) !important;
    }
}

/* Super enhanced bulb icon glow */
.uk-icon[uk-icon="icon: bulb"] {
    color: #D7FF0E !important; /* Bright gold */
    font-size: 1.4em !important; /* Larger size */
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1)) 
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.8))
            drop-shadow(0 0 45px rgba(255, 215, 0, 0.6)) !important;
    animation: intenseBulbGlow 2s ease-in-out infinite !important;
    transform-origin: center !important;
    position: relative !important;
    z-index: 10 !important;
}

@keyframes intenseBulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1))
                drop-shadow(0 0 30px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 45px rgba(255, 215, 0, 0.6)) !important;
        transform: scale(1) rotate(0deg) !important;
        color: #D7FF0E !important;
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 0, 1))
                drop-shadow(0 0 60px rgba(255, 255, 0, 0.9))
                drop-shadow(0 0 90px rgba(255, 255, 0, 0.7))
                drop-shadow(0 0 120px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1.2) rotate(5deg) !important;
        color: #FFFF00 !important;
    }
}

/* Make the icon even more visible in the dark navbar */
.top-section .uk-icon[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Even brighter yellow */
    font-size: 1.5em !important; /* Even larger */
    margin-right: 8px !important;
    text-shadow: 0 0 20px rgba(255, 255, 0, 1) !important;
}

/* Super enhanced glow effect when navbar is scrolled */
.top-section.scrolled .uk-icon[uk-icon="icon: bulb"] {
    animation: intenseBulbGlowScrolled 2s ease-in-out infinite !important;
}

@keyframes intenseBulbGlowScrolled {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 0, 1))
                drop-shadow(0 0 40px rgba(255, 255, 0, 0.8))
                drop-shadow(0 0 60px rgba(255, 255, 0, 0.6)) !important;
        transform: scale(1) rotate(-5deg) !important;
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
                drop-shadow(0 0 80px rgba(255, 255, 0, 0.9))
                drop-shadow(0 0 120px rgba(255, 255, 0, 0.7))
                drop-shadow(0 0 160px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1.3) rotate(5deg) !important;
    }
}

/* Add pseudo-element for extra glow */
.uk-icon[uk-icon="icon: bulb"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.4) 0%,
        rgba(255, 255, 0, 0.2) 30%,
        transparent 70%);
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Target the specific bulb icon in navigation */
nav ul li a .uk-icon[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Pure yellow */
    font-size: 2em !important; /* Much larger */
    filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
            drop-shadow(0 0 80px rgba(255, 255, 0, 0.9))
            drop-shadow(0 0 120px rgba(255, 255, 0, 0.7)) !important;
    animation: superIntenseBulbGlow 1.5s ease-in-out infinite !important;
    transform-origin: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 10px !important;
    position: relative !important;
    z-index: 100 !important; /* Ensure it's above other elements */
}

@keyframes superIntenseBulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
                drop-shadow(0 0 80px rgba(255, 255, 0, 0.9)) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: drop-shadow(0 0 60px rgba(255, 255, 0, 1))
                drop-shadow(0 0 120px rgba(255, 255, 0, 1))
                drop-shadow(0 0 180px rgba(255, 255, 0, 0.9)) !important;
        transform: scale(1.4) !important;
    }
}

/* Add a glowing background */
nav ul li a .uk-icon[uk-icon="icon: bulb"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.6) 0%,
        rgba(255, 255, 0, 0.3) 30%,
        transparent 70%);
    z-index: -1;
    animation: pulseBackground 1.5s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
}

/* Override any potential conflicting styles */
.uk-icon[uk-icon="icon: bulb"] svg {
    stroke: #FFFF00 !important;
    stroke-width: 2 !important;
    fill: #FFFF00 !important;
}

/* Ensure the icon container doesn't clip the glow */
nav ul li a {
    overflow: visible !important;
}

nav ul li {
    overflow: visible !important;
}

.top-section nav {
    overflow: visible !important;
}

/* Target the specific navigation bulb icon */
.uk-navbar-nav .uk-icon[uk-icon="icon: bulb"],
nav .uk-icon[uk-icon="icon: bulb"],
[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Bright yellow */
    font-size: 24px !important; /* Much larger */
    position: relative !important;
    z-index: 1000 !important;
    display: inline-block !important;
    animation: extremeGlow 2s infinite !important;
    transform-origin: center !important;
    margin: 0 5px !important;
}

/* Extreme glow animation */
@keyframes extremeGlow {
    0%, 100% {
        filter: 
            brightness(1.5)
            drop-shadow(0 0 10px #FFFF00)
            drop-shadow(0 0 20px #FFFF00)
            drop-shadow(0 0 30px #FFFF00) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: 
            brightness(2)
            drop-shadow(0 0 20px #FFFF00)
            drop-shadow(0 0 40px #FFFF00)
            drop-shadow(0 0 60px #FFFF00) !important;
        transform: scale(1.2) !important;
    }
}

/* Force SVG colors */
[uk-icon="icon: bulb"] svg * {
    stroke: #FFFF00 !important;
    fill: #FFFF00 !important;
    stroke-width: 2 !important;
}

/* Add a glowing orb behind the icon */
[uk-icon="icon: bulb"]::after {
    content: '';
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 30px !important;
    height: 30px !important;
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.8) 0%,
        rgba(255, 255, 0, 0.4) 50%,
        transparent 70%) !important;
    transform: translate(-50%, -50%) !important;
    z-index: -1 !important;
    pointer-events: none !important;
    animation: orbPulse 2s infinite !important;
}

@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
}


/* Enhanced electrical light effect */
.highlight {
    color: #FFFF00 !important;
    font-weight: 600 !important;
    position: relative !important;
    display: inline-block !important;
    animation: electricLight 4s ease-in-out infinite !important;
}

@keyframes electricLight {
    0%, 100% {
        color: #FFFFFF !important;
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(255, 255, 255, 0.6);
    }
    45%, 55% {
        color: #FFFF00 !important;
        text-shadow: 
            0 0 30px rgba(255, 255, 0, 1),
            0 0 60px rgba(255, 255, 0, 1),
            0 0 90px rgba(255, 255, 0, 0.8),
            0 0 120px rgba(255, 255, 0, 0.6);
    }
}

/* Add light rays effect */
.highlight::before {
    content: '';
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 150% !important;
    height: 150% !important;
    transform: translate(-50%, -50%) !important;
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.8) 0%,
        rgba(255, 255, 0, 0.4) 30%,
        transparent 70%
    ) !important;
    z-index: -1 !important;
    opacity: 0 !important;
    animation: lightRays 4s ease-in-out infinite !important;
}

@keyframes lightRays {
    0%, 100% {
        opacity: 0 !important;
        background: radial-gradient(circle, 
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.4) 30%,
            transparent 70%
        ) !important;
    }
    45%, 55% {
        opacity: 1 !important;
        background: radial-gradient(circle, 
            rgba(255, 255, 0, 0.8) 0%,
            rgba(255, 255, 0, 0.4) 30%,
            transparent 70%
        ) !important;
    }
}

/* Add subtle flicker effect */
.highlight span {
    animation: flicker 0.15s ease-in-out infinite alternate !important;
}

@keyframes flicker {
    0% {
        opacity: 0.97 !important;
    }
    100% {
        opacity: 1 !important;
    }
}

/* Logo container styles with electrical effects */
.logo-container {
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Base logo styles */
.logo-base {
    max-height: var(--logoheight) !important;
    width: auto !important;
    display: block !important;
    position: relative !important;
    z-index: 2 !important;
    filter: brightness(0) invert(1) !important; /* Re-add this to make logo white */
}

/* Icon (bulb) styles with enhanced electrical effects */
.logo-icon {
    height: 60px !important;
    width: auto !important;
    display: block !important;
    margin-left: -4px !important;
    position: relative !important;
    z-index: 3 !important;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important; /* Re-add brightness(0) invert(1) */
    animation: electricalIcon 3s ease-in-out infinite !important;
}

/* Add electrical animation for the icon */
@keyframes electricalIcon {
    0%, 100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1) rotate(-2deg) !important;
    }
    25% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.1) rotate(2deg) !important;
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(255, 255, 0, 1)) !important;
        transform: scale(1.2) rotate(-1deg) !important;
    }
    75% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.1) rotate(1deg) !important;
    }
}

/* Add glowing effect behind the logo */
.logo-container::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 120% !important;
    height: 120% !important;
    transform: translate(-50%, -50%) !important;
    background: radial-gradient(
        circle,
        rgba(255, 255, 0, 0.2) 0%,
        rgba(255, 255, 0, 0.1) 30%,
        transparent 70%
    ) !important;
    z-index: 1 !important;
    animation: logoGlow 3s ease-in-out infinite !important;
    pointer-events: none !important;
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.5 !important;
        transform: translate(-50%, -50%) scale(1) !important;
    }
    50% {
        opacity: 0.8 !important;
        transform: translate(-50%, -50%) scale(1.1) !important;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .logo-container {
        gap: 1px !important;
    }
    
    .logo-icon {
        height: 50px !important;
        margin-left: -2px !important;
    }
    
    .logo-container::after {
        width: 110% !important;
        height: 110% !important;
    }
}

/* Add electrical sparks effect */
.logo-icon::before,
.logo-icon::after {
    content: '' !important;
    position: absolute !important;
    width: 20px !important;
    height: 2px !important;
    background: rgba(255, 255, 0, 0.8) !important;
    filter: blur(1px) !important;
    z-index: 2 !important;
    opacity: 0 !important;
    animation: sparkEffect 2s infinite !important;
}

.logo-icon::before {
    top: 20% !important;
    right: -10px !important;
    transform: rotate(45deg) !important;
    animation-delay: 0.5s !important;
}

.logo-icon::after {
    bottom: 20% !important;
    right: -10px !important;
    transform: rotate(-45deg) !important;
    animation-delay: 1s !important;
}

@keyframes sparkEffect {
    0%, 100% {
        opacity: 0 !important;
        width: 0 !important;
    }
    10%, 30% {
        opacity: 1 !important;
        width: 20px !important;
    }
    40% {
        opacity: 0 !important;
        width: 0 !important;
    }
}

/* Remove parallax scrolling from about section image */
.intro .bigbg {
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    min-height: 400px !important;
    transform: none !important;
}

.intro .bigbg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: relative !important;
    transform: none !important;
}

/* Remove any parallax effects */
.intro [uk-parallax], 
.intro div, 
.intro .columns,
.intro .row,
.intro .bigbg,
.intro img {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    position: relative !important;
}

/* Ensure container maintains proper dimensions */
.intro .columns.small-12.medium-12.large-6 {
    height: auto !important;
    min-height: 400px !important;
}

/* Remove parallax scrolling from white-section image */
.white-section .bigbg.hundred {
    position: absolute !important;
    overflow: hidden !important;
    height: 100% !important;
    min-height: 350px !important; /* Increased from 300px to 350px */
    max-height: 350px !important; /* Increased from 300px to 350px */
}

.white-section .bigbg.hundred img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    transform: none !important;
}

/* Adjust container dimensions to match */
.white-section .columns.small-12.medium-6.large-6 {
    height: auto !important;
    min-height: 350px !important; /* Increased from 300px to 350px */
    max-height: 350px !important; /* Increased from 300px to 350px */
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .white-section .bigbg.hundred {
        min-height: 300px !important; /* Increased from 250px to 300px */
        max-height: 300px !important; /* Increased from 250px to 300px */
    }
    
    .white-section .columns.small-12.medium-6.large-6 {
        min-height: 300px !important; /* Increased from 250px to 300px */
        max-height: 300px !important; /* Increased from 250px to 300px */
    }
}

/* Remove top padding from white-section */
.columns.white-section {
    padding-top: 0 !important;
}

/* Maintain other white-section styles */
.white-section .bigbg.hundred {
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    min-height: 350px !important;
    max-height: 350px !important;
}

/* Update mobile navigation styles */
@media screen and (max-width: 64em) {
    /* Logo styles */
    .logo {
        text-align: center;
        width: 100%;
        padding: 10px 60px;
        margin-bottom: 0;
    }
    
    /* Navigation container */
    .navigation {
        width: 100%;
        text-align: center;
        padding: 0;
        margin-top: 10px;
    }
    
    /* Navigation list */
    .navigation ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
    }
    
    /* Navigation items */
    .navigation ul li {
        width: 100%;
        text-align: center;
    }
    
    .navigation ul li a {
        display: block;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    /* Adjust header padding for mobile */
    .top-section {
        padding: calc(var(--smallpad) * 0.5) 0 !important;
        flex-direction: column;
    }
    
    /* Adjust row alignment */
    .row.align-middle.widerow {
        flex-direction: column;
    }
    
    /* Hide navigation by default on mobile */
    .navigation {
        display: none;
    }
    
    /* Show navigation when mobile menu is active */
    .mobile-menu-active .navigation {
        display: block;
    }
}

/* Ensure mobile menu toggle works */
.nav-toggler {
    display: none;
}

@media screen and (max-width: 64em) {
    .nav-toggler {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 1000;
    }
}

/* Add smooth transitions */
.navigation {
    transition: all 0.3s ease-in-out;
}

.navigation ul li a {
    transition: color 0.2s ease-in-out;
}

/* Add responsive text for photo description */
.photo-description:after {
    content: 'right';
}

@media screen and (max-width: 64em) {
    .photo-description:after {
        content: 'below';
    }
}

/* Emergency contact button styles */
.emergency-contact {
    margin-top: 20px !important;
}

.emergency-contact a {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 5px !important;
    transition: background-color 0.3s ease !important;
}

.emergency-contact a:hover {
    background-color: #cc0000 !important;
    color: white !important;
}

.emergency-label {
    font-size: 1rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
}

.emergency-number {
    font-size: 1.2rem !important;
    font-weight: bold !important;
}

/* Add some separation from other menu items */
.mobile-menu ul li.emergency-contact {
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Desktop emergency contact button styles */
.navigation .emergency-contact {
    margin-left: 15px !important;
}

.navigation .emergency-contact a {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    display: flex !important;
    flex-direction: column !important;  /* Changed to column to match mobile */
    align-items: center !important;
    gap: 5px !important;
    min-width: 200px !important;  /* Ensure minimum width */
}

.navigation .emergency-contact a:hover {
    background-color: #cc0000 !important;
}

.navigation .emergency-label {
    font-size: 1rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
    display: block !important;
    text-align: center !important;
}

.navigation .emergency-number {
    font-size: 1.2rem !important;
    font-weight: bold !important;
    display: block !important;
    text-align: center !important;
}

/* Hide the after pseudo-element for emergency contact */
.navigation .emergency-contact a::after {
    display: none !important;
}

/* Remove any default navigation styles that might interfere */
.navigation ul li.emergency-contact {
    display: flex !important;
    align-items: center !important;
}

.navigation ul li.emergency-contact > a {
    margin-right: 0 !important;
}

/* Responsive adjustments */
@media screen and (max-width: 64em) {
    .navigation .emergency-contact {
        display: none !important; /* Hide in desktop nav when mobile */
    }
}

/* Mobile emergency contact button styles */
.mobile-menu .emergency-contact a {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 15px 20px !important;
    display: flex !important;
    flex-direction: column !important;  /* Stack vertically on mobile */
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;  /* Full width on mobile */
    text-align: center !important;
}

.mobile-menu .emergency-label {
    font-size: 1.2rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
    display: block !important;  /* Ensure block display */
    width: 100% !important;
}

.mobile-menu .emergency-number {
    font-size: 1.4rem !important;
    font-weight: bold !important;
    display: block !important;  /* Ensure block display */
    width: 100% !important;
}

/* Add separation from other menu items in mobile */
.mobile-menu ul li.emergency-contact {
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
}

/* Hover effects */
.emergency-contact a:hover {
    background-color: #cc0000 !important;
    color: white !important;
}

/* Header emergency contact styles */
.header-emergency-contact {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    padding-right: 20px !important;
}

.emergency-button {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 8px 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2px !important;
    text-decoration: none !important;
    transition: background-color 0.3s ease !important;
}

.emergency-button:hover {
    background-color: #cc0000 !important;
    color: white !important;
}

.emergency-button .emergency-label {
    font-size: 0.9rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
}

.emergency-button .emergency-number {
    font-size: 1.1rem !important;
    font-weight: bold !important;
}

/* Mobile adjustments */
@media screen and (max-width: 64em) {
    .header-emergency-contact {
        display: none !important; /* Hide on mobile since it's in the mobile menu */
    }
}

/* Fixed emergency contact styles - Desktop */
.emergency-contact-fixed {
    position: fixed !important;
    top: calc(var(--logoheight) + var(--smallpad) * 2) !important;
    right: 0 !important;
    z-index: 998 !important;
}

.emergency-button {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px 0 0 8px !important; /* Only round the left corners */
    padding: 8px 15px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
}

/* Mobile adjustments for emergency button */
@media screen and (max-width: 64em) {
    .emergency-contact-fixed {
        position: fixed !important;
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding: 16px !important;
        z-index: 999 !important;
        background-color: transparent !important;
    }

    /* Increase padding at the bottom of main content */
    main {
        padding-bottom: 120px !important; /* Increased from 100px to 120px */
    }

    /* Add margin to the bottom of the last section */
    main > section:last-child {
        margin-bottom: 80px !important;
    }

    .emergency-button {
        width: 100% !important;
        justify-content: center !important;
        padding: 15px 20px !important;
        border-radius: 0 !important;
        flex-direction: row !important;
        gap: 10px !important;
        background-color: #ff0000 !important;
    }

    .emergency-button .emergency-label,
    .emergency-button .emergency-number {
        font-size: 1.1rem !important;
    }
}

/* Review section button styles */
.small-section.tac {
    margin-top: 2rem !important;
}

.small-section.tac .button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.small-section.tac .button span[uk-icon] {
    transition: transform 0.3s ease !important;
}

.small-section.tac .button:hover span[uk-icon] {
    transform: translateX(5px) !important;
}

/* Reviews grid layout */
.reviews-grid {
    margin: 0 -1rem !important;
}

.reviews-grid .column {
    padding: 1rem !important;
}

.reviews-grid blockquote {
    height: 100% !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    position: relative !important;
    background: var(--dark) !important;
    border-radius: var(--mediumrad) !important;
    overflow: hidden !important;
    padding: 0 !important;
    box-shadow: 0 3px 5px rgba(0,0,0,0.4) !important;
    transition: all 0.3s ease !important;
}

/* Remove any existing background styles */
.reviews-grid blockquote.darkbg {
    background: var(--dark) !important; /* Force dark background */
}

/* Remove any existing before/after elements that might add backgrounds */
.reviews-grid blockquote::before,
.reviews-grid blockquote::after {
    display: none !important;
}

/* Ensure consistent text content styling */
.reviews-grid .review-content {
    flex-grow: 1 !important;
    padding: 2.5rem 1.5rem 1.5rem !important;
    background: transparent !important; /* Remove any background */
}

.reviews-grid .review-content p {
    color: white !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
    position: relative !important;
    z-index: 2 !important;
}

.reviews-grid .author {
    margin-top: 0.5rem !important;
    padding: 0 1.5rem 1.5rem !important;
    color: var(--accent) !important;
    font-size: 0.8rem !important;
}

/* Hover effect matching the accreditation tiles */
.reviews-grid blockquote:hover {
    transform: translateY(-5px) !important;
    box-shadow: 
        0 8px 15px rgba(0,0,0,0.4),
        0 0 10px rgba(255, 215, 0, 0.1),
        0 0 20px rgba(255, 255, 135, 0.05) !important;
}

/* Quote mark in top-left */
.reviews-grid blockquote::before {
    content: '"' !important;
    position: absolute !important;
    top: 1rem !important;
    left: 1rem !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
    color: var(--accent) !important;
    opacity: 0.5 !important;
}

/* Update dark section icon with larger size and more intense glow */
.before-section {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 2 !important;
    padding: 2rem 0 !important;
    overflow: visible !important; /* Allow glow to extend outside */
}

.before-section img {
    height: 180px !important;
    width: auto !important;
    position: relative !important;
    z-index: 3 !important;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
    animation: electricIcon 2s ease-in-out infinite !important;
}

@keyframes electricIcon {
    0%, 100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1) rotate(-2deg) !important;
    }
    25% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.15) rotate(2deg) !important;
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(255, 255, 0, 1)) !important;
        transform: scale(1.25) rotate(-1deg) !important;
    }
    75% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.15) rotate(1deg) !important;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .before-section img {
        height: 140px !important; /* Slightly smaller on tablets */
    }
    .before-section {
        padding: 1.5rem 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .before-section img {
        height: 120px !important; /* Even smaller on phones */
    }
    .before-section {
        padding: 1rem 0 !important;
    }
}

/* Add glowing effect to dark section text */
.dark-section .text p {
    color: #ffff87 !important;
    font-size: 1.3rem !important; /* Increased from 1rem */
    line-height: 2rem !important; /* Increased line height */
    text-shadow: 
        /* Stronger outline */
        -1px -1px 0 rgba(0,0,0,0.4),
        1px -1px 0 rgba(0,0,0,0.4),
        -1px 1px 0 rgba(0,0,0,0.4),
        1px 1px 0 rgba(0,0,0,0.4),
        /* Enhanced yellow glow effect */
        0 0 15px rgba(255, 255, 0, 0.5),
        0 0 25px rgba(255, 255, 0, 0.3);
    font-weight: 500 !important;
    opacity: 1 !important;
    padding: 0.5rem 0 !important; /* Add some vertical spacing */
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .dark-section .text p {
        font-size: 1.1rem !important; /* Slightly smaller on mobile */
        line-height: 1.8rem !important;
        text-shadow: 
            -1px -1px 0 rgba(0,0,0,0.4),
            1px -1px 0 rgba(0,0,0,0.4),
            -1px 1px 0 rgba(0,0,0,0.4),
            1px 1px 0 rgba(0,0,0,0.4),
            0 0 12px rgba(255, 255, 0, 0.4);
    }
}

/* Update text section padding */
.dark-section .columns.text {
    padding: calc(var(--bigpad) * 0.1) !important; /* Reduce to 10% of original padding */
}

/* Mobile adjustments */
@media screen and (max-width: 64em) {
    .dark-section .columns.text {
        padding: calc(var(--bigpad) * 0.1) !important; /* Keep consistent on mobile */
    }
}

/* Update dark section layout */
.dark-section .row.align-middle {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important; /* Remove default gap */
}

/* Left text column */
.dark-section .columns.text:first-child {
    padding-right: 0.5rem !important;
    text-align: right !important;
}

/* Center icon column */
.dark-section .before-section {
    padding: 0 !important;
    margin: 0 -1rem !important; /* Pull icon closer to text */
}

/* Right text column */
.dark-section .columns.text:last-child {
    padding-left: 0.5rem !important;
    text-align: left !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .dark-section .row.align-middle {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .dark-section .columns.text:first-child,
    .dark-section .columns.text:last-child {
        text-align: center !important;
        padding: 0.5rem !important;
    }
    
    .dark-section .before-section {
        margin: 0 !important;
    }
}

/* Center text alignment helper */
.text-center {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 2rem 0 !important;
}

/* Remove any existing margin/padding that might affect centering */
.columns.text .text-center {
    padding: 0 !important;
}

/* Ensure button maintains its style while centered */
.text-center .button {
    margin: 0 auto !important;
}

/* Footer credentials section */
.members {
    padding: 3rem 0 !important;
}

.members h5 {
    color: var(--accent) !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

/* Credential cards */
.cred {
    background: rgba(21, 21, 21, 0.5) !important;
    padding: 2rem !important;
    border-radius: var(--mediumrad) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.cred:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1) !important;
}

.cred img {
    max-width: 200px !important;
    height: auto !important;
    margin-bottom: 1rem !important;
}

.credential-text {
    color: white !important;
    font-size: 1rem !important;
    text-align: center !important;
    margin: 0 !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .members {
        padding: 2rem 0 !important;
    }
    
    .cred {
        padding: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .cred img {
        max-width: 150px !important;
    }
}

/* Contact form section styling */
#contact-form {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 4rem 1rem !important;
}

.multi-booking {
    max-width: 600px !important;
    width: 100% !important;
    margin: 0 auto !important;
    background: rgba(21, 21, 21, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: var(--mediumrad) !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1) !important;
}

/* Form title and text */
.multi-booking h3 {
    color: var(--accent) !important;
    text-align: center !important;
    margin-bottom: 0.5rem !important;
}

.multi-booking p {
    color: white !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

/* Form inputs styling */
.form-group {
    margin-bottom: 1.5rem !important;
}

.form-group label {
    color: white !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 500 !important;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--smallrad) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent) !important;
    outline: none !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2) !important;
}

/* Form buttons */
.multi-booking .button {
    margin-top: 1rem !important;
}

.multi-booking .button2 {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    #contact-form {
        padding: 2rem 1rem !important;
    }
    
    .multi-booking {
        padding: 1.5rem !important;
    }
}

/* Multi-step form styling */
.multi-step-form {
    position: relative !important;
}

/* Hide all form cards by default */
.form-card {
    display: none !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

/* Only show active form card */
.form-card.active {
    display: block !important;
    opacity: 1 !important;
}

/* Form buttons layout */
.form-buttons {
    display: flex !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
}

/* Previous button styling */
.button2 {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    margin-right: 1rem !important;
}

/* Form transition effects */
.form-card.slide-in {
    animation: slideIn 0.3s forwards !important;
}

.form-card.slide-out {
    animation: slideOut 0.3s forwards !important;
}

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

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

/* Form select dropdown styling */
.form-group select {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: var(--smallrad) !important;
    background: #151515 !important;
    color: white !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    line-height: 1.5 !important;
    height: auto !important;
    text-overflow: ellipsis !important;
}

/* Custom dropdown arrow */
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 1.5em !important;
    padding-right: 3rem !important; /* Make room for the arrow */
}

/* Style dropdown options */
.form-group select option {
    background: #151515 !important;
    color: white !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    min-height: 3rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

/* Selected option style */
.form-group select option:checked,
.form-group select option:hover {
    background: var(--accent) !important;
    color: black !important;
}

/* Focus state */
.form-group select:focus {
    border-color: var(--accent) !important;
    outline: none !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2) !important;
}

/* Hover state */
.form-group select:hover {
    border-color: var(--accent) !important;
}

/* Placeholder text color */
.form-group select:invalid {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Enhanced glow effects */
.glow-effect {
    animation: textGlow 2s infinite !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                 0 0 40px rgba(255, 215, 0, 0.4),
                 0 0 60px rgba(255, 215, 0, 0.2) !important;
}

/* Enhanced electrical glow animation */
@keyframes electricalGlow {
    0%, 100% {
        filter: brightness(1) !important;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                    0 0 40px rgba(255, 215, 0, 0.4) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: brightness(1.4) !important;
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.9),
                    0 0 60px rgba(255, 215, 0, 0.6),
                    0 0 90px rgba(255, 215, 0, 0.3) !important;
        transform: scale(1.05) !important;
    }
}

/* Enhanced highlight effect */
.highlight {
    color: var(--accent) !important;
    font-weight: 600 !important;
    animation: electricalGlow 8s ease-in-out infinite !important;
    text-shadow: 0 0 25px rgba(255, 255, 0, 1),
                 0 0 45px rgba(255, 255, 0, 0.8),
                 0 0 65px rgba(255, 255, 0, 0.6) !important;
}

/* Enhanced button glow */
.button {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.button:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4),
                0 0 50px rgba(255, 215, 0, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* Enhanced form focus effects */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3),
                0 0 40px rgba(255, 215, 0, 0.1) !important;
}

/* Enhanced credential cards glow */
.cred {
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.cred:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2),
                0 5px 20px rgba(255, 215, 0, 0.1) !important;
}

/* Enhanced WhatsApp widget glow */
.whatsapp-widget {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-widget:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6) !important;
}

/* Enhanced pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1) !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    }
    70% {
        transform: scale(1.1) !important;
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6) !important;
    }
    100% {
        transform: scale(1) !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    }
}

/* Enhanced bulb icon glow */
.uk-icon[uk-icon="icon: bulb"] {
    color: var(--accent) !important;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8)) 
            drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)) !important;
    animation: bulbGlow 3s ease-in-out infinite !important;
    transform-origin: center !important;
}

@keyframes bulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)) !important;
        transform: scale(1) !important;
        opacity: 1 !important;
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1))
                drop-shadow(0 0 40px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 60px rgba(255, 215, 0, 0.4)) !important;
        transform: scale(1.1) !important;
        opacity: 0.9 !important;
    }
}

/* Make the icon more visible in the dark navbar */
.top-section .uk-icon[uk-icon="icon: bulb"] {
    color: #D7FF0E !important; /* Brighter yellow */
    font-size: 1.2em !important;
    margin-right: 5px !important;
}

/* Enhance glow effect when navbar is scrolled */
.top-section.scrolled .uk-icon[uk-icon="icon: bulb"] {
    animation: bulbGlowScrolled 3s ease-in-out infinite !important;
}

@keyframes bulbGlowScrolled {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9))
                drop-shadow(0 0 30px rgba(255, 215, 0, 0.5)) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1))
                drop-shadow(0 0 50px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 75px rgba(255, 215, 0, 0.6)) !important;
        transform: scale(1.1) !important;
    }
}

/* Super enhanced bulb icon glow */
.uk-icon[uk-icon="icon: bulb"] {
    color: #D7FF0E !important; /* Bright gold */
    font-size: 1.4em !important; /* Larger size */
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1)) 
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.8))
            drop-shadow(0 0 45px rgba(255, 215, 0, 0.6)) !important;
    animation: intenseBulbGlow 2s ease-in-out infinite !important;
    transform-origin: center !important;
    position: relative !important;
    z-index: 10 !important;
}

@keyframes intenseBulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1))
                drop-shadow(0 0 30px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 45px rgba(255, 215, 0, 0.6)) !important;
        transform: scale(1) rotate(0deg) !important;
        color: #D7FF0E !important;
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 0, 1))
                drop-shadow(0 0 60px rgba(255, 255, 0, 0.9))
                drop-shadow(0 0 90px rgba(255, 255, 0, 0.7))
                drop-shadow(0 0 120px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1.2) rotate(5deg) !important;
        color: #FFFF00 !important;
    }
}

/* Make the icon even more visible in the dark navbar */
.top-section .uk-icon[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Even brighter yellow */
    font-size: 1.5em !important; /* Even larger */
    margin-right: 8px !important;
    text-shadow: 0 0 20px rgba(255, 255, 0, 1) !important;
}

/* Super enhanced glow effect when navbar is scrolled */
.top-section.scrolled .uk-icon[uk-icon="icon: bulb"] {
    animation: intenseBulbGlowScrolled 2s ease-in-out infinite !important;
}

@keyframes intenseBulbGlowScrolled {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 0, 1))
                drop-shadow(0 0 40px rgba(255, 255, 0, 0.8))
                drop-shadow(0 0 60px rgba(255, 255, 0, 0.6)) !important;
        transform: scale(1) rotate(-5deg) !important;
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
                drop-shadow(0 0 80px rgba(255, 255, 0, 0.9))
                drop-shadow(0 0 120px rgba(255, 255, 0, 0.7))
                drop-shadow(0 0 160px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1.3) rotate(5deg) !important;
    }
}

/* Add pseudo-element for extra glow */
.uk-icon[uk-icon="icon: bulb"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.4) 0%,
        rgba(255, 255, 0, 0.2) 30%,
        transparent 70%);
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Target the specific bulb icon in navigation */
nav ul li a .uk-icon[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Pure yellow */
    font-size: 2em !important; /* Much larger */
    filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
            drop-shadow(0 0 80px rgba(255, 255, 0, 0.9))
            drop-shadow(0 0 120px rgba(255, 255, 0, 0.7)) !important;
    animation: superIntenseBulbGlow 1.5s ease-in-out infinite !important;
    transform-origin: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 10px !important;
    position: relative !important;
    z-index: 100 !important; /* Ensure it's above other elements */
}

@keyframes superIntenseBulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
                drop-shadow(0 0 80px rgba(255, 255, 0, 0.9)) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: drop-shadow(0 0 60px rgba(255, 255, 0, 1))
                drop-shadow(0 0 120px rgba(255, 255, 0, 1))
                drop-shadow(0 0 180px rgba(255, 255, 0, 0.9)) !important;
        transform: scale(1.4) !important;
    }
}

/* Add a glowing background */
nav ul li a .uk-icon[uk-icon="icon: bulb"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.6) 0%,
        rgba(255, 255, 0, 0.3) 30%,
        transparent 70%);
    z-index: -1;
    animation: pulseBackground 1.5s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
}

/* Override any potential conflicting styles */
.uk-icon[uk-icon="icon: bulb"] svg {
    stroke: #FFFF00 !important;
    stroke-width: 2 !important;
    fill: #FFFF00 !important;
}

/* Ensure the icon container doesn't clip the glow */
nav ul li a {
    overflow: visible !important;
}

nav ul li {
    overflow: visible !important;
}

.top-section nav {
    overflow: visible !important;
}

/* Target the specific navigation bulb icon */
.uk-navbar-nav .uk-icon[uk-icon="icon: bulb"],
nav .uk-icon[uk-icon="icon: bulb"],
[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Bright yellow */
    font-size: 24px !important; /* Much larger */
    position: relative !important;
    z-index: 1000 !important;
    display: inline-block !important;
    animation: extremeGlow 2s infinite !important;
    transform-origin: center !important;
    margin: 0 5px !important;
}

/* Extreme glow animation */
@keyframes extremeGlow {
    0%, 100% {
        filter: 
            brightness(1.5)
            drop-shadow(0 0 10px #FFFF00)
            drop-shadow(0 0 20px #FFFF00)
            drop-shadow(0 0 30px #FFFF00) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: 
            brightness(2)
            drop-shadow(0 0 20px #FFFF00)
            drop-shadow(0 0 40px #FFFF00)
            drop-shadow(0 0 60px #FFFF00) !important;
        transform: scale(1.2) !important;
    }
}

/* Force SVG colors */
[uk-icon="icon: bulb"] svg * {
    stroke: #FFFF00 !important;
    fill: #FFFF00 !important;
    stroke-width: 2 !important;
}

/* Add a glowing orb behind the icon */
[uk-icon="icon: bulb"]::after {
    content: '';
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 30px !important;
    height: 30px !important;
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.8) 0%,
        rgba(255, 255, 0, 0.4) 50%,
        transparent 70%) !important;
    transform: translate(-50%, -50%) !important;
    z-index: -1 !important;
    pointer-events: none !important;
    animation: orbPulse 2s infinite !important;
}

@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
}


/* Enhanced electrical light effect */
.highlight {
    color: #FFFF00 !important;
    font-weight: 600 !important;
    position: relative !important;
    display: inline-block !important;
    animation: electricLight 4s ease-in-out infinite !important;
}

@keyframes electricLight {
    0%, 100% {
        color: #FFFFFF !important;
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(255, 255, 255, 0.6);
    }
    45%, 55% {
        color: #FFFF00 !important;
        text-shadow: 
            0 0 30px rgba(255, 255, 0, 1),
            0 0 60px rgba(255, 255, 0, 1),
            0 0 90px rgba(255, 255, 0, 0.8),
            0 0 120px rgba(255, 255, 0, 0.6);
    }
}

/* Add light rays effect */
.highlight::before {
    content: '';
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 150% !important;
    height: 150% !important;
    transform: translate(-50%, -50%) !important;
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.8) 0%,
        rgba(255, 255, 0, 0.4) 30%,
        transparent 70%) !important;
    z-index: -1 !important;
    opacity: 0 !important;
    animation: lightRays 4s ease-in-out infinite !important;
}

@keyframes lightRays {
    0%, 100% {
        opacity: 0 !important;
        background: radial-gradient(circle, 
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.4) 30%,
            transparent 70%
        ) !important;
    }
    45%, 55% {
        opacity: 1 !important;
        background: radial-gradient(circle, 
            rgba(255, 255, 0, 0.8) 0%,
            rgba(255, 255, 0, 0.4) 30%,
            transparent 70%
        ) !important;
    }
}

/* Add subtle flicker effect */
.highlight span {
    animation: flicker 0.15s ease-in-out infinite alternate !important;
}

@keyframes flicker {
    0% {
        opacity: 0.97 !important;
    }
    100% {
        opacity: 1 !important;
    }
}

/* Logo container styles with electrical effects */
.logo-container {
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Base logo styles */
.logo-base {
    max-height: var(--logoheight) !important;
    width: auto !important;
    display: block !important;
    position: relative !important;
    z-index: 2 !important;
    filter: brightness(0) invert(1) !important; /* Re-add this to make logo white */
}

/* Icon (bulb) styles with enhanced electrical effects */
.logo-icon {
    height: 60px !important;
    width: auto !important;
    display: block !important;
    margin-left: -4px !important;
    position: relative !important;
    z-index: 3 !important;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important; /* Re-add brightness(0) invert(1) */
    animation: electricalIcon 3s ease-in-out infinite !important;
}

/* Add electrical animation for the icon */
@keyframes electricalIcon {
    0%, 100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1) rotate(-2deg) !important;
    }
    25% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.1) rotate(2deg) !important;
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(255, 255, 0, 1)) !important;
        transform: scale(1.2) rotate(-1deg) !important;
    }
    75% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.1) rotate(1deg) !important;
    }
}

/* Add glowing effect behind the logo */
.logo-container::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 120% !important;
    height: 120% !important;
    transform: translate(-50%, -50%) !important;
    background: radial-gradient(
        circle,
        rgba(255, 255, 0, 0.2) 0%,
        rgba(255, 255, 0, 0.1) 30%,
        transparent 70%
    ) !important;
    z-index: 1 !important;
    animation: logoGlow 3s ease-in-out infinite !important;
    pointer-events: none !important;
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.5 !important;
        transform: translate(-50%, -50%) scale(1) !important;
    }
    50% {
        opacity: 0.8 !important;
        transform: translate(-50%, -50%) scale(1.1) !important;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .logo-container {
        gap: 1px !important;
    }
    
    .logo-icon {
        height: 50px !important;
        margin-left: -2px !important;
    }
    
    .logo-container::after {
        width: 110% !important;
        height: 110% !important;
    }
}

/* Add electrical sparks effect */
.logo-icon::before,
.logo-icon::after {
    content: '' !important;
    position: absolute !important;
    width: 20px !important;
    height: 2px !important;
    background: rgba(255, 255, 0, 0.8) !important;
    filter: blur(1px) !important;
    z-index: 2 !important;
    opacity: 0 !important;
    animation: sparkEffect 2s infinite !important;
}

.logo-icon::before {
    top: 20% !important;
    right: -10px !important;
    transform: rotate(45deg) !important;
    animation-delay: 0.5s !important;
}

.logo-icon::after {
    bottom: 20% !important;
    right: -10px !important;
    transform: rotate(-45deg) !important;
    animation-delay: 1s !important;
}

@keyframes sparkEffect {
    0%, 100% {
        opacity: 0 !important;
        width: 0 !important;
    }
    10%, 30% {
        opacity: 1 !important;
        width: 20px !important;
    }
    40% {
        opacity: 0 !important;
        width: 0 !important;
    }
}

/* Remove parallax scrolling from about section image */
.intro .bigbg {
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    min-height: 400px !important;
    transform: none !important;
}

.intro .bigbg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: relative !important;
    transform: none !important;
}

/* Remove any parallax effects */
.intro [uk-parallax], 
.intro div, 
.intro .columns,
.intro .row,
.intro .bigbg,
.intro img {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    position: relative !important;
}

/* Ensure container maintains proper dimensions */
.intro .columns.small-12.medium-12.large-6 {
    height: auto !important;
    min-height: 400px !important;
}

/* Remove parallax scrolling from white-section image */
.white-section .bigbg.hundred {
    position: absolute !important;
    overflow: hidden !important;
    height: 100% !important;
    min-height: 350px !important; /* Increased from 300px to 350px */
    max-height: 350px !important; /* Increased from 300px to 350px */
}

.white-section .bigbg.hundred img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    transform: none !important;
}

/* Adjust container dimensions to match */
.white-section .columns.small-12.medium-6.large-6 {
    height: auto !important;
    min-height: 350px !important; /* Increased from 300px to 350px */
    max-height: 350px !important; /* Increased from 300px to 350px */
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .white-section .bigbg.hundred {
        min-height: 300px !important; /* Increased from 250px to 300px */
        max-height: 300px !important; /* Increased from 250px to 300px */
    }
    
    .white-section .columns.small-12.medium-6.large-6 {
        min-height: 300px !important; /* Increased from 250px to 300px */
        max-height: 300px !important; /* Increased from 250px to 300px */
    }
}

/* Remove top padding from white-section */
.columns.white-section {
    padding-top: 0 !important;
}

/* Maintain other white-section styles */
.white-section .bigbg.hundred {
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    min-height: 350px !important;
    max-height: 350px !important;
}

/* Update mobile navigation styles */
@media screen and (max-width: 64em) {
    /* Logo styles */
    .logo {
        text-align: center;
        width: 100%;
        padding: 10px 60px;
        margin-bottom: 0;
    }
    
    /* Navigation container */
    .navigation {
        width: 100%;
        text-align: center;
        padding: 0;
        margin-top: 10px;
    }
    
    /* Navigation list */
    .navigation ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
    }
    
    /* Navigation items */
    .navigation ul li {
        width: 100%;
        text-align: center;
    }
    
    .navigation ul li a {
        display: block;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    /* Adjust header padding for mobile */
    .top-section {
        padding: calc(var(--smallpad) * 0.5) 0 !important;
        flex-direction: column;
    }
    
    /* Adjust row alignment */
    .row.align-middle.widerow {
        flex-direction: column;
    }
    
    /* Hide navigation by default on mobile */
    .navigation {
        display: none;
    }
    
    /* Show navigation when mobile menu is active */
    .mobile-menu-active .navigation {
        display: block;
    }
}

/* Ensure mobile menu toggle works */
.nav-toggler {
    display: none;
}

@media screen and (max-width: 64em) {
    .nav-toggler {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 1000;
    }
}

/* Add smooth transitions */
.navigation {
    transition: all 0.3s ease-in-out;
}

.navigation ul li a {
    transition: color 0.2s ease-in-out;
}

/* Add responsive text for photo description */
.photo-description:after {
    content: 'right';
}

@media screen and (max-width: 64em) {
    .photo-description:after {
        content: 'below';
    }
}

/* Emergency contact button styles */
.emergency-contact {
    margin-top: 20px !important;
}

.emergency-contact a {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 5px !important;
    transition: background-color 0.3s ease !important;
}

.emergency-contact a:hover {
    background-color: #cc0000 !important;
    color: white !important;
}

.emergency-label {
    font-size: 1rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
}

.emergency-number {
    font-size: 1.2rem !important;
    font-weight: bold !important;
}

/* Add some separation from other menu items */
.mobile-menu ul li.emergency-contact {
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Desktop emergency contact button styles */
.navigation .emergency-contact {
    margin-left: 15px !important;
}

.navigation .emergency-contact a {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    display: flex !important;
    flex-direction: column !important;  /* Changed to column to match mobile */
    align-items: center !important;
    gap: 5px !important;
    min-width: 200px !important;  /* Ensure minimum width */
}

.navigation .emergency-contact a:hover {
    background-color: #cc0000 !important;
}

.navigation .emergency-label {
    font-size: 1rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
    display: block !important;
    text-align: center !important;
}

.navigation .emergency-number {
    font-size: 1.2rem !important;
    font-weight: bold !important;
    display: block !important;
    text-align: center !important;
}

/* Hide the after pseudo-element for emergency contact */
.navigation .emergency-contact a::after {
    display: none !important;
}

/* Remove any default navigation styles that might interfere */
.navigation ul li.emergency-contact {
    display: flex !important;
    align-items: center !important;
}

.navigation ul li.emergency-contact > a {
    margin-right: 0 !important;
}

/* Responsive adjustments */
@media screen and (max-width: 64em) {
    .navigation .emergency-contact {
        display: none !important; /* Hide in desktop nav when mobile */
    }
}

/* Mobile emergency contact button styles */
.mobile-menu .emergency-contact a {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 15px 20px !important;
    display: flex !important;
    flex-direction: column !important;  /* Stack vertically on mobile */
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;  /* Full width on mobile */
    text-align: center !important;
}

.mobile-menu .emergency-label {
    font-size: 1.2rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
    display: block !important;  /* Ensure block display */
    width: 100% !important;
}

.mobile-menu .emergency-number {
    font-size: 1.4rem !important;
    font-weight: bold !important;
    display: block !important;  /* Ensure block display */
    width: 100% !important;
}

/* Add separation from other menu items in mobile */
.mobile-menu ul li.emergency-contact {
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
}

/* Hover effects */
.emergency-contact a:hover {
    background-color: #cc0000 !important;
    color: white !important;
}

/* Header emergency contact styles */
.header-emergency-contact {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    padding-right: 20px !important;
}

.emergency-button {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 8px 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2px !important;
    text-decoration: none !important;
    transition: background-color 0.3s ease !important;
}

.emergency-button:hover {
    background-color: #cc0000 !important;
    color: white !important;
}

.emergency-button .emergency-label {
    font-size: 0.9rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
}

.emergency-button .emergency-number {
    font-size: 1.1rem !important;
    font-weight: bold !important;
}

/* Mobile adjustments */
@media screen and (max-width: 64em) {
    .header-emergency-contact {
        display: none !important; /* Hide on mobile since it's in the mobile menu */
    }
}

/* Fixed emergency contact styles - Desktop */
.emergency-contact-fixed {
    position: fixed !important;
    top: calc(var(--logoheight) + var(--smallpad) * 2) !important;
    right: 0 !important;
    z-index: 998 !important;
}

.emergency-button {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px 0 0 8px !important; /* Only round the left corners */
    padding: 8px 15px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
}

/* Mobile adjustments for emergency button */
@media screen and (max-width: 64em) {
    .emergency-contact-fixed {
        position: fixed !important;
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding: 16px !important;
        z-index: 999 !important;
        background-color: transparent !important;
    }

    /* Increase padding at the bottom of main content */
    main {
        padding-bottom: 120px !important; /* Increased from 100px to 120px */
    }

    /* Add margin to the bottom of the last section */
    main > section:last-child {
        margin-bottom: 80px !important;
    }

    .emergency-button {
        width: 100% !important;
        justify-content: center !important;
        padding: 15px 20px !important;
        border-radius: 0 !important;
        flex-direction: row !important;
        gap: 10px !important;
        background-color: #ff0000 !important;
    }

    .emergency-button .emergency-label,
    .emergency-button .emergency-number {
        font-size: 1.1rem !important;
    }
}

/* Review section button styles */
.small-section.tac {
    margin-top: 2rem !important;
}

.small-section.tac .button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.small-section.tac .button span[uk-icon] {
    transition: transform 0.3s ease !important;
}

.small-section.tac .button:hover span[uk-icon] {
    transform: translateX(5px) !important;
}

/* Reviews grid layout */
.reviews-grid {
    margin: 0 -1rem !important;
}

.reviews-grid .column {
    padding: 1rem !important;
}

.reviews-grid blockquote {
    height: 100% !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    position: relative !important;
    background: var(--dark) !important;
    border-radius: var(--mediumrad) !important;
    overflow: hidden !important;
    padding: 0 !important;
    box-shadow: 0 3px 5px rgba(0,0,0,0.4) !important;
    transition: all 0.3s ease !important;
}

/* Remove any existing background styles */
.reviews-grid blockquote.darkbg {
    background: var(--dark) !important; /* Force dark background */
}

/* Remove any existing before/after elements that might add backgrounds */
.reviews-grid blockquote::before,
.reviews-grid blockquote::after {
    display: none !important;
}

/* Ensure consistent text content styling */
.reviews-grid .review-content {
    flex-grow: 1 !important;
    padding: 2.5rem 1.5rem 1.5rem !important;
    background: transparent !important; /* Remove any background */
}

.reviews-grid .review-content p {
    color: white !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
    position: relative !important;
    z-index: 2 !important;
}

.reviews-grid .author {
    margin-top: 0.5rem !important;
    padding: 0 1.5rem 1.5rem !important;
    color: var(--accent) !important;
    font-size: 0.8rem !important;
}

/* Hover effect matching the accreditation tiles */
.reviews-grid blockquote:hover {
    transform: translateY(-5px) !important;
    box-shadow: 
        0 8px 15px rgba(0,0,0,0.4),
        0 0 10px rgba(255, 215, 0, 0.1),
        0 0 20px rgba(255, 255, 135, 0.05) !important;
}

/* Quote mark in top-left */
.reviews-grid blockquote::before {
    content: '"' !important;
    position: absolute !important;
    top: 1rem !important;
    left: 1rem !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
    color: var(--accent) !important;
    opacity: 0.5 !important;
}

/* Update dark section icon with larger size and more intense glow */
.before-section {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 2 !important;
    padding: 2rem 0 !important;
    overflow: visible !important; /* Allow glow to extend outside */
}

.before-section img {
    height: 180px !important;
    width: auto !important;
    position: relative !important;
    z-index: 3 !important;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
    animation: electricIcon 2s ease-in-out infinite !important;
}

@keyframes electricIcon {
    0%, 100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1) rotate(-2deg) !important;
    }
    25% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.15) rotate(2deg) !important;
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(255, 255, 0, 1)) !important;
        transform: scale(1.25) rotate(-1deg) !important;
    }
    75% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.15) rotate(1deg) !important;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .before-section img {
        height: 140px !important; /* Slightly smaller on tablets */
    }
    .before-section {
        padding: 1.5rem 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .before-section img {
        height: 120px !important; /* Even smaller on phones */
    }
    .before-section {
        padding: 1rem 0 !important;
    }
}

/* Add glowing effect to dark section text */
.dark-section .text p {
    color: #ffff87 !important;
    font-size: 1.3rem !important; /* Increased from 1rem */
    line-height: 2rem !important; /* Increased line height */
    text-shadow: 
        /* Stronger outline */
        -1px -1px 0 rgba(0,0,0,0.4),
        1px -1px 0 rgba(0,0,0,0.4),
        -1px 1px 0 rgba(0,0,0,0.4),
        1px 1px 0 rgba(0,0,0,0.4),
        /* Enhanced yellow glow effect */
        0 0 15px rgba(255, 255, 0, 0.5),
        0 0 25px rgba(255, 255, 0, 0.3);
    font-weight: 500 !important;
    opacity: 1 !important;
    padding: 0.5rem 0 !important; /* Add some vertical spacing */
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .dark-section .text p {
        font-size: 1.1rem !important; /* Slightly smaller on mobile */
        line-height: 1.8rem !important;
        text-shadow: 
            -1px -1px 0 rgba(0,0,0,0.4),
            1px -1px 0 rgba(0,0,0,0.4),
            -1px 1px 0 rgba(0,0,0,0.4),
            1px 1px 0 rgba(0,0,0,0.4),
            0 0 12px rgba(255, 255, 0, 0.4);
    }
}

/* Update text section padding */
.dark-section .columns.text {
    padding: calc(var(--bigpad) * 0.1) !important; /* Reduce to 10% of original padding */
}

/* Mobile adjustments */
@media screen and (max-width: 64em) {
    .dark-section .columns.text {
        padding: calc(var(--bigpad) * 0.1) !important; /* Keep consistent on mobile */
    }
}

/* Update dark section layout */
.dark-section .row.align-middle {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important; /* Remove default gap */
}

/* Left text column */
.dark-section .columns.text:first-child {
    padding-right: 0.5rem !important;
    text-align: right !important;
}

/* Center icon column */
.dark-section .before-section {
    padding: 0 !important;
    margin: 0 -1rem !important; /* Pull icon closer to text */
}

/* Right text column */
.dark-section .columns.text:last-child {
    padding-left: 0.5rem !important;
    text-align: left !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .dark-section .row.align-middle {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .dark-section .columns.text:first-child,
    .dark-section .columns.text:last-child {
        text-align: center !important;
        padding: 0.5rem !important;
    }
    
    .dark-section .before-section {
        margin: 0 !important;
    }
}

/* Center text alignment helper */
.text-center {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 2rem 0 !important;
}

/* Remove any existing margin/padding that might affect centering */
.columns.text .text-center {
    padding: 0 !important;
}

/* Ensure button maintains its style while centered */
.text-center .button {
    margin: 0 auto !important;
}

/* Footer credentials section */
.members {
    padding: 3rem 0 !important;
}

.members h5 {
    color: var(--accent) !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

/* Credential cards */
.cred {
    background: rgba(21, 21, 21, 0.5) !important;
    padding: 2rem !important;
    border-radius: var(--mediumrad) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.cred:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1) !important;
}

.cred img {
    max-width: 200px !important;
    height: auto !important;
    margin-bottom: 1rem !important;
}

.credential-text {
    color: white !important;
    font-size: 1rem !important;
    text-align: center !important;
    margin: 0 !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .members {
        padding: 2rem 0 !important;
    }
    
    .cred {
        padding: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .cred img {
        max-width: 150px !important;
    }
}

/* Contact form section styling */
#contact-form {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 4rem 1rem !important;
}

.multi-booking {
    max-width: 600px !important;
    width: 100% !important;
    margin: 0 auto !important;
    background: rgba(21, 21, 21, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: var(--mediumrad) !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1) !important;
}

/* Form title and text */
.multi-booking h3 {
    color: var(--accent) !important;
    text-align: center !important;
    margin-bottom: 0.5rem !important;
}

.multi-booking p {
    color: white !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

/* Form inputs styling */
.form-group {
    margin-bottom: 1.5rem !important;
}

.form-group label {
    color: white !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 500 !important;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--smallrad) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent) !important;
    outline: none !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2) !important;
}

/* Form buttons */
.multi-booking .button {
    margin-top: 1rem !important;
}

.multi-booking .button2 {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    #contact-form {
        padding: 2rem 1rem !important;
    }
    
    .multi-booking {
        padding: 1.5rem !important;
    }
}

/* Multi-step form styling */
.multi-step-form {
    position: relative !important;
}

/* Hide all form cards by default */
.form-card {
    display: none !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

/* Only show active form card */
.form-card.active {
    display: block !important;
    opacity: 1 !important;
}

/* Form buttons layout */
.form-buttons {
    display: flex !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
}

/* Previous button styling */
.button2 {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    margin-right: 1rem !important;
}

/* Form transition effects */
.form-card.slide-in {
    animation: slideIn 0.3s forwards !important;
}

.form-card.slide-out {
    animation: slideOut 0.3s forwards !important;
}

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

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

/* Form select dropdown styling */
.form-group select {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: var(--smallrad) !important;
    background: #151515 !important;
    color: white !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    line-height: 1.5 !important;
    height: auto !important;
    text-overflow: ellipsis !important;
}

/* Custom dropdown arrow */
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 1.5em !important;
    padding-right: 3rem !important; /* Make room for the arrow */
}

/* Style dropdown options */
.form-group select option {
    background: #151515 !important;
    color: white !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    min-height: 3rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

/* Selected option style */
.form-group select option:checked,
.form-group select option:hover {
    background: var(--accent) !important;
    color: black !important;
}

/* Focus state */
.form-group select:focus {
    border-color: var(--accent) !important;
    outline: none !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2) !important;
}

/* Hover state */
.form-group select:hover {
    border-color: var(--accent) !important;
}

/* Placeholder text color */
.form-group select:invalid {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Enhanced glow effects */
.glow-effect {
    animation: textGlow 2s infinite !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                 0 0 40px rgba(255, 215, 0, 0.4),
                 0 0 60px rgba(255, 215, 0, 0.2) !important;
}

/* Enhanced electrical glow animation */
@keyframes electricalGlow {
    0%, 100% {
        filter: brightness(1) !important;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                    0 0 40px rgba(255, 215, 0, 0.4) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: brightness(1.4) !important;
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.9),
                    0 0 60px rgba(255, 215, 0, 0.6),
                    0 0 90px rgba(255, 215, 0, 0.3) !important;
        transform: scale(1.05) !important;
    }
}

/* Enhanced highlight effect */
.highlight {
    color: var(--accent) !important;
    font-weight: 600 !important;
    animation: electricalGlow 8s ease-in-out infinite !important;
    text-shadow: 0 0 25px rgba(255, 255, 0, 1),
                 0 0 45px rgba(255, 255, 0, 0.8),
                 0 0 65px rgba(255, 255, 0, 0.6) !important;
}

/* Enhanced button glow */
.button {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.button:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4),
                0 0 50px rgba(255, 215, 0, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* Enhanced form focus effects */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3),
                0 0 40px rgba(255, 215, 0, 0.1) !important;
}

/* Enhanced credential cards glow */
.cred {
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.cred:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2),
                0 5px 20px rgba(255, 215, 0, 0.1) !important;
}

/* Enhanced WhatsApp widget glow */
.whatsapp-widget {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-widget:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6) !important;
}

/* Enhanced pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1) !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    }
    70% {
        transform: scale(1.1) !important;
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6) !important;
    }
    100% {
        transform: scale(1) !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    }
}

/* Enhanced bulb icon glow */
.uk-icon[uk-icon="icon: bulb"] {
    color: var(--accent) !important;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8)) 
            drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)) !important;
    animation: bulbGlow 3s ease-in-out infinite !important;
    transform-origin: center !important;
}

@keyframes bulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)) !important;
        transform: scale(1) !important;
        opacity: 1 !important;
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1))
                drop-shadow(0 0 40px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 60px rgba(255, 215, 0, 0.4)) !important;
        transform: scale(1.1) !important;
        opacity: 0.9 !important;
    }
}

/* Make the icon more visible in the dark navbar */
.top-section .uk-icon[uk-icon="icon: bulb"] {
    color: #D7FF0E !important; /* Brighter yellow */
    font-size: 1.2em !important;
    margin-right: 5px !important;
}

/* Enhance glow effect when navbar is scrolled */
.top-section.scrolled .uk-icon[uk-icon="icon: bulb"] {
    animation: bulbGlowScrolled 3s ease-in-out infinite !important;
}

@keyframes bulbGlowScrolled {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9))
                drop-shadow(0 0 30px rgba(255, 215, 0, 0.5)) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1))
                drop-shadow(0 0 50px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 75px rgba(255, 215, 0, 0.6)) !important;
        transform: scale(1.15) !important;
    }
}

/* Super enhanced bulb icon glow */
.uk-icon[uk-icon="icon: bulb"] {
    color: #D7FF0E !important; /* Bright gold */
    font-size: 1.4em !important; /* Larger size */
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1)) 
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.8))
            drop-shadow(0 0 45px rgba(255, 215, 0, 0.6)) !important;
    animation: intenseBulbGlow 2s ease-in-out infinite !important;
    transform-origin: center !important;
    position: relative !important;
    z-index: 10 !important;
}

@keyframes intenseBulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1))
                drop-shadow(0 0 30px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 45px rgba(255, 215, 0, 0.6)) !important;
        transform: scale(1) rotate(0deg) !important;
        color: #D7FF0E !important;
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 0, 1))
                drop-shadow(0 0 60px rgba(255, 255, 0, 0.9))
                drop-shadow(0 0 90px rgba(255, 255, 0, 0.7))
                drop-shadow(0 0 120px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1.2) rotate(5deg) !important;
        color: #FFFF00 !important;
    }
}

/* Make the icon even more visible in the dark navbar */
.top-section .uk-icon[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Even brighter yellow */
    font-size: 1.5em !important; /* Even larger */
    margin-right: 8px !important;
    text-shadow: 0 0 20px rgba(255, 255, 0, 1) !important;
}

/* Super enhanced glow effect when navbar is scrolled */
.top-section.scrolled .uk-icon[uk-icon="icon: bulb"] {
    animation: intenseBulbGlowScrolled 2s ease-in-out infinite !important;
}

@keyframes intenseBulbGlowScrolled {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 0, 1))
                drop-shadow(0 0 40px rgba(255, 255, 0, 0.8))
                drop-shadow(0 0 60px rgba(255, 255, 0, 0.6)) !important;
        transform: scale(1) rotate(-5deg) !important;
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
                drop-shadow(0 0 80px rgba(255, 255, 0, 0.9))
                drop-shadow(0 0 120px rgba(255, 255, 0, 0.7))
                drop-shadow(0 0 160px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1.3) rotate(5deg) !important;
    }
}

/* Add pseudo-element for extra glow */
.uk-icon[uk-icon="icon: bulb"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.4) 0%,
        rgba(255, 255, 0, 0.2) 30%,
        transparent 70%);
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Target the specific bulb icon in navigation */
nav ul li a .uk-icon[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Pure yellow */
    font-size: 2em !important; /* Much larger */
    filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
            drop-shadow(0 0 80px rgba(255, 255, 0, 0.9))
            drop-shadow(0 0 120px rgba(255, 255, 0, 0.7)) !important;
    animation: superIntenseBulbGlow 1.5s ease-in-out infinite !important;
    transform-origin: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 10px !important;
    position: relative !important;
    z-index: 100 !important; /* Ensure it's above other elements */
}

@keyframes superIntenseBulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
                drop-shadow(0 0 80px rgba(255, 255, 0, 0.9)) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: drop-shadow(0 0 60px rgba(255, 255, 0, 1))
                drop-shadow(0 0 120px rgba(255, 255, 0, 1))
                drop-shadow(0 0 180px rgba(255, 255, 0, 0.9)) !important;
        transform: scale(1.4) !important;
    }
}

/* Add a glowing background */
nav ul li a .uk-icon[uk-icon="icon: bulb"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.6) 0%,
        rgba(255, 255, 0, 0.3) 30%,
        transparent 70%);
    z-index: -1;
    animation: pulseBackground 1.5s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
}

/* Override any potential conflicting styles */
.uk-icon[uk-icon="icon: bulb"] svg {
    stroke: #FFFF00 !important;
    stroke-width: 2 !important;
    fill: #FFFF00 !important;
}

/* Ensure the icon container doesn't clip the glow */
nav ul li a {
    overflow: visible !important;
}

nav ul li {
    overflow: visible !important;
}

.top-section nav {
    overflow: visible !important;
}

/* Target the specific navigation bulb icon */
.uk-navbar-nav .uk-icon[uk-icon="icon: bulb"],
nav .uk-icon[uk-icon="icon: bulb"],
[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Bright yellow */
    font-size: 24px !important; /* Much larger */
    position: relative !important;
    z-index: 1000 !important;
    display: inline-block !important;
    animation: extremeGlow 2s infinite !important;
    transform-origin: center !important;
    margin: 0 5px !important;
}

/* Extreme glow animation */
@keyframes extremeGlow {
    0%, 100% {
        filter: 
            brightness(1.5)
            drop-shadow(0 0 10px #FFFF00)
            drop-shadow(0 0 20px #FFFF00)
            drop-shadow(0 0 30px #FFFF00) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: 
            brightness(2)
            drop-shadow(0 0 20px #FFFF00)
            drop-shadow(0 0 40px #FFFF00)
            drop-shadow(0 0 60px #FFFF00) !important;
        transform: scale(1.2) !important;
    }
}

/* Force SVG colors */
[uk-icon="icon: bulb"] svg * {
    stroke: #FFFF00 !important;
    fill: #FFFF00 !important;
    stroke-width: 2 !important;
}

/* Add a glowing orb behind the icon */
[uk-icon="icon: bulb"]::after {
    content: '';
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 30px !important;
    height: 30px !important;
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.8) 0%,
        rgba(255, 255, 0, 0.4) 50%,
        transparent 70%) !important;
    transform: translate(-50%, -50%) !important;
    z-index: -1 !important;
    pointer-events: none !important;
    animation: orbPulse 2s infinite !important;
}

@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
}


/* Enhanced electrical light effect */
.highlight {
    color: #FFFF00 !important;
    font-weight: 600 !important;
    position: relative !important;
    display: inline-block !important;
    animation: electricLight 4s ease-in-out infinite !important;
}

@keyframes electricLight {
    0%, 100% {
        color: #FFFFFF !important;
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(255, 255, 255, 0.6);
    }
    45%, 55% {
        color: #FFFF00 !important;
        text-shadow: 
            0 0 30px rgba(255, 255, 0, 1),
            0 0 60px rgba(255, 255, 0, 1),
            0 0 90px rgba(255, 255, 0, 0.8),
            0 0 120px rgba(255, 255, 0, 0.6);
    }
}

/* Add light rays effect */
.highlight::before {
    content: '';
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 150% !important;
    height: 150% !important;
    transform: translate(-50%, -50%) !important;
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.8) 0%,
        rgba(255, 255, 0, 0.4) 30%,
        transparent 70%
    ) !important;
    z-index: -1 !important;
    opacity: 0 !important;
    animation: lightRays 4s ease-in-out infinite !important;
}

@keyframes lightRays {
    0%, 100% {
        opacity: 0 !important;
        background: radial-gradient(circle, 
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.4) 30%,
            transparent 70%
        ) !important;
    }
    45%, 55% {
        opacity: 1 !important;
        background: radial-gradient(circle, 
            rgba(255, 255, 0, 0.8) 0%,
            rgba(255, 255, 0, 0.4) 30%,
            transparent 70%
        ) !important;
    }
}

/* Add subtle flicker effect */
.highlight span {
    animation: flicker 0.15s ease-in-out infinite alternate !important;
}

@keyframes flicker {
    0% {
        opacity: 0.97 !important;
    }
    100% {
        opacity: 1 !important;
    }
}

/* Logo container styles with electrical effects */
.logo-container {
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Base logo styles */
.logo-base {
    max-height: var(--logoheight) !important;
    width: auto !important;
    display: block !important;
    position: relative !important;
    z-index: 2 !important;
    filter: brightness(0) invert(1) !important; /* Re-add this to make logo white */
}

/* Icon (bulb) styles with enhanced electrical effects */
.logo-icon {
    height: 60px !important;
    width: auto !important;
    display: block !important;
    margin-left: -4px !important;
    position: relative !important;
    z-index: 3 !important;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important; /* Re-add brightness(0) invert(1) */
    animation: electricalIcon 3s ease-in-out infinite !important;
}

/* Add electrical animation for the icon */
@keyframes electricalIcon {
    0%, 100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1) rotate(-2deg) !important;
    }
    25% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.1) rotate(2deg) !important;
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(255, 255, 0, 1)) !important;
        transform: scale(1.2) rotate(-1deg) !important;
    }
    75% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.1) rotate(1deg) !important;
    }
}

/* Add glowing effect behind the logo */
.logo-container::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 120% !important;
    height: 120% !important;
    transform: translate(-50%, -50%) !important;
    background: radial-gradient(
        circle,
        rgba(255, 255, 0, 0.2) 0%,
        rgba(255, 255, 0, 0.1) 30%,
        transparent 70%
    ) !important;
    z-index: 1 !important;
    animation: logoGlow 3s ease-in-out infinite !important;
    pointer-events: none !important;
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.5 !important;
        transform: translate(-50%, -50%) scale(1) !important;
    }
    50% {
        opacity: 0.8 !important;
        transform: translate(-50%, -50%) scale(1.1) !important;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .logo-container {
        gap: 1px !important;
    }
    
    .logo-icon {
        height: 50px !important;
        margin-left: -2px !important;
    }
    
    .logo-container::after {
        width: 110% !important;
        height: 110% !important;
    }
}

/* Add electrical sparks effect */
.logo-icon::before,
.logo-icon::after {
    content: '' !important;
    position: absolute !important;
    width: 20px !important;
    height: 2px !important;
    background: rgba(255, 255, 0, 0.8) !important;
    filter: blur(1px) !important;
    z-index: 2 !important;
    opacity: 0 !important;
    animation: sparkEffect 2s infinite !important;
}

.logo-icon::before {
    top: 20% !important;
    right: -10px !important;
    transform: rotate(45deg) !important;
    animation-delay: 0.5s !important;
}

.logo-icon::after {
    bottom: 20% !important;
    right: -10px !important;
    transform: rotate(-45deg) !important;
    animation-delay: 1s !important;
}

@keyframes sparkEffect {
    0%, 100% {
        opacity: 0 !important;
        width: 0 !important;
    }
    10%, 30% {
        opacity: 1 !important;
        width: 20px !important;
    }
    40% {
        opacity: 0 !important;
        width: 0 !important;
    }
}

/* Remove parallax scrolling from about section image */
.intro .bigbg {
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    min-height: 400px !important;
    transform: none !important;
}

.intro .bigbg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: relative !important;
    transform: none !important;
}

/* Remove any parallax effects */
.intro [uk-parallax], 
.intro div, 
.intro .columns,
.intro .row,
.intro .bigbg,
.intro img {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    position: relative !important;
}

/* Ensure container maintains proper dimensions */
.intro .columns.small-12.medium-12.large-6 {
    height: auto !important;
    min-height: 400px !important;
}

/* Remove parallax scrolling from white-section image */
.white-section .bigbg.hundred {
    position: absolute !important;
    overflow: hidden !important;
    height: 100% !important;
    min-height: 350px !important; /* Increased from 300px to 350px */
    max-height: 350px !important; /* Increased from 300px to 350px */
}

.white-section .bigbg.hundred img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    transform: none !important;
}

/* Adjust container dimensions to match */
.white-section .columns.small-12.medium-6.large-6 {
    height: auto !important;
    min-height: 350px !important; /* Increased from 300px to 350px */
    max-height: 350px !important; /* Increased from 300px to 350px */
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .white-section .bigbg.hundred {
        min-height: 300px !important; /* Increased from 250px to 300px */
        max-height: 300px !important; /* Increased from 250px to 300px */
    }
    
    .white-section .columns.small-12.medium-6.large-6 {
        min-height: 300px !important; /* Increased from 250px to 300px */
        max-height: 300px !important; /* Increased from 250px to 300px */
    }
}

/* Remove top padding from white-section */
.columns.white-section {
    padding-top: 0 !important;
}

/* Maintain other white-section styles */
.white-section .bigbg.hundred {
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    min-height: 350px !important;
    max-height: 350px !important;
}

/* Update mobile navigation styles */
@media screen and (max-width: 64em) {
    /* Logo styles */
    .logo {
        text-align: center;
        width: 100%;
        padding: 10px 60px;
        margin-bottom: 0;
    }
    
    /* Navigation container */
    .navigation {
        width: 100%;
        text-align: center;
        padding: 0;
        margin-top: 10px;
    }
    
    /* Navigation list */
    .navigation ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
    }
    
    /* Navigation items */
    .navigation ul li {
        width: 100%;
        text-align: center;
    }
    
    .navigation ul li a {
        display: block;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    /* Adjust header padding for mobile */
    .top-section {
        padding: calc(var(--smallpad) * 0.5) 0 !important;
        flex-direction: column;
    }
    
    /* Adjust row alignment */
    .row.align-middle.widerow {
        flex-direction: column;
    }
    
    /* Hide navigation by default on mobile */
    .navigation {
        display: none;
    }
    
    /* Show navigation when mobile menu is active */
    .mobile-menu-active .navigation {
        display: block;
    }
}

/* Ensure mobile menu toggle works */
.nav-toggler {
    display: none;
}

@media screen and (max-width: 64em) {
    .nav-toggler {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 1000;
    }
}

/* Add smooth transitions */
.navigation {
    transition: all 0.3s ease-in-out;
}

.navigation ul li a {
    transition: color 0.2s ease-in-out;
}

/* Add responsive text for photo description */
.photo-description:after {
    content: 'right';
}

@media screen and (max-width: 64em) {
    .photo-description:after {
        content: 'below';
    }
}

/* Emergency contact button styles */
.emergency-contact {
    margin-top: 20px !important;
}

.emergency-contact a {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 5px !important;
    transition: background-color 0.3s ease !important;
}

.emergency-contact a:hover {
    background-color: #cc0000 !important;
    color: white !important;
}

.emergency-label {
    font-size: 1rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
}

.emergency-number {
    font-size: 1.2rem !important;
    font-weight: bold !important;
}

/* Add some separation from other menu items */
.mobile-menu ul li.emergency-contact {
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Desktop emergency contact button styles */
.navigation .emergency-contact {
    margin-left: 15px !important;
}

.navigation .emergency-contact a {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    display: flex !important;
    flex-direction: column !important;  /* Changed to column to match mobile */
    align-items: center !important;
    gap: 5px !important;
    min-width: 200px !important;  /* Ensure minimum width */
}

.navigation .emergency-contact a:hover {
    background-color: #cc0000 !important;
}

.navigation .emergency-label {
    font-size: 1rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
    display: block !important;
    text-align: center !important;
}

.navigation .emergency-number {
    font-size: 1.2rem !important;
    font-weight: bold !important;
    display: block !important;
    text-align: center !important;
}

/* Hide the after pseudo-element for emergency contact */
.navigation .emergency-contact a::after {
    display: none !important;
}

/* Remove any default navigation styles that might interfere */
.navigation ul li.emergency-contact {
    display: flex !important;
    align-items: center !important;
}

.navigation ul li.emergency-contact > a {
    margin-right: 0 !important;
}

/* Responsive adjustments */
@media screen and (max-width: 64em) {
    .navigation .emergency-contact {
        display: none !important; /* Hide in desktop nav when mobile */
    }
}

/* Mobile emergency contact button styles */
.mobile-menu .emergency-contact a {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 15px 20px !important;
    display: flex !important;
    flex-direction: column !important;  /* Stack vertically on mobile */
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;  /* Full width on mobile */
    text-align: center !important;
}

.mobile-menu .emergency-label {
    font-size: 1.2rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
    display: block !important;  /* Ensure block display */
    width: 100% !important;
}

.mobile-menu .emergency-number {
    font-size: 1.4rem !important;
    font-weight: bold !important;
    display: block !important;  /* Ensure block display */
    width: 100% !important;
}

/* Add separation from other menu items in mobile */
.mobile-menu ul li.emergency-contact {
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
}

/* Hover effects */
.emergency-contact a:hover {
    background-color: #cc0000 !important;
    color: white !important;
}

/* Header emergency contact styles */
.header-emergency-contact {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    padding-right: 20px !important;
}

.emergency-button {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 8px 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2px !important;
    text-decoration: none !important;
    transition: background-color 0.3s ease !important;
}

.emergency-button:hover {
    background-color: #cc0000 !important;
    color: white !important;
}

.emergency-button .emergency-label {
    font-size: 0.9rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
}

.emergency-button .emergency-number {
    font-size: 1.1rem !important;
    font-weight: bold !important;
}

/* Mobile adjustments */
@media screen and (max-width: 64em) {
    .header-emergency-contact {
        display: none !important; /* Hide on mobile since it's in the mobile menu */
    }
}

/* Fixed emergency contact styles - Desktop */
.emergency-contact-fixed {
    position: fixed !important;
    top: calc(var(--logoheight) + var(--smallpad) * 2) !important;
    right: 0 !important;
    z-index: 998 !important;
}

.emergency-button {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px 0 0 8px !important; /* Only round the left corners */
    padding: 8px 15px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
}

/* Mobile adjustments for emergency button */
@media screen and (max-width: 64em) {
    .emergency-contact-fixed {
        position: fixed !important;
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding: 16px !important;
        z-index: 999 !important;
        background-color: transparent !important;
    }

    /* Increase padding at the bottom of main content */
    main {
        padding-bottom: 120px !important; /* Increased from 100px to 120px */
    }

    /* Add margin to the bottom of the last section */
    main > section:last-child {
        margin-bottom: 80px !important;
    }

    .emergency-button {
        width: 100% !important;
        justify-content: center !important;
        padding: 15px 20px !important;
        border-radius: 0 !important;
        flex-direction: row !important;
        gap: 10px !important;
        background-color: #ff0000 !important;
    }

    .emergency-button .emergency-label,
    .emergency-button .emergency-number {
        font-size: 1.1rem !important;
    }
}

/* Review section button styles */
.small-section.tac {
    margin-top: 2rem !important;
}

.small-section.tac .button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.small-section.tac .button span[uk-icon] {
    transition: transform 0.3s ease !important;
}

.small-section.tac .button:hover span[uk-icon] {
    transform: translateX(5px) !important;
}

/* Reviews grid layout */
.reviews-grid {
    margin: 0 -1rem !important;
}

.reviews-grid .column {
    padding: 1rem !important;
}

.reviews-grid blockquote {
    height: 100% !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    position: relative !important;
    background: var(--dark) !important;
    border-radius: var(--mediumrad) !important;
    overflow: hidden !important;
    padding: 0 !important;
    box-shadow: 0 3px 5px rgba(0,0,0,0.4) !important;
    transition: all 0.3s ease !important;
}

/* Remove any existing background styles */
.reviews-grid blockquote.darkbg {
    background: var(--dark) !important; /* Force dark background */
}

/* Remove any existing before/after elements that might add backgrounds */
.reviews-grid blockquote::before,
.reviews-grid blockquote::after {
    display: none !important;
}

/* Ensure consistent text content styling */
.reviews-grid .review-content {
    flex-grow: 1 !important;
    padding: 2.5rem 1.5rem 1.5rem !important;
    background: transparent !important; /* Remove any background */
}

.reviews-grid .review-content p {
    color: white !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
    position: relative !important;
    z-index: 2 !important;
}

.reviews-grid .author {
    margin-top: 0.5rem !important;
    padding: 0 1.5rem 1.5rem !important;
    color: var(--accent) !important;
    font-size: 0.8rem !important;
}

/* Hover effect matching the accreditation tiles */
.reviews-grid blockquote:hover {
    transform: translateY(-5px) !important;
    box-shadow: 
        0 8px 15px rgba(0,0,0,0.4),
        0 0 10px rgba(255, 215, 0, 0.1),
        0 0 20px rgba(255, 255, 135, 0.05) !important;
}

/* Quote mark in top-left */
.reviews-grid blockquote::before {
    content: '"' !important;
    position: absolute !important;
    top: 1rem !important;
    left: 1rem !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
    color: var(--accent) !important;
    opacity: 0.5 !important;
}

/* Update dark section icon with larger size and more intense glow */
.before-section {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 2 !important;
    padding: 2rem 0 !important;
    overflow: visible !important; /* Allow glow to extend outside */
}

.before-section img {
    height: 180px !important;
    width: auto !important;
    position: relative !important;
    z-index: 3 !important;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
    animation: electricIcon 2s ease-in-out infinite !important;
}

@keyframes electricIcon {
    0%, 100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1) rotate(-2deg) !important;
    }
    25% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.15) rotate(2deg) !important;
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(255, 255, 0, 1)) !important;
        transform: scale(1.25) rotate(-1deg) !important;
    }
    75% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.15) rotate(1deg) !important;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .before-section img {
        height: 140px !important; /* Slightly smaller on tablets */
    }
    .before-section {
        padding: 1.5rem 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .before-section img {
        height: 120px !important; /* Even smaller on phones */
    }
    .before-section {
        padding: 1rem 0 !important;
    }
}

/* Add glowing effect to dark section text */
.dark-section .text p {
    color: #ffff87 !important;
    font-size: 1.3rem !important; /* Increased from 1rem */
    line-height: 2rem !important; /* Increased line height */
    text-shadow: 
        /* Stronger outline */
        -1px -1px 0 rgba(0,0,0,0.4),
        1px -1px 0 rgba(0,0,0,0.4),
        -1px 1px 0 rgba(0,0,0,0.4),
        1px 1px 0 rgba(0,0,0,0.4),
        /* Enhanced yellow glow effect */
        0 0 15px rgba(255, 255, 0, 0.5),
        0 0 25px rgba(255, 255, 0, 0.3);
    font-weight: 500 !important;
    opacity: 1 !important;
    padding: 0.5rem 0 !important; /* Add some vertical spacing */
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .dark-section .text p {
        font-size: 1.1rem !important; /* Slightly smaller on mobile */
        line-height: 1.8rem !important;
        text-shadow: 
            -1px -1px 0 rgba(0,0,0,0.4),
            1px -1px 0 rgba(0,0,0,0.4),
            -1px 1px 0 rgba(0,0,0,0.4),
            1px 1px 0 rgba(0,0,0,0.4),
            0 0 12px rgba(255, 255, 0, 0.4);
    }
}

/* Update text section padding */
.dark-section .columns.text {
    padding: calc(var(--bigpad) * 0.1) !important; /* Reduce to 10% of original padding */
}

/* Mobile adjustments */
@media screen and (max-width: 64em) {
    .dark-section .columns.text {
        padding: calc(var(--bigpad) * 0.1) !important; /* Keep consistent on mobile */
    }
}

/* Update dark section layout */
.dark-section .row.align-middle {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important; /* Remove default gap */
}

/* Left text column */
.dark-section .columns.text:first-child {
    padding-right: 0.5rem !important;
    text-align: right !important;
}

/* Center icon column */
.dark-section .before-section {
    padding: 0 !important;
    margin: 0 -1rem !important; /* Pull icon closer to text */
}

/* Right text column */
.dark-section .columns.text:last-child {
    padding-left: 0.5rem !important;
    text-align: left !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .dark-section .row.align-middle {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .dark-section .columns.text:first-child,
    .dark-section .columns.text:last-child {
        text-align: center !important;
        padding: 0.5rem !important;
    }
    
    .dark-section .before-section {
        margin: 0 !important;
    }
}

/* Center text alignment helper */
.text-center {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 2rem 0 !important;
}

/* Remove any existing margin/padding that might affect centering */
.columns.text .text-center {
    padding: 0 !important;
}

/* Ensure button maintains its style while centered */
.text-center .button {
    margin: 0 auto !important;
}

/* Footer credentials section */
.members {
    padding: 3rem 0 !important;
}

.members h5 {
    color: var(--accent) !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

/* Credential cards */
.cred {
    background: rgba(21, 21, 21, 0.5) !important;
    padding: 2rem !important;
    border-radius: var(--mediumrad) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.cred:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1) !important;
}

.cred img {
    max-width: 200px !important;
    height: auto !important;
    margin-bottom: 1rem !important;
}

.credential-text {
    color: white !important;
    font-size: 1rem !important;
    text-align: center !important;
    margin: 0 !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .members {
        padding: 2rem 0 !important;
    }
    
    .cred {
        padding: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .cred img {
        max-width: 150px !important;
    }
}

/* Contact form section styling */
#contact-form {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 4rem 1rem !important;
}

.multi-booking {
    max-width: 600px !important;
    width: 100% !important;
    margin: 0 auto !important;
    background: rgba(21, 21, 21, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: var(--mediumrad) !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1) !important;
}

/* Form title and text */
.multi-booking h3 {
    color: var(--accent) !important;
    text-align: center !important;
    margin-bottom: 0.5rem !important;
}

.multi-booking p {
    color: white !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

/* Form inputs styling */
.form-group {
    margin-bottom: 1.5rem !important;
}

.form-group label {
    color: white !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 500 !important;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--smallrad) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent) !important;
    outline: none !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2) !important;
}

/* Form buttons */
.multi-booking .button {
    margin-top: 1rem !important;
}

.multi-booking .button2 {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    #contact-form {
        padding: 2rem 1rem !important;
    }
    
    .multi-booking {
        padding: 1.5rem !important;
    }
}

/* Multi-step form styling */
.multi-step-form {
    position: relative !important;
}

/* Hide all form cards by default */
.form-card {
    display: none !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

/* Only show active form card */
.form-card.active {
    display: block !important;
    opacity: 1 !important;
}

/* Form buttons layout */
.form-buttons {
    display: flex !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
}

/* Previous button styling */
.button2 {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    margin-right: 1rem !important;
}

/* Form transition effects */
.form-card.slide-in {
    animation: slideIn 0.3s forwards !important;
}

.form-card.slide-out {
    animation: slideOut 0.3s forwards !important;
}

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

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

/* Form select dropdown styling */
.form-group select {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: var(--smallrad) !important;
    background: #151515 !important;
    color: white !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    line-height: 1.5 !important;
    height: auto !important;
    text-overflow: ellipsis !important;
}

/* Custom dropdown arrow */
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 1.5em !important;
    padding-right: 3rem !important; /* Make room for the arrow */
}

/* Style dropdown options */
.form-group select option {
    background: #151515 !important;
    color: white !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    min-height: 3rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

/* Selected option style */
.form-group select option:checked,
.form-group select option:hover {
    background: var(--accent) !important;
    color: black !important;
}

/* Focus state */
.form-group select:focus {
    border-color: var(--accent) !important;
    outline: none !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2) !important;
}

/* Hover state */
.form-group select:hover {
    border-color: var(--accent) !important;
}

/* Placeholder text color */
.form-group select:invalid {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Enhanced glow effects */
.glow-effect {
    animation: textGlow 2s infinite !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                 0 0 40px rgba(255, 215, 0, 0.4),
                 0 0 60px rgba(255, 215, 0, 0.2) !important;
}

/* Enhanced electrical glow animation */
@keyframes electricalGlow {
    0%, 100% {
        filter: brightness(1) !important;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                    0 0 40px rgba(255, 215, 0, 0.4) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: brightness(1.4) !important;
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.9),
                    0 0 60px rgba(255, 215, 0, 0.6),
                    0 0 90px rgba(255, 215, 0, 0.3) !important;
        transform: scale(1.05) !important;
    }
}

/* Enhanced highlight effect */
.highlight {
    color: var(--accent) !important;
    font-weight: 600 !important;
    animation: electricalGlow 8s ease-in-out infinite !important;
    text-shadow: 0 0 25px rgba(255, 255, 0, 1),
                 0 0 45px rgba(255, 255, 0, 0.8),
                 0 0 65px rgba(255, 255, 0, 0.6) !important;
}

/* Enhanced button glow */
.button {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.button:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4),
                0 0 50px rgba(255, 215, 0, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* Enhanced form focus effects */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3),
                0 0 40px rgba(255, 215, 0, 0.1) !important;
}

/* Enhanced credential cards glow */
.cred {
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.cred:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2),
                0 5px 20px rgba(255, 215, 0, 0.1) !important;
}

/* Enhanced WhatsApp widget glow */
.whatsapp-widget {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-widget:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6) !important;
}

/* Enhanced pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1) !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    }
    70% {
        transform: scale(1.1) !important;
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6) !important;
    }
    100% {
        transform: scale(1) !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    }
}

/* Enhanced bulb icon glow */
.uk-icon[uk-icon="icon: bulb"] {
    color: var(--accent) !important;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8)) 
            drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)) !important;
    animation: bulbGlow 3s ease-in-out infinite !important;
    transform-origin: center !important;
}

@keyframes bulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)) !important;
        transform: scale(1) !important;
        opacity: 1 !important;
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1))
                drop-shadow(0 0 40px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 60px rgba(255, 215, 0, 0.4)) !important;
        transform: scale(1.1) !important;
        opacity: 0.9 !important;
    }
}

/* Make the icon more visible in the dark navbar */
.top-section .uk-icon[uk-icon="icon: bulb"] {
    color: #D7FF0E !important; /* Brighter yellow */
    font-size: 1.2em !important;
    margin-right: 5px !important;
}

/* Enhance glow effect when navbar is scrolled */
.top-section.scrolled .uk-icon[uk-icon="icon: bulb"] {
    animation: bulbGlowScrolled 3s ease-in-out infinite !important;
}

@keyframes bulbGlowScrolled {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9))
                drop-shadow(0 0 30px rgba(255, 215, 0, 0.5)) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1))
                drop-shadow(0 0 50px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 75px rgba(255, 215, 0, 0.6)) !important;
        transform: scale(1.15) !important;
    }
}

/* Super enhanced bulb icon glow */
.uk-icon[uk-icon="icon: bulb"] {
    color: #D7FF0E !important; /* Bright gold */
    font-size: 1.4em !important; /* Larger size */
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1)) 
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.8))
            drop-shadow(0 0 45px rgba(255, 215, 0, 0.6)) !important;
    animation: intenseBulbGlow 2s ease-in-out infinite !important;
    transform-origin: center !important;
    position: relative !important;
    z-index: 10 !important;
}

@keyframes intenseBulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1))
                drop-shadow(0 0 30px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 45px rgba(255, 215, 0, 0.6)) !important;
        transform: scale(1) rotate(0deg) !important;
        color: #D7FF0E !important;
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 0, 1))
                drop-shadow(0 0 60px rgba(255, 255, 0, 0.9))
                drop-shadow(0 0 90px rgba(255, 255, 0, 0.7))
                drop-shadow(0 0 120px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1.2) rotate(5deg) !important;
        color: #FFFF00 !important;
    }
}

/* Make the icon even more visible in the dark navbar */
.top-section .uk-icon[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Even brighter yellow */
    font-size: 1.5em !important; /* Even larger */
    margin-right: 8px !important;
    text-shadow: 0 0 20px rgba(255, 255, 0, 1) !important;
}

/* Super enhanced glow effect when navbar is scrolled */
.top-section.scrolled .uk-icon[uk-icon="icon: bulb"] {
    animation: intenseBulbGlowScrolled 2s ease-in-out infinite !important;
}

@keyframes intenseBulbGlowScrolled {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 0, 1))
                drop-shadow(0 0 40px rgba(255, 255, 0, 0.8))
                drop-shadow(0 0 60px rgba(255, 255, 0, 0.6)) !important;
        transform: scale(1) rotate(-5deg) !important;
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
                drop-shadow(0 0 80px rgba(255, 255, 0, 0.9))
                drop-shadow(0 0 120px rgba(255, 255, 0, 0.7))
                drop-shadow(0 0 160px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1.3) rotate(5deg) !important;
    }
}

/* Add pseudo-element for extra glow */
.uk-icon[uk-icon="icon: bulb"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.4) 0%,
        rgba(255, 255, 0, 0.2) 30%,
        transparent 70%);
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Target the specific bulb icon in navigation */
nav ul li a .uk-icon[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Pure yellow */
    font-size: 2em !important; /* Much larger */
    filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
            drop-shadow(0 0 80px rgba(255, 255, 0, 0.9))
            drop-shadow(0 0 120px rgba(255, 255, 0, 0.7)) !important;
    animation: superIntenseBulbGlow 1.5s ease-in-out infinite !important;
    transform-origin: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 10px !important;
    position: relative !important;
    z-index: 100 !important; /* Ensure it's above other elements */
}

@keyframes superIntenseBulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
                drop-shadow(0 0 80px rgba(255, 255, 0, 0.9)) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: drop-shadow(0 0 60px rgba(255, 255, 0, 1))
                drop-shadow(0 0 120px rgba(255, 255, 0, 1))
                drop-shadow(0 0 180px rgba(255, 255, 0, 0.9)) !important;
        transform: scale(1.4) !important;
    }
}

/* Add a glowing background */
nav ul li a .uk-icon[uk-icon="icon: bulb"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.6) 0%,
        rgba(255, 255, 0, 0.3) 30%,
        transparent 70%);
    z-index: -1;
    animation: pulseBackground 1.5s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
}

/* Override any potential conflicting styles */
.uk-icon[uk-icon="icon: bulb"] svg {
    stroke: #FFFF00 !important;
    stroke-width: 2 !important;
    fill: #FFFF00 !important;
}

/* Ensure the icon container doesn't clip the glow */
nav ul li a {
    overflow: visible !important;
}

nav ul li {
    overflow: visible !important;
}

.top-section nav {
    overflow: visible !important;
}

/* Target the specific navigation bulb icon */
.uk-navbar-nav .uk-icon[uk-icon="icon: bulb"],
nav .uk-icon[uk-icon="icon: bulb"],
[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Bright yellow */
    font-size: 24px !important; /* Much larger */
    position: relative !important;
    z-index: 1000 !important;
    display: inline-block !important;
    animation: extremeGlow 2s infinite !important;
    transform-origin: center !important;
    margin: 0 5px !important;
}

/* Extreme glow animation */
@keyframes extremeGlow {
    0%, 100% {
        filter: 
            brightness(1.5)
            drop-shadow(0 0 10px #FFFF00)
            drop-shadow(0 0 20px #FFFF00)
            drop-shadow(0 0 30px #FFFF00) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: 
            brightness(2)
            drop-shadow(0 0 20px #FFFF00)
            drop-shadow(0 0 40px #FFFF00)
            drop-shadow(0 0 60px #FFFF00) !important;
        transform: scale(1.2) !important;
    }
}

/* Force SVG colors */
[uk-icon="icon: bulb"] svg * {
    stroke: #FFFF00 !important;
    fill: #FFFF00 !important;
    stroke-width: 2 !important;
}

/* Add a glowing orb behind the icon */
[uk-icon="icon: bulb"]::after {
    content: '';
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 30px !important;
    height: 30px !important;
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.8) 0%,
        rgba(255, 255, 0, 0.4) 50%,
        transparent 70%) !important;
    transform: translate(-50%, -50%) !important;
    z-index: -1 !important;
    pointer-events: none !important;
    animation: orbPulse 2s infinite !important;
}

@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
}


/* Enhanced electrical light effect */
.highlight {
    color: #FFFF00 !important;
    font-weight: 600 !important;
    position: relative !important;
    display: inline-block !important;
    animation: electricLight 4s ease-in-out infinite !important;
}

@keyframes electricLight {
    0%, 100% {
        color: #FFFFFF !important;
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(255, 255, 255, 0.6);
    }
    45%, 55% {
        color: #FFFF00 !important;
        text-shadow: 
            0 0 30px rgba(255, 255, 0, 1),
            0 0 60px rgba(255, 255, 0, 1),
            0 0 90px rgba(255, 255, 0, 0.8),
            0 0 120px rgba(255, 255, 0, 0.6);
    }
}

/* Add light rays effect */
.highlight::before {
    content: '';
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 150% !important;
    height: 150% !important;
    transform: translate(-50%, -50%) !important;
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.8) 0%,
        rgba(255, 255, 0, 0.4) 30%,
        transparent 70%
    ) !important;
    z-index: -1 !important;
    opacity: 0 !important;
    animation: lightRays 4s ease-in-out infinite !important;
}

@keyframes lightRays {
    0%, 100% {
        opacity: 0 !important;
        background: radial-gradient(circle, 
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.4) 30%,
            transparent 70%
        ) !important;
    }
    45%, 55% {
        opacity: 1 !important;
        background: radial-gradient(circle, 
            rgba(255, 255, 0, 0.8) 0%,
            rgba(255, 255, 0, 0.4) 30%,
            transparent 70%
        ) !important;
    }
}

/* Add subtle flicker effect */
.highlight span {
    animation: flicker 0.15s ease-in-out infinite alternate !important;
}

@keyframes flicker {
    0% {
        opacity: 0.97 !important;
    }
    100% {
        opacity: 1 !important;
    }
}

/* Logo container styles with electrical effects */
.logo-container {
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Base logo styles */
.logo-base {
    max-height: var(--logoheight) !important;
    width: auto !important;
    display: block !important;
    position: relative !important;
    z-index: 2 !important;
    filter: brightness(0) invert(1) !important; /* Re-add this to make logo white */
}

/* Icon (bulb) styles with enhanced electrical effects */
.logo-icon {
    height: 60px !important;
    width: auto !important;
    display: block !important;
    margin-left: -4px !important;
    position: relative !important;
    z-index: 3 !important;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important; /* Re-add brightness(0) invert(1) */
    animation: electricalIcon 3s ease-in-out infinite !important;
}

/* Add electrical animation for the icon */
@keyframes electricalIcon {
    0%, 100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1) rotate(-2deg) !important;
    }
    25% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.1) rotate(2deg) !important;
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(255, 255, 0, 1)) !important;
        transform: scale(1.2) rotate(-1deg) !important;
    }
    75% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.1) rotate(1deg) !important;
    }
}

/* Add glowing effect behind the logo */
.logo-container::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 120% !important;
    height: 120% !important;
    transform: translate(-50%, -50%) !important;
    background: radial-gradient(
        circle,
        rgba(255, 255, 0, 0.2) 0%,
        rgba(255, 255, 0, 0.1) 30%,
        transparent 70%
    ) !important;
    z-index: 1 !important;
    animation: logoGlow 3s ease-in-out infinite !important;
    pointer-events: none !important;
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.5 !important;
        transform: translate(-50%, -50%) scale(1) !important;
    }
    50% {
        opacity: 0.8 !important;
        transform: translate(-50%, -50%) scale(1.1) !important;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .logo-container {
        gap: 1px !important;
    }
    
    .logo-icon {
        height: 50px !important;
        margin-left: -2px !important;
    }
    
    .logo-container::after {
        width: 110% !important;
        height: 110% !important;
    }
}

/* Add electrical sparks effect */
.logo-icon::before,
.logo-icon::after {
    content: '' !important;
    position: absolute !important;
    width: 20px !important;
    height: 2px !important;
    background: rgba(255, 255, 0, 0.8) !important;
    filter: blur(1px) !important;
    z-index: 2 !important;
    opacity: 0 !important;
    animation: sparkEffect 2s infinite !important;
}

.logo-icon::before {
    top: 20% !important;
    right: -10px !important;
    transform: rotate(45deg) !important;
    animation-delay: 0.5s !important;
}

.logo-icon::after {
    bottom: 20% !important;
    right: -10px !important;
    transform: rotate(-45deg) !important;
    animation-delay: 1s !important;
}

@keyframes sparkEffect {
    0%, 100% {
        opacity: 0 !important;
        width: 0 !important;
    }
    10%, 30% {
        opacity: 1 !important;
        width: 20px !important;
    }
    40% {
        opacity: 0 !important;
        width: 0 !important;
    }
}

/* Remove parallax scrolling from about section image */
.intro .bigbg {
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    min-height: 400px !important;
    transform: none !important;
}

.intro .bigbg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: relative !important;
    transform: none !important;
}

/* Remove any parallax effects */
.intro [uk-parallax], 
.intro div, 
.intro .columns,
.intro .row,
.intro .bigbg,
.intro img {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    position: relative !important;
}

/* Ensure container maintains proper dimensions */
.intro .columns.small-12.medium-12.large-6 {
    height: auto !important;
    min-height: 400px !important;
}

/* Remove parallax scrolling from white-section image */
.white-section .bigbg.hundred {
    position: absolute !important;
    overflow: hidden !important;
    height: 100% !important;
    min-height: 350px !important; /* Increased from 300px to 350px */
    max-height: 350px !important; /* Increased from 300px to 350px */
}

.white-section .bigbg.hundred img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    transform: none !important;
}

/* Adjust container dimensions to match */
.white-section .columns.small-12.medium-6.large-6 {
    height: auto !important;
    min-height: 350px !important; /* Increased from 300px to 350px */
    max-height: 350px !important; /* Increased from 300px to 350px */
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .white-section .bigbg.hundred {
        min-height: 300px !important; /* Increased from 250px to 300px */
        max-height: 300px !important; /* Increased from 250px to 300px */
    }
    
    .white-section .columns.small-12.medium-6.large-6 {
        min-height: 300px !important; /* Increased from 250px to 300px */
        max-height: 300px !important; /* Increased from 250px to 300px */
    }
}

/* Remove top padding from white-section */
.columns.white-section {
    padding-top: 0 !important;
}

/* Maintain other white-section styles */
.white-section .bigbg.hundred {
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    min-height: 350px !important;
    max-height: 350px !important;
}

/* Update mobile navigation styles */
@media screen and (max-width: 64em) {
    /* Logo styles */
    .logo {
        text-align: center;
        width: 100%;
        padding: 10px 60px;
        margin-bottom: 0;
    }
    
    /* Navigation container */
    .navigation {
        width: 100%;
        text-align: center;
        padding: 0;
        margin-top: 10px;
    }
    
    /* Navigation list */
    .navigation ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
    }
    
    /* Navigation items */
    .navigation ul li {
        width: 100%;
        text-align: center;
    }
    
    .navigation ul li a {
        display: block;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    /* Adjust header padding for mobile */
    .top-section {
        padding: calc(var(--smallpad) * 0.5) 0 !important;
        flex-direction: column;
    }
    
    /* Adjust row alignment */
    .row.align-middle.widerow {
        flex-direction: column;
    }
    
    /* Hide navigation by default on mobile */
    .navigation {
        display: none;
    }
    
    /* Show navigation when mobile menu is active */
    .mobile-menu-active .navigation {
        display: block;
    }
}

/* Ensure mobile menu toggle works */
.nav-toggler {
    display: none;
}

@media screen and (max-width: 64em) {
    .nav-toggler {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 1000;
    }
}

/* Add smooth transitions */
.navigation {
    transition: all 0.3s ease-in-out;
}

.navigation ul li a {
    transition: color 0.2s ease-in-out;
}

/* Add responsive text for photo description */
.photo-description:after {
    content: 'right';
}

@media screen and (max-width: 64em) {
    .photo-description:after {
        content: 'below';
    }
}

/* Emergency contact button styles */
.emergency-contact {
    margin-top: 20px !important;
}

.emergency-contact a {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 5px !important;
    transition: background-color 0.3s ease !important;
}

.emergency-contact a:hover {
    background-color: #cc0000 !important;
    color: white !important;
}

.emergency-label {
    font-size: 1rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
}

.emergency-number {
    font-size: 1.2rem !important;
    font-weight: bold !important;
}

/* Add some separation from other menu items */
.mobile-menu ul li.emergency-contact {
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Desktop emergency contact button styles */
.navigation .emergency-contact {
    margin-left: 15px !important;
}

.navigation .emergency-contact a {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    display: flex !important;
    flex-direction: column !important;  /* Changed to column to match mobile */
    align-items: center !important;
    gap: 5px !important;
    min-width: 200px !important;  /* Ensure minimum width */
}

.navigation .emergency-contact a:hover {
    background-color: #cc0000 !important;
}

.navigation .emergency-label {
    font-size: 1rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
    display: block !important;
    text-align: center !important;
}

.navigation .emergency-number {
    font-size: 1.2rem !important;
    font-weight: bold !important;
    display: block !important;
    text-align: center !important;
}

/* Hide the after pseudo-element for emergency contact */
.navigation .emergency-contact a::after {
    display: none !important;
}

/* Remove any default navigation styles that might interfere */
.navigation ul li.emergency-contact {
    display: flex !important;
    align-items: center !important;
}

.navigation ul li.emergency-contact > a {
    margin-right: 0 !important;
}

/* Responsive adjustments */
@media screen and (max-width: 64em) {
    .navigation .emergency-contact {
        display: none !important; /* Hide in desktop nav when mobile */
    }
}

/* Mobile emergency contact button styles */
.mobile-menu .emergency-contact a {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 15px 20px !important;
    display: flex !important;
    flex-direction: column !important;  /* Stack vertically on mobile */
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;  /* Full width on mobile */
    text-align: center !important;
}

.mobile-menu .emergency-label {
    font-size: 1.2rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
    display: block !important;  /* Ensure block display */
    width: 100% !important;
}

.mobile-menu .emergency-number {
    font-size: 1.4rem !important;
    font-weight: bold !important;
    display: block !important;  /* Ensure block display */
    width: 100% !important;
}

/* Add separation from other menu items in mobile */
.mobile-menu ul li.emergency-contact {
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
}

/* Hover effects */
.emergency-contact a:hover {
    background-color: #cc0000 !important;
    color: white !important;
}

/* Header emergency contact styles */
.header-emergency-contact {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    padding-right: 20px !important;
}

.emergency-button {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 8px 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2px !important;
    text-decoration: none !important;
    transition: background-color 0.3s ease !important;
}

.emergency-button:hover {
    background-color: #cc0000 !important;
    color: white !important;
}

.emergency-button .emergency-label {
    font-size: 0.9rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
}

.emergency-button .emergency-number {
    font-size: 1.1rem !important;
    font-weight: bold !important;
}

/* Mobile adjustments */
@media screen and (max-width: 64em) {
    .header-emergency-contact {
        display: none !important; /* Hide on mobile since it's in the mobile menu */
    }
}

/* Fixed emergency contact styles - Desktop */
.emergency-contact-fixed {
    position: fixed !important;
    top: calc(var(--logoheight) + var(--smallpad) * 2) !important;
    right: 0 !important;
    z-index: 998 !important;
}

/* Mobile adjustments for emergency button */
@media screen and (max-width: 64em) {
    .emergency-contact-fixed {
        position: fixed !important;
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding: 16px !important;
        z-index: 999 !important;
        background-color: transparent !important;
    }

    /* Increase padding at the bottom of main content */
    main {
        padding-bottom: 120px !important; /* Increased from 100px to 120px */
    }

    /* Add margin to the bottom of the last section */
    main > section:last-child {
        margin-bottom: 80px !important;
    }

    .emergency-button {
        width: 100% !important;
        justify-content: center !important;
        padding: 15px 20px !important;
        border-radius: 0 !important;
        flex-direction: row !important;
        gap: 10px !important;
        background-color: #ff0000 !important;
    }

    .emergency-button .emergency-label,
    .emergency-button .emergency-number {
        font-size: 1.1rem !important;
    }
}

.emergency-button {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px 0 0 8px !important; /* Only round the left corners */
    padding: 8px 15px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
}

/* Review section button styles */
.small-section.tac {
    margin-top: 2rem !important;
}

.small-section.tac .button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.small-section.tac .button span[uk-icon] {
    transition: transform 0.3s ease !important;
}

.small-section.tac .button:hover span[uk-icon] {
    transform: translateX(5px) !important;
}

/* Reviews grid layout */
.reviews-grid {
    margin: 0 -1rem !important;
}

.reviews-grid .column {
    padding: 1rem !important;
}

.reviews-grid blockquote {
    height: 100% !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    position: relative !important;
    background: var(--dark) !important;
    border-radius: var(--mediumrad) !important;
    overflow: hidden !important;
    padding: 0 !important;
    box-shadow: 0 3px 5px rgba(0,0,0,0.4) !important;
    transition: all 0.3s ease !important;
}

/* Remove any existing background styles */
.reviews-grid blockquote.darkbg {
    background: var(--dark) !important; /* Force dark background */
}

/* Remove any existing before/after elements that might add backgrounds */
.reviews-grid blockquote::before,
.reviews-grid blockquote::after {
    display: none !important;
}

/* Ensure consistent text content styling */
.reviews-grid .review-content {
    flex-grow: 1 !important;
    padding: 2.5rem 1.5rem 1.5rem !important;
    background: transparent !important; /* Remove any background */
}

.reviews-grid .review-content p {
    color: white !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
    position: relative !important;
    z-index: 2 !important;
}

.reviews-grid .author {
    margin-top: 0.5rem !important;
    padding: 0 1.5rem 1.5rem !important;
    color: var(--accent) !important;
    font-size: 0.8rem !important;
}

/* Hover effect matching the accreditation tiles */
.reviews-grid blockquote:hover {
    transform: translateY(-5px) !important;
    box-shadow: 
        0 8px 15px rgba(0,0,0,0.4),
        0 0 10px rgba(255, 215, 0, 0.1),
        0 0 20px rgba(255, 255, 135, 0.05) !important;
}

/* Quote mark in top-left */
.reviews-grid blockquote::before {
    content: '"' !important;
    position: absolute !important;
    top: 1rem !important;
    left: 1rem !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
    color: var(--accent) !important;
    opacity: 0.5 !important;
}

/* Update dark section icon with larger size and more intense glow */
.before-section {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 2 !important;
    padding: 2rem 0 !important;
    overflow: visible !important; /* Allow glow to extend outside */
}

.before-section img {
    height: 180px !important;
    width: auto !important;
    position: relative !important;
    z-index: 3 !important;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
    animation: electricIcon 2s ease-in-out infinite !important;
}

@keyframes electricIcon {
    0%, 100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1) rotate(-2deg) !important;
    }
    25% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.15) rotate(2deg) !important;
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(255, 255, 0, 1)) !important;
        transform: scale(1.25) rotate(-1deg) !important;
    }
    75% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.15) rotate(1deg) !important;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .before-section img {
        height: 140px !important; /* Slightly smaller on tablets */
    }
    .before-section {
        padding: 1.5rem 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .before-section img {
        height: 120px !important; /* Even smaller on phones */
    }
    .before-section {
        padding: 1rem 0 !important;
    }
}

/* Add glowing effect to dark section text */
.dark-section .text p {
    color: #ffff87 !important;
    font-size: 1.3rem !important; /* Increased from 1rem */
    line-height: 2rem !important; /* Increased line height */
    text-shadow: 
        /* Stronger outline */
        -1px -1px 0 rgba(0,0,0,0.4),
        1px -1px 0 rgba(0,0,0,0.4),
        -1px 1px 0 rgba(0,0,0,0.4),
        1px 1px 0 rgba(0,0,0,0.4),
        /* Enhanced yellow glow effect */
        0 0 15px rgba(255, 255, 0, 0.5),
        0 0 25px rgba(255, 255, 0, 0.3);
    font-weight: 500 !important;
    opacity: 1 !important;
    padding: 0.5rem 0 !important; /* Add some vertical spacing */
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .dark-section .text p {
        font-size: 1.1rem !important; /* Slightly smaller on mobile */
        line-height: 1.8rem !important;
        text-shadow: 
            -1px -1px 0 rgba(0,0,0,0.4),
            1px -1px 0 rgba(0,0,0,0.4),
            -1px 1px 0 rgba(0,0,0,0.4),
            1px 1px 0 rgba(0,0,0,0.4),
            0 0 12px rgba(255, 255, 0, 0.4);
    }
}

/* Update text section padding */
.dark-section .columns.text {
    padding: calc(var(--bigpad) * 0.1) !important; /* Reduce to 10% of original padding */
}

/* Mobile adjustments */
@media screen and (max-width: 64em) {
    .dark-section .columns.text {
        padding: calc(var(--bigpad) * 0.1) !important; /* Keep consistent on mobile */
    }
}

/* Update dark section layout */
.dark-section .row.align-middle {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important; /* Remove default gap */
}

/* Left text column */
.dark-section .columns.text:first-child {
    padding-right: 0.5rem !important;
    text-align: right !important;
}

/* Center icon column */
.dark-section .before-section {
    padding: 0 !important;
    margin: 0 -1rem !important; /* Pull icon closer to text */
}

/* Right text column */
.dark-section .columns.text:last-child {
    padding-left: 0.5rem !important;
    text-align: left !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .dark-section .row.align-middle {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .dark-section .columns.text:first-child,
    .dark-section .columns.text:last-child {
        text-align: center !important;
        padding: 0.5rem !important;
    }
    
    .dark-section .before-section {
        margin: 0 !important;
    }
}

/* Center text alignment helper */
.text-center {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 2rem 0 !important;
}

/* Remove any existing margin/padding that might affect centering */
.columns.text .text-center {
    padding: 0 !important;
}

/* Ensure button maintains its style while centered */
.text-center .button {
    margin: 0 auto !important;
}

/* Footer credentials section */
.members {
    padding: 3rem 0 !important;
}

.members h5 {
    color: var(--accent) !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

/* Credential cards */
.cred {
    background: rgba(21, 21, 21, 0.5) !important;
    padding: 2rem !important;
    border-radius: var(--mediumrad) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.cred:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1) !important;
}

.cred img {
    max-width: 200px !important;
    height: auto !important;
    margin-bottom: 1rem !important;
}

.credential-text {
    color: white !important;
    font-size: 1rem !important;
    text-align: center !important;
    margin: 0 !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .members {
        padding: 2rem 0 !important;
    }
    
    .cred {
        padding: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .cred img {
        max-width: 150px !important;
    }
}

/* Contact form section styling */
#contact-form {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 4rem 1rem !important;
}

.multi-booking {
    max-width: 600px !important;
    width: 100% !important;
    margin: 0 auto !important;
    background: rgba(21, 21, 21, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: var(--mediumrad) !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1) !important;
}

/* Form title and text */
.multi-booking h3 {
    color: var(--accent) !important;
    text-align: center !important;
    margin-bottom: 0.5rem !important;
}

.multi-booking p {
    color: white !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

/* Form inputs styling */
.form-group {
    margin-bottom: 1.5rem !important;
}

.form-group label {
    color: white !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 500 !important;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--smallrad) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent) !important;
    outline: none !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2) !important;
}

/* Form buttons */
.multi-booking .button {
    margin-top: 1rem !important;
}

.multi-booking .button2 {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    #contact-form {
        padding: 2rem 1rem !important;
    }
    
    .multi-booking {
        padding: 1.5rem !important;
    }
}

/* Multi-step form styling */
.multi-step-form {
    position: relative !important;
}

/* Hide all form cards by default */
.form-card {
    display: none !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

/* Only show active form card */
.form-card.active {
    display: block !important;
    opacity: 1 !important;
}

/* Form buttons layout */
.form-buttons {
    display: flex !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
}

/* Previous button styling */
.button2 {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    margin-right: 1rem !important;
}

/* Form transition effects */
.form-card.slide-in {
    animation: slideIn 0.3s forwards !important;
}

.form-card.slide-out {
    animation: slideOut 0.3s forwards !important;
}

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

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

/* Form select dropdown styling */
.form-group select {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: var(--smallrad) !important;
    background: #151515 !important;
    color: white !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    line-height: 1.5 !important;
    height: auto !important;
    text-overflow: ellipsis !important;
}

/* Custom dropdown arrow */
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 1.5em !important;
    padding-right: 3rem !important; /* Make room for the arrow */
}

/* Style dropdown options */
.form-group select option {
    background: #151515 !important;
    color: white !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    min-height: 3rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

/* Selected option style */
.form-group select option:checked,
.form-group select option:hover {
    background: var(--accent) !important;
    color: black !important;
}

/* Focus state */
.form-group select:focus {
    border-color: var(--accent) !important;
    outline: none !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2) !important;
}

/* Hover state */
.form-group select:hover {
    border-color: var(--accent) !important;
}

/* Placeholder text color */
.form-group select:invalid {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Enhanced glow effects */
.glow-effect {
    animation: textGlow 2s infinite !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                 0 0 40px rgba(255, 215, 0, 0.4),
                 0 0 60px rgba(255, 215, 0, 0.2) !important;
}

/* Enhanced electrical glow animation */
@keyframes electricalGlow {
    0%, 100% {
        filter: brightness(1) !important;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                    0 0 40px rgba(255, 215, 0, 0.4) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: brightness(1.4) !important;
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.9),
                    0 0 60px rgba(255, 215, 0, 0.6),
                    0 0 90px rgba(255, 215, 0, 0.3) !important;
        transform: scale(1.05) !important;
    }
}

/* Enhanced highlight effect */
.highlight {
    color: var(--accent) !important;
    font-weight: 600 !important;
    animation: electricalGlow 8s ease-in-out infinite !important;
    text-shadow: 0 0 25px rgba(255, 255, 0, 1),
                 0 0 45px rgba(255, 255, 0, 0.8),
                 0 0 65px rgba(255, 255, 0, 0.6) !important;
}

/* Enhanced button glow */
.button {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.button:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4),
                0 0 50px rgba(255, 215, 0, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* Enhanced form focus effects */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3),
                0 0 40px rgba(255, 215, 0, 0.1) !important;
}

/* Enhanced credential cards glow */
.cred {
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.cred:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2),
                0 5px 20px rgba(255, 215, 0, 0.1) !important;
}

/* Enhanced WhatsApp widget glow */
.whatsapp-widget {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-widget:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6) !important;
}

/* Enhanced pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1) !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    }
    70% {
        transform: scale(1.1) !important;
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6) !important;
    }
    100% {
        transform: scale(1) !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    }
}

/* Enhanced bulb icon glow */
.uk-icon[uk-icon="icon: bulb"] {
    color: var(--accent) !important;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8)) 
            drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)) !important;
    animation: bulbGlow 3s ease-in-out infinite !important;
    transform-origin: center !important;
}

@keyframes bulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)) !important;
        transform: scale(1) !important;
        opacity: 1 !important;
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1))
                drop-shadow(0 0 40px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 60px rgba(255, 215, 0, 0.4)) !important;
        transform: scale(1.1) !important;
        opacity: 0.9 !important;
    }
}

/* Make the icon more visible in the dark navbar */
.top-section .uk-icon[uk-icon="icon: bulb"] {
    color: #D7FF0E !important; /* Brighter yellow */
    font-size: 1.2em !important;
    margin-right: 5px !important;
}

/* Enhance glow effect when navbar is scrolled */
.top-section.scrolled .uk-icon[uk-icon="icon: bulb"] {
    animation: bulbGlowScrolled 3s ease-in-out infinite !important;
}

@keyframes bulbGlowScrolled {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9))
                drop-shadow(0 0 30px rgba(255, 215, 0, 0.5)) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1))
                drop-shadow(0 0 50px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 75px rgba(255, 215, 0, 0.6)) !important;
        transform: scale(1.15) !important;
    }
}

/* Super enhanced bulb icon glow */
.uk-icon[uk-icon="icon: bulb"] {
    color: #D7FF0E !important; /* Bright gold */
    font-size: 1.4em !important; /* Larger size */
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1)) 
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.8))
            drop-shadow(0 0 45px rgba(255, 215, 0, 0.6)) !important;
    animation: intenseBulbGlow 2s ease-in-out infinite !important;
    transform-origin: center !important;
    position: relative !important;
    z-index: 10 !important;
}

@keyframes intenseBulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1))
                drop-shadow(0 0 30px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 45px rgba(255, 215, 0, 0.6)) !important;
        transform: scale(1) rotate(0deg) !important;
        color: #D7FF0E !important;
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 0, 1))
                drop-shadow(0 0 60px rgba(255, 255, 0, 0.9))
                drop-shadow(0 0 90px rgba(255, 255, 0, 0.7))
                drop-shadow(0 0 120px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1.2) rotate(5deg) !important;
        color: #FFFF00 !important;
    }
}

/* Make the icon even more visible in the dark navbar */
.top-section .uk-icon[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Even brighter yellow */
    font-size: 1.5em !important; /* Even larger */
    margin-right: 8px !important;
    text-shadow: 0 0 20px rgba(255, 255, 0, 1) !important;
}

/* Super enhanced glow effect when navbar is scrolled */
.top-section.scrolled .uk-icon[uk-icon="icon: bulb"] {
    animation: intenseBulbGlowScrolled 2s ease-in-out infinite !important;
}

@keyframes intenseBulbGlowScrolled {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 0, 1))
                drop-shadow(0 0 40px rgba(255, 255, 0, 0.8))
                drop-shadow(0 0 60px rgba(255, 255, 0, 0.6)) !important;
        transform: scale(1) rotate(-5deg) !important;
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
                drop-shadow(0 0 80px rgba(255, 255, 0, 0.9))
                drop-shadow(0 0 120px rgba(255, 255, 0, 0.7))
                drop-shadow(0 0 160px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1.3) rotate(5deg) !important;
    }
}

/* Add pseudo-element for extra glow */
.uk-icon[uk-icon="icon: bulb"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.4) 0%,
        rgba(255, 255, 0, 0.2) 30%,
        transparent 70%);
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Target the specific bulb icon in navigation */
nav ul li a .uk-icon[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Pure yellow */
    font-size: 2em !important; /* Much larger */
    filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
            drop-shadow(0 0 80px rgba(255, 255, 0, 0.9))
            drop-shadow(0 0 120px rgba(255, 255, 0, 0.7)) !important;
    animation: superIntenseBulbGlow 1.5s ease-in-out infinite !important;
    transform-origin: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 10px !important;
    position: relative !important;
    z-index: 100 !important; /* Ensure it's above other elements */
}

@keyframes superIntenseBulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
                drop-shadow(0 0 80px rgba(255, 255, 0, 0.9)) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: drop-shadow(0 0 60px rgba(255, 255, 0, 1))
                drop-shadow(0 0 120px rgba(255, 255, 0, 1))
                drop-shadow(0 0 180px rgba(255, 255, 0, 0.9)) !important;
        transform: scale(1.4) !important;
    }
}

/* Add a glowing background */
nav ul li a .uk-icon[uk-icon="icon: bulb"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.6) 0%,
        rgba(255, 255, 0, 0.3) 30%,
        transparent 70%);
    z-index: -1;
    animation: pulseBackground 1.5s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
}

/* Override any potential conflicting styles */
.uk-icon[uk-icon="icon: bulb"] svg {
    stroke: #FFFF00 !important;
    stroke-width: 2 !important;
    fill: #FFFF00 !important;
}

/* Ensure the icon container doesn't clip the glow */
nav ul li a {
    overflow: visible !important;
}

nav ul li {
    overflow: visible !important;
}

.top-section nav {
    overflow: visible !important;
}

/* Target the specific navigation bulb icon */
.uk-navbar-nav .uk-icon[uk-icon="icon: bulb"],
nav .uk-icon[uk-icon="icon: bulb"],
[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Bright yellow */
    font-size: 24px !important; /* Much larger */
    position: relative !important;
    z-index: 1000 !important;
    display: inline-block !important;
    animation: extremeGlow 2s infinite !important;
    transform-origin: center !important;
    margin: 0 5px !important;
}

/* Extreme glow animation */
@keyframes extremeGlow {
    0%, 100% {
        filter: 
            brightness(1.5)
            drop-shadow(0 0 10px #FFFF00)
            drop-shadow(0 0 20px #FFFF00)
            drop-shadow(0 0 30px #FFFF00) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: 
            brightness(2)
            drop-shadow(0 0 20px #FFFF00)
            drop-shadow(0 0 40px #FFFF00)
            drop-shadow(0 0 60px #FFFF00) !important;
        transform: scale(1.2) !important;
    }
}

/* Force SVG colors */
[uk-icon="icon: bulb"] svg * {
    stroke: #FFFF00 !important;
    fill: #FFFF00 !important;
    stroke-width: 2 !important;
}

/* Add a glowing orb behind the icon */
[uk-icon="icon: bulb"]::after {
    content: '';
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 30px !important;
    height: 30px !important;
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.8) 0%,
        rgba(255, 255, 0, 0.4) 50%,
        transparent 70%) !important;
    transform: translate(-50%, -50%) !important;
    z-index: -1 !important;
    pointer-events: none !important;
    animation: orbPulse 2s infinite !important;
}

@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
}


/* Enhanced electrical light effect */
.highlight {
    color: #FFFF00 !important;
    font-weight: 600 !important;
    position: relative !important;
    display: inline-block !important;
    animation: electricLight 4s ease-in-out infinite !important;
}

@keyframes electricLight {
    0%, 100% {
        color: #FFFFFF !important;
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(255, 255, 255, 0.6);
    }
    45%, 55% {
        color: #FFFF00 !important;
        text-shadow: 
            0 0 30px rgba(255, 255, 0, 1),
            0 0 60px rgba(255, 255, 0, 1),
            0 0 90px rgba(255, 255, 0, 0.8),
            0 0 120px rgba(255, 255, 0, 0.6);
    }
}

/* Add light rays effect */
.highlight::before {
    content: '';
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 150% !important;
    height: 150% !important;
    transform: translate(-50%, -50%) !important;
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.8) 0%,
        rgba(255, 255, 0, 0.4) 30%,
        transparent 70%
    ) !important;
    z-index: -1 !important;
    opacity: 0 !important;
    animation: lightRays 4s ease-in-out infinite !important;
}

@keyframes lightRays {
    0%, 100% {
        opacity: 0 !important;
        background: radial-gradient(circle, 
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.4) 30%,
            transparent 70%
        ) !important;
    }
    45%, 55% {
        opacity: 1 !important;
        background: radial-gradient(circle, 
            rgba(255, 255, 0, 0.8) 0%,
            rgba(255, 255, 0, 0.4) 30%,
            transparent 70%
        ) !important;
    }
}

/* Add subtle flicker effect */
.highlight span {
    animation: flicker 0.15s ease-in-out infinite alternate !important;
}

@keyframes flicker {
    0% {
        opacity: 0.97 !important;
    }
    100% {
        opacity: 1 !important;
    }
}

/* Logo container styles with electrical effects */
.logo-container {
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Base logo styles */
.logo-base {
    max-height: var(--logoheight) !important;
    width: auto !important;
    display: block !important;
    position: relative !important;
    z-index: 2 !important;
    filter: brightness(0) invert(1) !important; /* Re-add this to make logo white */
}

/* Icon (bulb) styles with enhanced electrical effects */
.logo-icon {
    height: 60px !important;
    width: auto !important;
    display: block !important;
    margin-left: -4px !important;
    position: relative !important;
    z-index: 3 !important;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important; /* Re-add brightness(0) invert(1) */
    animation: electricalIcon 3s ease-in-out infinite !important;
}

/* Add electrical animation for the icon */
@keyframes electricalIcon {
    0%, 100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1) rotate(-2deg) !important;
    }
    25% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.1) rotate(2deg) !important;
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(255, 255, 0, 1)) !important;
        transform: scale(1.2) rotate(-1deg) !important;
    }
    75% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.1) rotate(1deg) !important;
    }
}

/* Add glowing effect behind the logo */
.logo-container::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 120% !important;
    height: 120% !important;
    transform: translate(-50%, -50%) !important;
    background: radial-gradient(
        circle,
        rgba(255, 255, 0, 0.2) 0%,
        rgba(255, 255, 0, 0.1) 30%,
        transparent 70%
    ) !important;
    z-index: 1 !important;
    animation: logoGlow 3s ease-in-out infinite !important;
    pointer-events: none !important;
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.5 !important;
        transform: translate(-50%, -50%) scale(1) !important;
    }
    50% {
        opacity: 0.8 !important;
        transform: translate(-50%, -50%) scale(1.1) !important;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .logo-container {
        gap: 1px !important;
    }
    
    .logo-icon {
        height: 50px !important;
        margin-left: -2px !important;
    }
    
    .logo-container::after {
        width: 110% !important;
        height: 110% !important;
    }
}

/* Add electrical sparks effect */
.logo-icon::before,
.logo-icon::after {
    content: '' !important;
    position: absolute !important;
    width: 20px !important;
    height: 2px !important;
    background: rgba(255, 255, 0, 0.8) !important;
    filter: blur(1px) !important;
    z-index: 2 !important;
    opacity: 0 !important;
    animation: sparkEffect 2s infinite !important;
}

.logo-icon::before {
    top: 20% !important;
    right: -10px !important;
    transform: rotate(45deg) !important;
    animation-delay: 0.5s !important;
}

.logo-icon::after {
    bottom: 20% !important;
    right: -10px !important;
    transform: rotate(-45deg) !important;
    animation-delay: 1s !important;
}

@keyframes sparkEffect {
    0%, 100% {
        opacity: 0 !important;
        width: 0 !important;
    }
    10%, 30% {
        opacity: 1 !important;
        width: 20px !important;
    }
    40% {
        opacity: 0 !important;
        width: 0 !important;
    }
}

/* Remove parallax scrolling from about section image */
.intro .bigbg {
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    min-height: 400px !important;
    transform: none !important;
}

.intro .bigbg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: relative !important;
    transform: none !important;
}

/* Remove any parallax effects */
.intro [uk-parallax], 
.intro div, 
.intro .columns,
.intro .row,
.intro .bigbg,
.intro img {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    position: relative !important;
}

/* Ensure container maintains proper dimensions */
.intro .columns.small-12.medium-12.large-6 {
    height: auto !important;
    min-height: 400px !important;
}

/* Remove parallax scrolling from white-section image */
.white-section .bigbg.hundred {
    position: absolute !important;
    overflow: hidden !important;
    height: 100% !important;
    min-height: 350px !important; /* Increased from 300px to 350px */
    max-height: 350px !important; /* Increased from 300px to 350px */
}

.white-section .bigbg.hundred img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    transform: none !important;
}

/* Adjust container dimensions to match */
.white-section .columns.small-12.medium-6.large-6 {
    height: auto !important;
    min-height: 350px !important; /* Increased from 300px to 350px */
    max-height: 350px !important; /* Increased from 300px to 350px */
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .white-section .bigbg.hundred {
        min-height: 300px !important; /* Increased from 250px to 300px */
        max-height: 300px !important; /* Increased from 250px to 300px */
    }
    
    .white-section .columns.small-12.medium-6.large-6 {
        min-height: 300px !important; /* Increased from 250px to 300px */
        max-height: 300px !important; /* Increased from 250px to 300px */
    }
}

/* Remove top padding from white-section */
.columns.white-section {
    padding-top: 0 !important;
}

/* Maintain other white-section styles */
.white-section .bigbg.hundred {
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    min-height: 350px !important;
    max-height: 350px !important;
}

/* Update mobile navigation styles */
@media screen and (max-width: 64em) {
    /* Logo styles */
    .logo {
        text-align: center;
        width: 100%;
        padding: 10px 60px;
        margin-bottom: 0;
    }
    
    /* Navigation container */
    .navigation {
        width: 100%;
        text-align: center;
        padding: 0;
        margin-top: 10px;
    }
    
    /* Navigation list */
    .navigation ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
    }
    
    /* Navigation items */
    .navigation ul li {
        width: 100%;
        text-align: center;
    }
    
    .navigation ul li a {
        display: block;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    /* Adjust header padding for mobile */
    .top-section {
        padding: calc(var(--smallpad) * 0.5) 0 !important;
        flex-direction: column;
    }
    
    /* Adjust row alignment */
    .row.align-middle.widerow {
        flex-direction: column;
    }
    
    /* Hide navigation by default on mobile */
    .navigation {
        display: none;
    }
    
    /* Show navigation when mobile menu is active */
    .mobile-menu-active .navigation {
        display: block;
    }
}

/* Ensure mobile menu toggle works */
.nav-toggler {
    display: none;
}

@media screen and (max-width: 64em) {
    .nav-toggler {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 1000;
    }
}

/* Add smooth transitions */
.navigation {
    transition: all 0.3s ease-in-out;
}

.navigation ul li a {
    transition: color 0.2s ease-in-out;
}

/* Add responsive text for photo description */
.photo-description:after {
    content: 'right';
}

@media screen and (max-width: 64em) {
    .photo-description:after {
        content: 'below';
    }
}

/* Emergency contact button styles */
.emergency-contact {
    margin-top: 20px !important;
}

.emergency-contact a {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 5px !important;
    transition: background-color 0.3s ease !important;
}

.emergency-contact a:hover {
    background-color: #cc0000 !important;
    color: white !important;
}

.emergency-label {
    font-size: 1rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
}

.emergency-number {
    font-size: 1.2rem !important;
    font-weight: bold !important;
}

/* Add some separation from other menu items */
.mobile-menu ul li.emergency-contact {
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Desktop emergency contact button styles */
.navigation .emergency-contact {
    margin-left: 15px !important;
}

.navigation .emergency-contact a {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    display: flex !important;
    flex-direction: column !important;  /* Changed to column to match mobile */
    align-items: center !important;
    gap: 5px !important;
    min-width: 200px !important;  /* Ensure minimum width */
}

.navigation .emergency-contact a:hover {
    background-color: #cc0000 !important;
}

.navigation .emergency-label {
    font-size: 1rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
    display: block !important;
    text-align: center !important;
}

.navigation .emergency-number {
    font-size: 1.2rem !important;
    font-weight: bold !important;
    display: block !important;
    text-align: center !important;
}

/* Hide the after pseudo-element for emergency contact */
.navigation .emergency-contact a::after {
    display: none !important;
}

/* Remove any default navigation styles that might interfere */
.navigation ul li.emergency-contact {
    display: flex !important;
    align-items: center !important;
}

.navigation ul li.emergency-contact > a {
    margin-right: 0 !important;
}

/* Responsive adjustments */
@media screen and (max-width: 64em) {
    .navigation .emergency-contact {
        display: none !important; /* Hide in desktop nav when mobile */
    }
}

/* Mobile emergency contact button styles */
.mobile-menu .emergency-contact a {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 15px 20px !important;
    display: flex !important;
    flex-direction: column !important;  /* Stack vertically on mobile */
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;  /* Full width on mobile */
    text-align: center !important;
}

.mobile-menu .emergency-label {
    font-size: 1.2rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
    display: block !important;  /* Ensure block display */
    width: 100% !important;
}

.mobile-menu .emergency-number {
    font-size: 1.4rem !important;
    font-weight: bold !important;
    display: block !important;  /* Ensure block display */
    width: 100% !important;
}

/* Add separation from other menu items in mobile */
.mobile-menu ul li.emergency-contact {
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
}

/* Hover effects */
.emergency-contact a:hover {
    background-color: #cc0000 !important;
    color: white !important;
}

/* Header emergency contact styles */
.header-emergency-contact {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    padding-right: 20px !important;
}

.emergency-button {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 8px 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2px !important;
    text-decoration: none !important;
    transition: background-color 0.3s ease !important;
}

.emergency-button:hover {
    background-color: #cc0000 !important;
    color: white !important;
}

.emergency-button .emergency-label {
    font-size: 0.9rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
}

.emergency-button .emergency-number {
    font-size: 1.1rem !important;
    font-weight: bold !important;
}

/* Mobile adjustments */
@media screen and (max-width: 64em) {
    .header-emergency-contact {
        display: none !important; /* Hide on mobile since it's in the mobile menu */
    }
}

/* Fixed emergency contact styles - Desktop */
.emergency-contact-fixed {
    position: fixed !important;
    top: calc(var(--logoheight) + var(--smallpad) * 2) !important;
    right: 0 !important;
    z-index: 998 !important;
}

/* Mobile adjustments for emergency button */
@media screen and (max-width: 64em) {
    .emergency-contact-fixed {
        position: fixed !important;
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding: 16px !important;
        z-index: 999 !important;
        background-color: transparent !important;
    }

    /* Increase padding at the bottom of main content */
    main {
        padding-bottom: 120px !important; /* Increased from 100px to 120px */
    }

    /* Add margin to the bottom of the last section */
    main > section:last-child {
        margin-bottom: 80px !important;
    }

    .emergency-button {
        width: 100% !important;
        justify-content: center !important;
        padding: 15px 20px !important;
        border-radius: 0 !important;
        flex-direction: row !important;
        gap: 10px !important;
        background-color: #ff0000 !important;
    }

    .emergency-button .emergency-label,
    .emergency-button .emergency-number {
        font-size: 1.1rem !important;
    }
}

.emergency-button {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px 0 0 8px !important; /* Only round the left corners */
    padding: 8px 15px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
}

/* Review section button styles */
.small-section.tac {
    margin-top: 2rem !important;
}

.small-section.tac .button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.small-section.tac .button span[uk-icon] {
    transition: transform 0.3s ease !important;
}

.small-section.tac .button:hover span[uk-icon] {
    transform: translateX(5px) !important;
}

/* Reviews grid layout */
.reviews-grid {
    margin: 0 -1rem !important;
}

.reviews-grid .column {
    padding: 1rem !important;
}

.reviews-grid blockquote {
    height: 100% !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    position: relative !important;
    background: var(--dark) !important;
    border-radius: var(--mediumrad) !important;
    overflow: hidden !important;
    padding: 0 !important;
    box-shadow: 0 3px 5px rgba(0,0,0,0.4) !important;
    transition: all 0.3s ease !important;
}

/* Remove any existing background styles */
.reviews-grid blockquote.darkbg {
    background: var(--dark) !important; /* Force dark background */
}

/* Remove any existing before/after elements that might add backgrounds */
.reviews-grid blockquote::before,
.reviews-grid blockquote::after {
    display: none !important;
}

/* Ensure consistent text content styling */
.reviews-grid .review-content {
    flex-grow: 1 !important;
    padding: 2.5rem 1.5rem 1.5rem !important;
    background: transparent !important; /* Remove any background */
}

.reviews-grid .review-content p {
    color: white !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
    position: relative !important;
    z-index: 2 !important;
}

.reviews-grid .author {
    margin-top: 0.5rem !important;
    padding: 0 1.5rem 1.5rem !important;
    color: var(--accent) !important;
    font-size: 0.8rem !important;
}

/* Hover effect matching the accreditation tiles */
.reviews-grid blockquote:hover {
    transform: translateY(-5px) !important;
    box-shadow: 
        0 8px 15px rgba(0,0,0,0.4),
        0 0 10px rgba(255, 215, 0, 0.1),
        0 0 20px rgba(255, 255, 135, 0.05) !important;
}

/* Quote mark in top-left */
.reviews-grid blockquote::before {
    content: '"' !important;
    position: absolute !important;
    top: 1rem !important;
    left: 1rem !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
    color: var(--accent) !important;
    opacity: 0.5 !important;
}

/* Update dark section icon with larger size and more intense glow */
.before-section {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 2 !important;
    padding: 2rem 0 !important;
    overflow: visible !important; /* Allow glow to extend outside */
}

.before-section img {
    height: 180px !important;
    width: auto !important;
    position: relative !important;
    z-index: 3 !important;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
    animation: electricIcon 2s ease-in-out infinite !important;
}

@keyframes electricIcon {
    0%, 100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1) rotate(-2deg) !important;
    }
    25% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.15) rotate(2deg) !important;
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(255, 255, 0, 1)) !important;
        transform: scale(1.25) rotate(-1deg) !important;
    }
    75% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.15) rotate(1deg) !important;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .before-section img {
        height: 140px !important; /* Slightly smaller on tablets */
    }
    .before-section {
        padding: 1.5rem 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .before-section img {
        height: 120px !important; /* Even smaller on phones */
    }
    .before-section {
        padding: 1rem 0 !important;
    }
}

/* Add glowing effect to dark section text */
.dark-section .text p {
    color: #ffff87 !important;
    font-size: 1.3rem !important; /* Increased from 1rem */
    line-height: 2rem !important; /* Increased line height */
    text-shadow: 
        /* Stronger outline */
        -1px -1px 0 rgba(0,0,0,0.4),
        1px -1px 0 rgba(0,0,0,0.4),
        -1px 1px 0 rgba(0,0,0,0.4),
        1px 1px 0 rgba(0,0,0,0.4),
        /* Enhanced yellow glow effect */
        0 0 15px rgba(255, 255, 0, 0.5),
        0 0 25px rgba(255, 255, 0, 0.3);
    font-weight: 500 !important;
    opacity: 1 !important;
    padding: 0.5rem 0 !important; /* Add some vertical spacing */
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .dark-section .text p {
        font-size: 1.1rem !important; /* Slightly smaller on mobile */
        line-height: 1.8rem !important;
        text-shadow: 
            -1px -1px 0 rgba(0,0,0,0.4),
            1px -1px 0 rgba(0,0,0,0.4),
            -1px 1px 0 rgba(0,0,0,0.4),
            1px 1px 0 rgba(0,0,0,0.4),
            0 0 12px rgba(255, 255, 0, 0.4);
    }
}

/* Update text section padding */
.dark-section .columns.text {
    padding: calc(var(--bigpad) * 0.1) !important; /* Reduce to 10% of original padding */
}

/* Mobile adjustments */
@media screen and (max-width: 64em) {
    .dark-section .columns.text {
        padding: calc(var(--bigpad) * 0.1) !important; /* Keep consistent on mobile */
    }
}

/* Update dark section layout */
.dark-section .row.align-middle {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important; /* Remove default gap */
}

/* Left text column */
.dark-section .columns.text:first-child {
    padding-right: 0.5rem !important;
    text-align: right !important;
}

/* Center icon column */
.dark-section .before-section {
    padding: 0 !important;
    margin: 0 -1rem !important; /* Pull icon closer to text */
}

/* Right text column */
.dark-section .columns.text:last-child {
    padding-left: 0.5rem !important;
    text-align: left !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .dark-section .row.align-middle {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .dark-section .columns.text:first-child,
    .dark-section .columns.text:last-child {
        text-align: center !important;
        padding: 0.5rem !important;
    }
    
    .dark-section .before-section {
        margin: 0 !important;
    }
}

/* Center text alignment helper */
.text-center {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 2rem 0 !important;
}

/* Remove any existing margin/padding that might affect centering */
.columns.text .text-center {
    padding: 0 !important;
}

/* Ensure button maintains its style while centered */
.text-center .button {
    margin: 0 auto !important;
}

/* Footer credentials section */
.members {
    padding: 3rem 0 !important;
}

.members h5 {
    color: var(--accent) !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

/* Credential cards */
.cred {
    background: rgba(21, 21, 21, 0.5) !important;
    padding: 2rem !important;
    border-radius: var(--mediumrad) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.cred:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1) !important;
}

.cred img {
    max-width: 200px !important;
    height: auto !important;
    margin-bottom: 1rem !important;
}

.credential-text {
    color: white !important;
    font-size: 1rem !important;
    text-align: center !important;
    margin: 0 !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .members {
        padding: 2rem 0 !important;
    }
    
    .cred {
        padding: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .cred img {
        max-width: 150px !important;
    }
}

/* Contact form section styling */
#contact-form {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 4rem 1rem !important;
}

.multi-booking {
    max-width: 600px !important;
    width: 100% !important;
    margin: 0 auto !important;
    background: rgba(21, 21, 21, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: var(--mediumrad) !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1) !important;
}

/* Form title and text */
.multi-booking h3 {
    color: var(--accent) !important;
    text-align: center !important;
    margin-bottom: 0.5rem !important;
}

.multi-booking p {
    color: white !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

/* Form inputs styling */
.form-group {
    margin-bottom: 1.5rem !important;
}

.form-group label {
    color: white !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 500 !important;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--smallrad) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

/* Nested Menu Styles */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(21, 21, 21, 0.9);
    min-width: 250px;
    z-index: 1000;
    padding: 15px 0;
    margin-top: 0;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    border-left: 3px solid var(--light);
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    display: block;
    margin: 0;
    padding: 0;
}

.submenu li a {
    padding: 10px 20px;
    display: block;
    color: #fff;
    font-size: 0.9em;
    transition: all 0.2s ease;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.submenu li a:hover {
    background-color: rgba(215, 255, 14, 0.1);
    color: var(--light) !important;
    padding-left: 25px;
}

/* Add a visual indicator for menu items with submenu */
.has-submenu > a::after {
    content: '▼';
    display: inline-block;
    font-size: 0.7em;
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.has-submenu:hover > a::after {
    transform: rotate(180deg);
}

/* Mobile menu submenu adjustments */
.mobile-menu .submenu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.2);
    border-left: 2px solid var(--light);
    border-radius: 0;
    padding: 5px 0;
    margin: 5px 0 5px 20px;
    transition: none;
}

.mobile-menu .has-submenu.active .submenu {
    display: block;
}

.mobile-menu .submenu li a {
    padding: 8px 15px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .has-submenu > a::after {
    content: '▼';
    display: inline-block;
    font-size: 0.6em;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.mobile-menu .has-submenu.active > a::after {
    transform: rotate(180deg);
}
.mobile-menu .submenu {
    display: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-left: 15px;
    border-left: 2px solid #D7FF0E;
    padding-left: 10px;
}

.mobile-menu .has-submenu.active .submenu {
    display: block;
    max-height: 500px;
    opacity: 1;
    overflow: visible;
}

.mobile-menu .submenu li a {
    padding: 8px 15px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .has-submenu > a::after {
    content: '▼';
    display: inline-block;
    font-size: 0.6em;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.mobile-menu .has-submenu.active > a::after {
    transform: rotate(180deg);
}
@media (max-width: 768px) {
	.nav-toggler {
		display: block !important;
	}
	
	.navigation {
		display: none !important;
	}
	.logo {
        text-align: center;
        padding: 10px 60px;
    }
    
    .logo img {
        max-height: 60px;
        margin: 0 auto;
    }
    
    /* Remove arrows from mobile menu items */
    .mobile-menu nav ul li > a::after {
        display: block !important;
        background-image: url(../images/shapes/chevron-right.svg);
        position: absolute;
        right: 1rem;
        top: 0px;
        width: 25px;
        height: 3rem;
        line-height: 3;
		text-align: center;
        background-size: 50%;
        background-position: center;
		background-repeat: no-repeat;
        content: " ";
        transform: rotate(0deg);
    }
    
    /* Style submenu toggle */
    .submenu-toggle::after {
        content: '+';
        float: right;
        font-size: 1.2rem;
    }
    
    .submenu-toggle.active::after {
        content: '-';
    }
}
.toggler-one,
.toggler-two,
.toggler-three {
	width: 25px;
		height: 3px;
	background-color: white !important;
	margin: 5px 0;
	transition: 0.3s ease;
}
.nav-toggler.active .toggler-one {
	transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggler.active .toggler-two {
	opacity: 0;
}
.nav-toggler.active .toggler-three {
	transform: rotate(-45deg) translate(7px, -7px);
	}
	.mobile-menu .columns{padding: 0;}
	.nav-title{
		font-size: 1.25rem;
		font-weight: 700;
		margin-top: 1rem;
	}
	.mobile-nav-contact{
	margin-top: 20px;
	}
.mobile-nav-contact a {
		display: block;
    padding: 15px 20px;
    margin: 10px 0;
    background: var(--accent);
    color: white !important;
    text-align: center;
    border-radius: var(--smallrad);
    font-weight: 500;
}
.mobile-nav-contact a:first-child {
    background: var(--dark);
	}
	.mobile-menu .social{margin-top: 1rem;}
	.mobile-nav-contact a::after {
		background-image: url(../images/shapes/navdown.svg);
		position: absolute;
		right: 1rem;
		top: 0px;
		width: 25px;
		height: 3rem;
		line-height: 3;
		text-align: center;
		background-size: 50%;
		background-position: center;
		background-repeat: no-repeat;
		content: " ";
	}
	.mobile-nav-contact > a[href*="form"]:after{background-image: url(../images/shapes/bookmark.svg);}
	nav ul li > a::after {
		background-image: url(../images/shapes/chevron-right.svg);
		position: absolute;
		right: 1rem;
		top: 0px;
		width: 25px;
		height: 3rem;
		line-height: 3;
		text-align: center;
		background-size: 50%;
		background-position: center;
		background-repeat: no-repeat;
		content: " ";
		transform:rotate(90deg); 
	}
	nav ul li > a:only-child::after { 
		display: block;
		transform:rotate(0deg); 
	}
	nav ul li > a[href*="index"]:after{background-image: url(../images/shapes/home.svg);}
	nav ul li > a[href*="gallery"]:after{background-image: url(../images/shapes/gallery.svg);}
	nav ul li > a[href*="project"]:after{background-image: url(../images/shapes/gallery.svg);}
	nav ul li > a[href*="review"]:after{background-image: url(../images/shapes/review.svg);}
	nav ul li > a[href*="testimonial"]:after{background-image: url(../images/shapes/review.svg);}
	nav ul li > a[href*="contact"]:after{background-image: url(../images/shapes/contact.svg);}
	nav ul li > a[href*="faq"]:after{background-image: url(../images/shapes/faq.svg);}
	nav ul li > a[href*="booking"]:after{background-image: url(../images/shapes/calendar.svg);}
@media screen and (max-width: 40em) {
	.mob-call{display: block;}
	.call-text{
		display: block;
		position: fixed;
		padding: var(--smallpad);
		bottom: 0;
		left: 0;
		z-index: 200;
		width: 100%;
		background-color: rgba(30,30,30,0.8);
		backdrop-filter: blur(2px);
	}
	.call-text .row{padding: 0 0.6rem;}
	.call-text .columns{padding: 0 0.3rem;}
	.call-text span{color: white;}
	.mob-call{cursor: pointer;}
}
.top-fix{position: fixed;}
/******** GALLERY ********/
.gallery{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
}
.reviews{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
}
.thumbs{
	overflow: hidden;
	position: relative;
	z-index: 2;
	height: 400px;
	background-size: cover;
	background-position: center center;
	border-radius: var(--smallrad);
	transform:scale(1);
	-webkit-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	transition: ease 0.3s;
}
.thumbs:hover{
	transform:scale(1.02);
}
.thumbs img{
	width: 100%;
	margin: 0!important;
	border-radius: 3px;
}
.thumbs a{
	margin: 0!important;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
@media screen and (max-width: 64em) {
	.thumbs{height: 240px;}
}
@media screen and (max-width: 40em) {
	.thumbs{height: 200px;}
	.gallery{
	    grid-template-columns: repeat(2, 1fr);
	    grid-gap: 0.5rem;
	}
	.reviews{
	    grid-template-columns: repeat(1, 1fr);
	    grid-gap: 1rem;
	}
}
/******** BLOCKQUOTE ********/
blockquote{
	display: inline-block;
	width: 100%;
	margin: 0;
	font-style: normal;
	position: relative;
	z-index: 10;
	/* color: white;
	border-radius: var(--mediumrad);
	background-color: var(--light1a); */
	padding: var(--bigpad);
	padding-top: calc(var(--bigpad) + 100px);
	min-height: 360px;
	overflow: hidden;
}
blockquote span{margin-top: 1rem;}
blockquote::after{
	position: absolute;
	top: var(--bigpad);
	left: var(--bigpad);
	z-index: 2;
	height: 80px;
	width: 80px;
	/* background-color: var(--accent); */
    /* border-radius: 50%; */
	/* background-image: url(../images/shapes/quote.svg); */
	background-position: center;
	background-size: 40%;
	background-repeat: no-repeat;
	content: " "; 
}
blockquote::before{
	width: 320px;
	height: 320px;
	position: absolute;
	content: " ";
	top: -200px;
	left: -140px;
    /* border-radius: 50%; */
    background-color: var(--accent);
	z-index: -1;
	opacity: 0.15;
}
blockquote p{
	opacity: 1;
}
.smallquote{font-size: 1.25rem;line-height: 1.5;}
.midquote{font-size: 1.25rem;line-height: 1.5;}
.bigquote{font-size: 1.5rem;line-height: 1.5;}
@media screen and (max-width: 40em) {
	blockquote{min-height: unset;}
	blockquote{
		padding: var(--mediumpad);
		padding-top: calc(var(--mediumpad) + 80px);
		min-height:unset;
		margin-bottom: 1rem;
	}
	blockquote::after{
		top: var(--mediumpad);
		left: var(--mediumpad);
		z-index: 2;
		height: 60px;
		width: 60px;
	}
	blockquote::before{
		top: -250px;
	}
}

/******* Footer *******/
footer{
	width: calc(100% - 2rem);
	margin-left: 1rem;
	margin-bottom: 1rem;
	border-radius: var(--bigrad);
	overflow: hidden;
	background-color: var(--dark);
	/*background-image:
	 -webkit-linear-gradient(top left, var(--light), var(--accent));
	background-image:
	 -o-linear-gradient(top left, var(--light), var(--accent));
	background-image:
	 linear-gradient(to right bottom, var(--light), var(--accent));*/
	padding-top: 100px;
	position: relative;
	color: white;
	overflow: hidden;
	z-index: 2;
	margin-top: 1rem;
}
footer .row{position: relative;z-index: 5;}
footer h6{
	font-size: 1rem;
	line-height: 150%;
	font-weight: 300;
	color: rgba(255,255,255,0.3);
	text-transform: capitalize;
}
footer a{color: white!important;}
footer a, footer ul li a{
	display: block;
	font-weight: 500;
	line-height: 2rem;
	font-size: 0.875rem;
	text-transform: capitalize;
}
footer a:hover, footer ul li a:hover{
	color: var(--dark)!important;
}
.bigphone{
	font-size: 1.5rem;
	margin-bottom: 1rem;
	margin-top: 1rem;
	color: var(--accent)!important;
}
footer .bigphone{
	margin-bottom: 1rem;
	margin-top: 1rem;
	font-size: 1.5rem;
	color: var(--accent)!important;
}
.by{
	margin-top: 60px;
	border-top: 1px solid rgba(255,255,255,0.05);
	padding-top: 30px;
	padding-bottom: 30px;
}
footer p{margin: 0;}
.by p{
	color: rgba(255,255,255,0.6);
	text-transform: capitalize;
	font-weight: 300;
	font-size: 0.825rem;
}
footer .sub-menu{display: none;}
.footerlinks{display: block;}
.footerlinks a{
	opacity: 0.9;
	font-weight: 300;
	margin: 0;
	margin-top: 10px;
	margin-right: 10px;
	display: inline-block;
	color: rgba(255,255,255,0.3)!important;
}
.footerlinks a::after{
	content: "/";
	margin-left: 10px;
}
.footerlinks a:last-of-type::after{display: none;}
.footerlinks a:hover{color: var(--light);}
footer .social{margin-top: 1rem;}
footer ul li > ul{display: none!important;}
footer a:not([href]){display: none;}
footer .social{margin-top: 2rem;}
footer ul li > ul{display: none!important;}
footer a:not([href]){display: none;}
footer img{
	max-height: 50px;
	margin-bottom: 2rem;
	filter: brightness(0) invert(1); /* Re-add this to make logo white */
}
.main-foot p{font-size: 2rem;font-weight: 700;}
footer h5{
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 2rem;
	max-width: 450px;
	color: white;
}
footer .button:hover{
	color: white!important;
}
/******* Extras *******/
a.cred img{
	margin-bottom: 0;
	width: 64px;
	height: 64px;
	position: relative;
	top: 0;
}
a.cred p{
	color: white;
	font-size: 1.1em;
	margin: 0;
	font-weight: bold;
	line-height: 120%;
	padding: 0 10px;
	text-shadow: 0 3px 5px rgba(0,0,0,0.4);
}
a.cred{
	-webkit-transition: ease 0.3s;
	-o-transition: ease 0.3s;
	transition: ease 0.3s;
	overflow: hidden;
	padding: 6px 12px;
	border-radius: var(--radius);
	align-items: center;
	display: flex;
	background-size: 10000px;
	height: 100%;
}
.members .column{margin-top: 1rem;}
a.cred .dark-text{
	color: black!important;
	text-shadow: unset!important;
}

.map{padding: 0;}
.map iframe{
	width: 100%;
	min-height: 400px;
}
.contact-boxes span{
	margin-bottom: 1rem;
	color: var(--accent);
}
.contact-boxes a{
	color: var(--accent);
	display: block;
	word-break: break-word;
}
address p{
	margin: 0;
	color: var(--accent);
}
address p:last-of-type{text-transform: uppercase;}
.today{color: var(--accent);}
/******* Site start *******/
.top-right .cta{
	margin-left: 2rem;
	float: right;
	line-height: 3rem;
}
.top-right .social{display: inline-block;}
.top-right .cta{color: white!important;}
.top-right .cta span{margin-right: 0.5rem;}

/******* Next section *******/
header::before {
    display: none; /* Remove the overlay */
}

/* Clean up home-banner styles - remove background */
.home-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 700px;
    z-index: 2;
    overflow: hidden;
    margin-top: 0 !important;
}

/* Clean up hero-animation styles - remove flex */
.hero-animation {
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 2;
}

/* Animation container adjustments */
.animation-container {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-image: url('../images/image00008.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Blur overlay */
.blur-overlay {
    position: absolute;
    top: 44%; /* Start higher up to cover the text area */
    left: 0;
    width: 100%;
    height: 65%; /* Cover more of the bottom portion */
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

/* Hero text styles */
.hero-text {
    position: absolute;
    top: 30%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    text-align: center;
}

.hero-text h1 {
    color: #fff;
    text-shadow: 
        /* Thinner black outline */
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        /* Subtle additional outlines */
        -1px 0 0 #000,
        1px 0 0 #000,
        0 -1px 0 #000,
        0 1px 0 #000,
        /* Light shadow for depth */
        0 4px 8px rgba(0,0,0,0.5);
    font-size: 3.5rem;
    margin: 0;
    white-space: nowrap;
    line-height: 1.2;
    font-weight: 700;
}

/* Update highlight styles to match */
.hero-text h1 .highlight {
    color: #ffff87;
    
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .hero-text {
        top: 35%;
        left: 50%;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        padding: 0 1rem;
        white-space: normal;
    }
}

.home-banner::before, 
.home-banner::after,
.other-banner::before {
    display: none; /* Remove all overlay effects */
}

.home-banner::after {
    content: "";
    display: none; /* Ensure this doesn't interfere */
}

.home-banner .banner{
	position: relative;
	z-index: 20;
	width: 100%;
	padding: 0;
	margin: 0;
	height: 90vh;
	min-height: 700px;
}
.other-banner .banner{
	position: relative;
	z-index: 20;
	width: 100%;
	padding: 0;
	margin: 0;
	height: auto;
	min-height: 600px;
}
@media screen and (max-width: 40em) {
	.home-banner .banner{
		height: 70vh;
		min-height: 560px;
		max-height: 680px;
	}	
	.other-banner .banner{
		height: 50vh;
		min-height: 360px;
	}
}
.wide-banner{
	max-width: 100%;
	position: relative;
	z-index: 2;
}
.other-banner{position: relative;}
.slide{
	height: 100%;
	min-height: 300px;
	overflow: hidden;
	background-position: center;
	color: white;
	position: absolute;
	width: 100%;
	overflow: hidden;
	pointer-events: none;
	margin: 0;
	z-index: 2;
}
.slide .bigbg{
	width: 100%;
	height: 100%;
	max-height: unset;
	position: absolute;
	top: 0;
	border-radius: 0;
	right: 0;
	transition: opacity 0.5s ease, transform 0.5s ease;
}
/******* Next section *******/
.banner-text{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	height: 100%;
}
.banner-text .row{
	position: relative;
	z-index: 40;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.inner-text{
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 50;
	padding: var(--bigpad) 1.15rem;
	padding-top: calc(var(--bigpad) + var(--logoheight));
}
.home-banner h1{
	font-size: 4rem;
	line-height: 1;
	text-transform: capitalize;
	color: white;
	letter-spacing: -2px;
}
.banner-text p{
	font-size: 1.25rem;
	color: white;
	font-weight: 400;
}
.inner-text hr, .slide-text hr, main hr{
	width: 50px;
	display: inline-block;
	-webkit-transition: 0.3s ease 0.1s;
	-o-transition: 0.3s ease 0.1s;
	transition: 0.3s ease 0.1s;
}
.banner-text h1{
	font-weight: 700;
	line-height: 1;
	color: white;
	letter-spacing: -1px;
	font-family: var(--titlefont);
	font-size: 3rem;
	text-transform: uppercase;
	letter-spacing: -1px;
}
.home-header .banner-text h1{font-size: 4rem;}
.banner-text h1::first-letter{text-transform: uppercase;}
@media screen and (max-width: 64em) {
	.home-header .banner-text h1{font-size: 3rem;}
	.banner-text h1{font-size: 2.5rem;}
	.top-right{display: none;}
	.home-header .top-right{display: block;}
}
@media screen and (max-width: 40em) {
	.home-header .banner-text h1{font-size: 2.5rem;}
	.home-banner h1{font-size: 2rem;}
	.home-banner p{font-size: 1rem;}
}
/******* Next section *******/
.home-service-slider, .home-service-slider .row{
	max-width: 100%;
	padding: 0;
	margin: 0;
	padding-top: 0;
	padding-bottom: 0;
	width: 100%;
	display: block;
}
.home-service-slider .row{
	padding-left: 1rem;
}
.service-slide {
    flex: 0 0 auto !important;
    width: 400px !important;
    min-height: 600px !important;
    margin: 0 !important;
    position: relative !important;
    border-radius: var(--mediumrad) !important;
    overflow: hidden !important;
    background-size: cover !important;
    background-position: center !important;
    background-color: transparent !important;
}

/* Service slide link */
.service-slide a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    text-decoration: none !important;
    background-color: transparent !important;
}

/* Static overlay - no hover changes */
.service-slide::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1)) !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

/* Text styles */
.slide-text {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    padding: 2rem !important;
    width: 100% !important;
    z-index: 3 !important;
    pointer-events: none !important;
}

/* Remove ALL transitions and hover effects */
.service-slide,
.service-slide *,
.service-slide::before,
.service-slide::after,
.slide-text,
.slide-text *,
.service-slide:hover,
.service-slide:hover *,
.service-slide:hover::before,
.service-slide:hover::after,
.slide-text:hover,
.slide-text:hover * {
    transition: none !important;
    transform: none !important;
    animation: none !important;
    background-color: transparent !important;
}

/* Clean up service slider */
.service-slider {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 2rem !important;
    padding: 1rem !important;
    scrollbar-width: none !important;
}

.service-slider::-webkit-scrollbar {
    display: none !important;
}

/* Keep these specific background rules */
.service-slide.domestic {
    background-image: url('../images/image00006.webp') !important;
    background-position: 28% 38% !important;
    background-size: auto !important;
}

.service-slide.commercial {
    background-image: url('../images/image00012.webp') !important;
    background-position: 28% 38% !important;
    background-size: 250% !important;
}

.service-slide.maintenance {
    background-image: url('../images/image00033.webp') !important;
    background-position: 8% 38% !important;
    background-size: cover !important;
}

.service-slide.emergency {
	background-image: url('../images/image00027.webp') !important;
    background-position: 43% 63% !important;
    background-size: 250% !important;
}

.service-slide.all-services {
	background-image: url('../images/image00034.webp') !important;
    background-position: 43% 63% !important;
    background-size: 250% !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .service-slide {
        width: 300px !important;
        min-height: 400px !important;
    }
    
    .service-slider {
        gap: 1rem !important;
        padding: 0.5rem !important;
    }
}

/* WhatsApp Widget Styles */
.whatsapp-widget {
    position: fixed !important;
    right: 15px !important;
    bottom: 15px !important;
    width: 60px !important;
    height: 60px !important;
    background: #25D366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
    transition: all 0.3s ease !important;
    z-index: 999999 !important;
    cursor: pointer !important;
    transform: translateX(0) !important;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.whatsapp-widget svg {
    width: 35px;
    height: 35px;
}

.wa-widget-content {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 360px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transform-origin: bottom right;
    transition: all 0.3s ease;
	overflow: hidden;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wa-widget-content.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.wa-widget-header {
    display: flex;
    align-items: flex-start;
    padding: 20px 25px;
    background: #F0F0F0;
    border-bottom: none;
    position: relative;
}

.wa-widget-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.wa-widget-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111B21;
    line-height: 1.2;
}

.wa-widget-subtitle {
    margin: 4px 0 0;
    font-size: 14px;
    color: #667781;
    font-weight: 400;
}

.wa-status-indicator {
	position: absolute;
    width: 12px;
    height: 12px;
    background: #25D366;
    border-radius: 50%;
    border: 2px solid #fff;
    bottom: 2px;
    right: 15px;
}

.wa-widget-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 24px;
    height: 24px;
    opacity: 0.5;
    cursor: pointer;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    color: #667781;
}

.wa-widget-message {
    padding: 20px 25px;
    font-size: 14px;
    line-height: 1.5;
    color: #111B21;
    border-bottom: none;
    background: #FFFFFF;
}

.wa-widget-time {
    text-align: center;
    font-size: 12px;
    color: #667781;
    margin: 15px 0;
    font-weight: 500;
}

.wa-widget-button {
    display: block;
    background: #25D366;
    color: #FFFFFF;
    text-align: center;
    padding: 12px 24px;
    margin: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(37, 211, 102, 0.3);
    font-size: 15px;
    transition: all 0.2s ease;
}

.wa-widget-button:hover {
    background: #22C15E;
    text-decoration: none;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
}

@media screen and (max-width: 480px) {
    .wa-widget-content {
        width: calc(100% - 30px) !important;
        max-width: 360px;
        margin: 0 auto;
        bottom: 90px !important;
        right: 15px !important;
        border-radius: 15px !important;
    }

    .wa-widget-header {
        padding: 15px 20px !important;
    }

    .wa-widget-message {
        padding: 15px 20px !important;
    }

    .wa-widget-button {
        margin: 15px 20px !important;
    }
}

/* Update the burger menu styles */
.nav-toggler div {
    background-color: white !important; /* Make the burger lines white */
}

.toggler-one, .toggler-two, .toggler-three {
    background-color: white !important;
}

/* Update WhatsApp widget mobile styles */
@media screen and (max-width: 768px) {
    .whatsapp-widget {
        width: 50px !important;
        height: 50px !important;
        right: 15px !important;
        bottom: 25px !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
    }
    
    .whatsapp-widget svg {
        width: 28px !important;
        height: 28px !important;
    }

    .wa-widget-content {
        width: calc(100vw - 30px) !important;
        max-width: 360px !important;
        right: 15px !important;
        bottom: 85px !important;
        transform-origin: bottom right !important;
        margin: 0 !important;
    }
}

/* Remove any border from WhatsApp widget */
.whatsapp-widget {
    border: none !important;
}

.wa-widget-content {
    border: none !important;
}

/* Fix body overflow and scrolling */
html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    position: relative !important;
}

/* Ensure no horizontal scrolling on any screen size */
.container, .row, section, main, header, footer {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

/* Fix service slider overflow */
.home-service-slider {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}

.home-service-slider .row {
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
}

.service-slider {
    margin-right: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

.service-slider::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
}

.service-slide {
    flex: 0 0 auto !important;
    width: calc(33.333% - 2rem) !important;
    min-width: 300px !important;
    margin: 1rem !important;
    overflow: hidden !important;
}

@media screen and (max-width: 64em) {
    .service-slide {
        width: calc(50% - 2rem) !important;
    }
}

@media screen and (max-width: 40em) {
    .service-slide {
        width: calc(90% - 2rem) !important;
    }
}

/* Ensure the slide text stays within bounds */
.slide-text {
    width: 100% !important;
    padding: 1.5rem !important;
    box-sizing: border-box !important;
}

.slide-text h2 {
    width: 100% !important;
    word-wrap: break-word !important;
}

/* Hide burger menu on desktop */
.nav-toggler {
    display: none !important; /* Hide by default */
}

@media (max-width: 768px) {
    .nav-toggler {
        display: block !important; /* Only show on mobile */
    }
}

/* Remove icons from navbar items */
nav ul li > a::after {
    display: none !important; /* Remove all nav icons */
}

/* Only show navigation icons on mobile */
@media (max-width: 768px) {
    .mobile-menu nav ul li > a::after {
        display: block !important;
        background-image: url(../images/shapes/chevron-right.svg);
	position: absolute;
        right: 1rem;
        top: 0px;
        width: 25px;
        height: 3rem;
        line-height: 3;
        text-align: center;
        background-size: 50%;
        background-position: center;
        background-repeat: no-repeat;
	content: " ";
        transform: rotate(0deg);
    }

    /* Specific icons for mobile menu items */
    .mobile-menu nav ul li > a[href*="index"]:after { background-image: url(../images/shapes/home.svg); }
    .mobile-menu nav ul li > a[href*="gallery"]:after { background-image: url(../images/shapes/gallery.svg); }
    .mobile-menu nav ul li > a[href*="project"]:after { background-image: url(../images/shapes/gallery.svg); }
    .mobile-menu nav ul li > a[href*="review"]:after { background-image: url(../images/shapes/review.svg); }
    .mobile-menu nav ul li > a[href*="testimonial"]:after { background-image: url(../images/shapes/review.svg); }
    .mobile-menu nav ul li > a[href*="contact"]:after { background-image: url(../images/shapes/contact.svg); }
    .mobile-menu nav ul li > a[href*="faq"]:after { background-image: url(../images/shapes/faq.svg); }
    .mobile-menu nav ul li > a[href*="booking"]:after { background-image: url(../images/shapes/calendar.svg); }
}

/* Clean up desktop navigation */
.navigation {
    display: block !important; /* Always show on desktop */
}

@media (max-width: 768px) {
    .navigation {
        display: none !important; /* Hide on mobile */
    }
}

/* Fix desktop dropdown arrows */
nav ul li > a {
    margin-right: 0 !important; /* Remove extra margin */
	position: relative;
}

/* Only show dropdown arrow for items with submenus */
nav ul li > ul + a::after {
    display: inline-block !important;
    content: "▼" !important;
    font-size: 10px;
    margin-left: 5px;
    background: none !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
}




/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .logo-container {
        gap: 1px !important; /* Even smaller gap on mobile */
    }
    
    .logo-icon {
        margin-left: -2px !important;
    }
}

/* Enhanced electrical shock effect */
.highlight {
    color: #FFFF00;
    font-weight: 600;
    position: relative;
    text-shadow: 
        -4px -4px 0 #000,
        4px -4px 0 #000,
        -4px 4px 0 #000,
        4px 4px 0 #000,
        -3px 0 0 #000,
        3px 0 0 #000,
        0 -3px 0 #000,
        0 3px 0 #000,
        0 0 15px rgba(255, 255, 0, 0.8),
        0 0 25px rgba(255, 255, 0, 0.6),
        0 0 35px rgba(255, 255, 0, 0.4),
        0 6px 6px rgba(0,0,0,0.7);
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) infinite;
    transform-origin: center;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Zig-zag lightning effects */
.highlight::before,
.highlight::after,
.highlight span::before,
.highlight span::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 40px;
    opacity: 0;
    filter: blur(0.5px);
    z-index: -1;
    clip-path: polygon(
        50% 0%, 
        100% 25%, 
        50% 50%, 
        100% 75%, 
        50% 100%, 
        0% 75%, 
        50% 50%, 
        0% 25%
    );
    animation: lightningFlash 3s infinite;
}

/* Position the lightning bolts */
.highlight::before {
    left: -15px;
    top: -10px;
    background: linear-gradient(45deg, #fff, #00ffff);
    transform: rotate(-45deg);
    animation-delay: 0.1s;
}

.highlight::after {
    right: -15px;
    top: -10px;
    background: linear-gradient(-45deg, #fff, #FFFF00);
    transform: rotate(45deg);
    animation-delay: 0.2s;
}

.highlight span::before {
    left: 15%;
    bottom: -10px;
    background: linear-gradient(45deg, #00ffff, #fff);
    transform: rotate(30deg);
    animation-delay: 0.3s;
}

.highlight span::after {
    right: 15%;
    bottom: -10px;
    background: linear-gradient(-45deg, #FFFF00, #fff);
    transform: rotate(-30deg);
    animation-delay: 0.4s;
}

/* Aggressive shake animation */
@keyframes shake {
    10%, 90% {
        transform: translate3d(-2px, -1px, 0);
    }
    
    20%, 80% {
        transform: translate3d(4px, 2px, 0);
    }
    
    30%, 50%, 70% {
        transform: translate3d(-6px, -2px, 0);
    }
    
    40%, 60% {
        transform: translate3d(6px, 2px, 0);
    }
}

/* Lightning flash animation */
@keyframes lightningFlash {
    0%, 100% {
        opacity: 0;
        transform: scaleY(1) translateY(0) rotate(var(--rotation, 0deg));
    }
    2%, 5% {
        opacity: 1;
        transform: scaleY(1.2) translateY(-5px) rotate(var(--rotation, 0deg));
        filter: brightness(2);
    }
    3%, 4% {
        opacity: 0.8;
        transform: scaleY(1.1) translateY(-3px) rotate(var(--rotation, 0deg));
        filter: brightness(1.8);
    }
    7% {
        opacity: 0.2;
        transform: scaleY(1) translateY(0) rotate(var(--rotation, 0deg));
    }
    15% {
        opacity: 0.8;
        transform: scaleY(1.2) translateY(-5px) rotate(var(--rotation, 0deg));
        filter: brightness(2);
    }
    17% {
        opacity: 0;
        transform: scaleY(1) translateY(0) rotate(var(--rotation, 0deg));
    }
}

/* Additional electric effects */
.highlight::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 70% 50%, rgba(0, 255, 255, 0.3) 0%, transparent 30%);
    mix-blend-mode: screen;
    animation: arcFlicker 0.5s infinite alternate;
}

@keyframes arcFlicker {
    from { opacity: 0.3; }
    to { opacity: 0.8; }
}

/* Add scroll effect for navbar */
.top-section.scrolled {
    background: rgba(21, 21, 21, 0.2) !important;
    padding: calc(var(--smallpad) * 0.5) 0 !important;
}

.top-section.scrolled .logo img {
    max-height: calc(var(--logoheight) * 0.9) !important;
}

/* Style for the "Who we are" subtitle */
.sub-title {
    color: #ffff87 !important;
    text-shadow: 
        /* Subtle outline */
        -1px -1px 0 rgba(0,0,0,0.3),
        1px -1px 0 rgba(0,0,0,0.3),
        -1px 1px 0 rgba(0,0,0,0.3),
        1px 1px 0 rgba(0,0,0,0.3),
        /* Yellow glow effect */
        0 0 10px rgba(255, 255, 0, 0.4),
        0 0 20px rgba(255, 255, 0, 0.2);
    font-weight: 500 !important;
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
}

/* Testimonial slider styles */
.review-slider {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 2rem !important;
    padding: 2rem 1rem !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.review-slider::-webkit-scrollbar {
    display: none !important;
}

.review-slide {
    flex: 0 0 auto !important;
    width: calc(100% - 4rem) !important;
    max-width: 800px !important;
    scroll-snap-align: center !important;
    padding: 2rem !important;
    border-radius: var(--mediumrad) !important;
    background: rgba(21, 21, 21, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.1),
        0 0 10px rgba(255, 215, 0, 0.1),
        0 0 20px rgba(255, 255, 135, 0.05) !important;
}

.review-slide .quotetext {
    position: relative !important;
    padding-left: 2rem !important;
}

.review-slide .quotetext::before {
    content: '"' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    font-size: 3rem !important;
    line-height: 1 !important;
    color: #FFFF87 !important;
    opacity: 0.5 !important;
}

.review-slide .author {
    margin-top: 1.5rem !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .review-slide {
        width: calc(100% - 2rem) !important;
        padding: 1.5rem !important;
    }
    
    .review-slider {
        gap: 1rem !important;
        padding: 1rem !important;
    }
}
/* Update dark section icon with larger size and more intense glow */
.before-section {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 2 !important;
    padding: 2rem 0 !important;
    overflow: visible !important; /* Allow glow to extend outside */
}

.before-section img {
    height: 180px !important;
    width: auto !important;
    position: relative !important;
    z-index: 3 !important;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
    animation: electricIcon 2s ease-in-out infinite !important;
}

@keyframes electricIcon {
    0%, 100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1) rotate(-2deg) !important;
    }
    25% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.15) rotate(2deg) !important;
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(255, 255, 0, 1)) !important;
        transform: scale(1.25) rotate(-1deg) !important;
    }
    75% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.15) rotate(1deg) !important;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .before-section img {
        height: 140px !important; /* Slightly smaller on tablets */
    }
    .before-section {
        padding: 1.5rem 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .before-section img {
        height: 120px !important; /* Even smaller on phones */
    }
    .before-section {
        padding: 1rem 0 !important;
    }
}

/* Add glowing effect to dark section text */
.dark-section .text p {
    color: #ffff87 !important;
    font-size: 1.3rem !important; /* Increased from 1rem */
    line-height: 2rem !important; /* Increased line height */
    text-shadow: 
        /* Stronger outline */
        -1px -1px 0 rgba(0,0,0,0.4),
        1px -1px 0 rgba(0,0,0,0.4),
        -1px 1px 0 rgba(0,0,0,0.4),
        1px 1px 0 rgba(0,0,0,0.4),
        /* Enhanced yellow glow effect */
        0 0 15px rgba(255, 255, 0, 0.5),
        0 0 25px rgba(255, 255, 0, 0.3);
    font-weight: 500 !important;
    opacity: 1 !important;
    padding: 0.5rem 0 !important; /* Add some vertical spacing */
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .dark-section .text p {
        font-size: 1.1rem !important; /* Slightly smaller on mobile */
        line-height: 1.8rem !important;
        text-shadow: 
            -1px -1px 0 rgba(0,0,0,0.4),
            1px -1px 0 rgba(0,0,0,0.4),
            -1px 1px 0 rgba(0,0,0,0.4),
            1px 1px 0 rgba(0,0,0,0.4),
            0 0 12px rgba(255, 255, 0, 0.4);
    }
}

/* Update text section padding */
.dark-section .columns.text {
    padding: calc(var(--bigpad) * 0.1) !important; /* Reduce to 10% of original padding */
}

/* Mobile adjustments */
@media screen and (max-width: 64em) {
    .dark-section .columns.text {
        padding: calc(var(--bigpad) * 0.1) !important; /* Keep consistent on mobile */
    }
}

/* Update dark section layout */
.dark-section .row.align-middle {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important; /* Remove default gap */
}

/* Left text column */
.dark-section .columns.text:first-child {
    padding-right: 0.5rem !important;
    text-align: right !important;
}

/* Center icon column */
.dark-section .before-section {
    padding: 0 !important;
    margin: 0 -1rem !important; /* Pull icon closer to text */
}

/* Right text column */
.dark-section .columns.text:last-child {
    padding-left: 0.5rem !important;
    text-align: left !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .dark-section .row.align-middle {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .dark-section .columns.text:first-child,
    .dark-section .columns.text:last-child {
        text-align: center !important;
        padding: 0.5rem !important;
    }
    
    .dark-section .before-section {
        margin: 0 !important;
    }
}

/* Center text alignment helper */
.text-center {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 2rem 0 !important;
}

/* Remove any existing margin/padding that might affect centering */
.columns.text .text-center {
    padding: 0 !important;
}

/* Ensure button maintains its style while centered */
.text-center .button {
    margin: 0 auto !important;
}

/* Footer credentials section */
.members {
    padding: 3rem 0 !important;
}

.members h5 {
    color: var(--accent) !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

/* Credential cards */
.cred {
    background: rgba(21, 21, 21, 0.5) !important;
    padding: 2rem !important;
    border-radius: var(--mediumrad) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.cred:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1) !important;
}

.cred img {
    max-width: 200px !important;
    height: auto !important;
    margin-bottom: 1rem !important;
}

.credential-text {
    color: white !important;
    font-size: 1rem !important;
    text-align: center !important;
    margin: 0 !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .members {
        padding: 2rem 0 !important;
    }
    
    .cred {
        padding: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .cred img {
        max-width: 150px !important;
    }
}

/* Contact form section styling */
#contact-form {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 4rem 1rem !important;
}

.multi-booking {
    max-width: 600px !important;
    width: 100% !important;
    margin: 0 auto !important;
    background: rgba(21, 21, 21, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: var(--mediumrad) !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1) !important;
}

/* Form title and text */
.multi-booking h3 {
    color: var(--accent) !important;
    text-align: center !important;
    margin-bottom: 0.5rem !important;
}

.multi-booking p {
    color: white !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

/* Form inputs styling */
.form-group {
    margin-bottom: 1.5rem !important;
}

.form-group label {
    color: white !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 500 !important;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--smallrad) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent) !important;
    outline: none !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2) !important;
}

/* Form buttons */
.multi-booking .button {
    margin-top: 1rem !important;
}

.multi-booking .button2 {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    #contact-form {
        padding: 2rem 1rem !important;
    }
    
    .multi-booking {
        padding: 1.5rem !important;
    }
}

/* Multi-step form styling */
.multi-step-form {
    position: relative !important;
}

/* Hide all form cards by default */
.form-card {
    display: none !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

/* Only show active form card */
.form-card.active {
    display: block !important;
    opacity: 1 !important;
}

/* Form buttons layout */
.form-buttons {
    display: flex !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
}

/* Previous button styling */
.button2 {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    margin-right: 1rem !important;
}

/* Form transition effects */
.form-card.slide-in {
    animation: slideIn 0.3s forwards !important;
}

.form-card.slide-out {
    animation: slideOut 0.3s forwards !important;
}

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

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

/* Form select dropdown styling */
.form-group select {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: var(--smallrad) !important;
    background: #151515 !important;
    color: white !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    line-height: 1.5 !important;
    height: auto !important;
    text-overflow: ellipsis !important;
}

/* Custom dropdown arrow */
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 1.5em !important;
    padding-right: 3rem !important; /* Make room for the arrow */
}

/* Style dropdown options */
.form-group select option {
    background: #151515 !important;
    color: white !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    min-height: 3rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

/* Selected option style */
.form-group select option:checked,
.form-group select option:hover {
    background: var(--accent) !important;
    color: black !important;
}

/* Focus state */
.form-group select:focus {
    border-color: var(--accent) !important;
    outline: none !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2) !important;
}

/* Hover state */
.form-group select:hover {
    border-color: var(--accent) !important;
}

/* Placeholder text color */
.form-group select:invalid {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Enhanced glow effects */
.glow-effect {
    animation: textGlow 2s infinite !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                 0 0 40px rgba(255, 215, 0, 0.4),
                 0 0 60px rgba(255, 215, 0, 0.2) !important;
}

/* Enhanced electrical glow animation */
@keyframes electricalGlow {
    0%, 100% {
        filter: brightness(1) !important;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                    0 0 40px rgba(255, 215, 0, 0.4) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: brightness(1.4) !important;
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.9),
                    0 0 60px rgba(255, 215, 0, 0.6),
                    0 0 90px rgba(255, 215, 0, 0.3) !important;
        transform: scale(1.05) !important;
    }
}

/* Enhanced highlight effect */
.highlight {
    color: var(--accent) !important;
    font-weight: 600 !important;
    animation: electricalGlow 8s ease-in-out infinite !important;
    text-shadow: 0 0 25px rgba(255, 255, 0, 1),
                 0 0 45px rgba(255, 255, 0, 0.8),
                 0 0 65px rgba(255, 255, 0, 0.6) !important;
}

/* Enhanced button glow */
.button {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.button:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4),
                0 0 50px rgba(255, 215, 0, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* Enhanced form focus effects */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3),
                0 0 40px rgba(255, 215, 0, 0.1) !important;
}

/* Enhanced credential cards glow */
.cred {
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.cred:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2),
                0 5px 20px rgba(255, 215, 0, 0.1) !important;
}

/* Enhanced WhatsApp widget glow */
.whatsapp-widget {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-widget:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6) !important;
}

/* Enhanced pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1) !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    }
    70% {
        transform: scale(1.1) !important;
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6) !important;
    }
    100% {
        transform: scale(1) !important;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    }
}

/* Enhanced bulb icon glow */
.uk-icon[uk-icon="icon: bulb"] {
    color: var(--accent) !important;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8)) 
            drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)) !important;
    animation: bulbGlow 3s ease-in-out infinite !important;
    transform-origin: center !important;
}

@keyframes bulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)) !important;
        transform: scale(1) !important;
        opacity: 1 !important;
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1))
                drop-shadow(0 0 40px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 60px rgba(255, 215, 0, 0.4)) !important;
        transform: scale(1.1) !important;
        opacity: 0.9 !important;
    }
}

/* Make the icon more visible in the dark navbar */
.top-section .uk-icon[uk-icon="icon: bulb"] {
    color: #D7FF0E !important; /* Brighter yellow */
    font-size: 1.2em !important;
    margin-right: 5px !important;
}

/* Enhance glow effect when navbar is scrolled */
.top-section.scrolled .uk-icon[uk-icon="icon: bulb"] {
    animation: bulbGlowScrolled 3s ease-in-out infinite !important;
}

@keyframes bulbGlowScrolled {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9))
                drop-shadow(0 0 30px rgba(255, 215, 0, 0.5)) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1))
                drop-shadow(0 0 50px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 75px rgba(255, 215, 0, 0.6)) !important;
        transform: scale(1.15) !important;
    }
}

/* Super enhanced bulb icon glow */
.uk-icon[uk-icon="icon: bulb"] {
    color: #D7FF0E !important; /* Bright gold */
    font-size: 1.4em !important; /* Larger size */
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1)) 
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.8))
            drop-shadow(0 0 45px rgba(255, 215, 0, 0.6)) !important;
    animation: intenseBulbGlow 2s ease-in-out infinite !important;
    transform-origin: center !important;
    position: relative !important;
    z-index: 10 !important;
}

@keyframes intenseBulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1))
                drop-shadow(0 0 30px rgba(255, 215, 0, 0.8))
                drop-shadow(0 0 45px rgba(255, 215, 0, 0.6)) !important;
        transform: scale(1) rotate(0deg) !important;
        color: #D7FF0E !important;
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 0, 1))
                drop-shadow(0 0 60px rgba(255, 255, 0, 0.9))
                drop-shadow(0 0 90px rgba(255, 255, 0, 0.7))
                drop-shadow(0 0 120px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1.2) rotate(5deg) !important;
        color: #FFFF00 !important;
    }
}

/* Make the icon even more visible in the dark navbar */
.top-section .uk-icon[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Even brighter yellow */
    font-size: 1.5em !important; /* Even larger */
    margin-right: 8px !important;
    text-shadow: 0 0 20px rgba(255, 255, 0, 1) !important;
}

/* Super enhanced glow effect when navbar is scrolled */
.top-section.scrolled .uk-icon[uk-icon="icon: bulb"] {
    animation: intenseBulbGlowScrolled 2s ease-in-out infinite !important;
}

@keyframes intenseBulbGlowScrolled {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 0, 1))
                drop-shadow(0 0 40px rgba(255, 255, 0, 0.8))
                drop-shadow(0 0 60px rgba(255, 255, 0, 0.6)) !important;
        transform: scale(1) rotate(-5deg) !important;
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
                drop-shadow(0 0 80px rgba(255, 255, 0, 0.9))
                drop-shadow(0 0 120px rgba(255, 255, 0, 0.7))
                drop-shadow(0 0 160px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1.3) rotate(5deg) !important;
    }
}

/* Add pseudo-element for extra glow */
.uk-icon[uk-icon="icon: bulb"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.4) 0%,
        rgba(255, 255, 0, 0.2) 30%,
        transparent 70%);
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Target the specific bulb icon in navigation */
nav ul li a .uk-icon[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Pure yellow */
    font-size: 2em !important; /* Much larger */
    filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
            drop-shadow(0 0 80px rgba(255, 255, 0, 0.9))
            drop-shadow(0 0 120px rgba(255, 255, 0, 0.7)) !important;
    animation: superIntenseBulbGlow 1.5s ease-in-out infinite !important;
    transform-origin: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 10px !important;
    position: relative !important;
    z-index: 100 !important; /* Ensure it's above other elements */
}

@keyframes superIntenseBulbGlow {
    0%, 100% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 0, 1))
                drop-shadow(0 0 80px rgba(255, 255, 0, 0.9)) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: drop-shadow(0 0 60px rgba(255, 255, 0, 1))
                drop-shadow(0 0 120px rgba(255, 255, 0, 1))
                drop-shadow(0 0 180px rgba(255, 255, 0, 0.9)) !important;
        transform: scale(1.4) !important;
    }
}

/* Add a glowing background */
nav ul li a .uk-icon[uk-icon="icon: bulb"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.6) 0%,
        rgba(255, 255, 0, 0.3) 30%,
        transparent 70%);
    z-index: -1;
    animation: pulseBackground 1.5s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
}

/* Override any potential conflicting styles */
.uk-icon[uk-icon="icon: bulb"] svg {
    stroke: #FFFF00 !important;
    stroke-width: 2 !important;
    fill: #FFFF00 !important;
}

/* Ensure the icon container doesn't clip the glow */
nav ul li a {
    overflow: visible !important;
}

nav ul li {
    overflow: visible !important;
}

.top-section nav {
    overflow: visible !important;
}

/* Target the specific navigation bulb icon */
.uk-navbar-nav .uk-icon[uk-icon="icon: bulb"],
nav .uk-icon[uk-icon="icon: bulb"],
[uk-icon="icon: bulb"] {
    color: #FFFF00 !important; /* Bright yellow */
    font-size: 24px !important; /* Much larger */
    position: relative !important;
    z-index: 1000 !important;
    display: inline-block !important;
    animation: extremeGlow 2s infinite !important;
    transform-origin: center !important;
    margin: 0 5px !important;
}

/* Extreme glow animation */
@keyframes extremeGlow {
    0%, 100% {
        filter: 
            brightness(1.5)
            drop-shadow(0 0 10px #FFFF00)
            drop-shadow(0 0 20px #FFFF00)
            drop-shadow(0 0 30px #FFFF00) !important;
        transform: scale(1) !important;
    }
    50% {
        filter: 
            brightness(2)
            drop-shadow(0 0 20px #FFFF00)
            drop-shadow(0 0 40px #FFFF00)
            drop-shadow(0 0 60px #FFFF00) !important;
        transform: scale(1.2) !important;
    }
}

/* Force SVG colors */
[uk-icon="icon: bulb"] svg * {
    stroke: #FFFF00 !important;
    fill: #FFFF00 !important;
    stroke-width: 2 !important;
}

/* Add a glowing orb behind the icon */
[uk-icon="icon: bulb"]::after {
    content: '';
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 30px !important;
    height: 30px !important;
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.8) 0%,
        rgba(255, 255, 0, 0.4) 50%,
        transparent 70%) !important;
    transform: translate(-50%, -50%) !important;
    z-index: -1 !important;
    pointer-events: none !important;
    animation: orbPulse 2s infinite !important;
}

@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
}


/* Enhanced electrical light effect */
.highlight {
    color: #FFFF00 !important;
    font-weight: 600 !important;
    position: relative !important;
    display: inline-block !important;
    animation: electricLight 4s ease-in-out infinite !important;
}

@keyframes electricLight {
    0%, 100% {
        color: #FFFFFF !important;
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(255, 255, 255, 0.6);
    }
    45%, 55% {
        color: #FFFF00 !important;
        text-shadow: 
            0 0 30px rgba(255, 255, 0, 1),
            0 0 60px rgba(255, 255, 0, 1),
            0 0 90px rgba(255, 255, 0, 0.8),
            0 0 120px rgba(255, 255, 0, 0.6);
    }
}

/* Add light rays effect */
.highlight::before {
    content: '';
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 150% !important;
    height: 150% !important;
    transform: translate(-50%, -50%) !important;
    background: radial-gradient(circle, 
        rgba(255, 255, 0, 0.8) 0%,
        rgba(255, 255, 0, 0.4) 30%,
        transparent 70%) !important;
    z-index: -1 !important;
    opacity: 0 !important;
    animation: lightRays 4s ease-in-out infinite !important;
}

@keyframes lightRays {
    0%, 100% {
        opacity: 0 !important;
        background: radial-gradient(circle, 
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.4) 30%,
            transparent 70%
        ) !important;
    }
    45%, 55% {
        opacity: 1 !important;
        background: radial-gradient(circle, 
            rgba(255, 255, 0, 0.8) 0%,
            rgba(255, 255, 0, 0.4) 30%,
            transparent 70%
        ) !important;
    }
}

/* Add subtle flicker effect */
.highlight span {
    animation: flicker 0.15s ease-in-out infinite alternate !important;
}

@keyframes flicker {
    0% {
        opacity: 0.97 !important;
    }
    100% {
        opacity: 1 !important;
    }
}

/* Logo container styles with electrical effects */
.logo-container {
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Base logo styles */
.logo-base {
    max-height: var(--logoheight) !important;
    width: auto !important;
    display: block !important;
    position: relative !important;
    z-index: 2 !important;
    filter: brightness(0) invert(1) !important; /* Re-add this to make logo white */
}

/* Icon (bulb) styles with enhanced electrical effects */
.logo-icon {
    height: 60px !important;
    width: auto !important;
    display: block !important;
    margin-left: -4px !important;
    position: relative !important;
    z-index: 3 !important;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important; /* Re-add brightness(0) invert(1) */
    animation: electricalIcon 3s ease-in-out infinite !important;
}

/* Add electrical animation for the icon */
@keyframes electricalIcon {
    0%, 100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 0, 0.5)) !important;
        transform: scale(1) rotate(-2deg) !important;
    }
    25% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.1) rotate(2deg) !important;
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(255, 255, 0, 1)) !important;
        transform: scale(1.2) rotate(-1deg) !important;
    }
    75% {
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 0, 0.8)) !important;
        transform: scale(1.1) rotate(1deg) !important;
    }
}

/* Add glowing effect behind the logo */
.logo-container::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 120% !important;
    height: 120% !important;
    transform: translate(-50%, -50%) !important;
    background: radial-gradient(
        circle,
        rgba(255, 255, 0, 0.2) 0%,
        rgba(255, 255, 0, 0.1) 30%,
        transparent 70%
    ) !important;
    z-index: 1 !important;
    animation: logoGlow 3s ease-in-out infinite !important;
    pointer-events: none !important;
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.5 !important;
        transform: translate(-50%, -50%) scale(1) !important;
    }
    50% {
        opacity: 0.8 !important;
        transform: translate(-50%, -50%) scale(1.1) !important;
    }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .logo-container {
        gap: 1px !important;
    }
    
    .logo-icon {
        height: 50px !important;
        margin-left: -2px !important;
    }
    
    .logo-container::after {
        width: 110% !important;
        height: 110% !important;
    }
}

/* Add electrical sparks effect */
.logo-icon::before,
.logo-icon::after {
    content: '' !important;
    position: absolute !important;
    width: 20px !important;
    height: 2px !important;
    background: rgba(255, 255, 0, 0.8) !important;
    filter: blur(1px) !important;
    z-index: 2 !important;
    opacity: 0 !important;
    animation: sparkEffect 2s infinite !important;
}

.logo-icon::before {
    top: 20% !important;
    right: -10px !important;
    transform: rotate(45deg) !important;
    animation-delay: 0.5s !important;
}

.logo-icon::after {
    bottom: 20% !important;
    right: -10px !important;
    transform: rotate(-45deg) !important;
    animation-delay: 1s !important;
}

@keyframes sparkEffect {
    0%, 100% {
        opacity: 0 !important;
        width: 0 !important;
    }
    10%, 30% {
        opacity: 1 !important;
        width: 20px !important;
    }
    40% {
        opacity: 0 !important;
        width: 0 !important;
    }
}

/* Remove parallax scrolling from about section image */
.intro .bigbg {
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    min-height: 400px !important;
    transform: none !important;
}

.intro .bigbg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: relative !important;
    transform: none !important;
}

/* Remove any parallax effects */
.intro [uk-parallax], 
.intro div, 
.intro .columns,
.intro .row,
.intro .bigbg,
.intro img {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    position: relative !important;
}

/* Ensure container maintains proper dimensions */
.intro .columns.small-12.medium-12.large-6 {
    height: auto !important;
    min-height: 400px !important;
}

/* Remove parallax scrolling from white-section image */
.white-section .bigbg.hundred {
    position: absolute !important;
    overflow: hidden !important;
    height: 100% !important;
    min-height: 350px !important; /* Increased from 300px to 350px */
    max-height: 350px !important; /* Increased from 300px to 350px */
}

.white-section .bigbg.hundred img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    transform: none !important;
}

/* Adjust container dimensions to match */
.white-section .columns.small-12.medium-6.large-6 {
    height: auto !important;
    min-height: 350px !important; /* Increased from 300px to 350px */
    max-height: 350px !important; /* Increased from 300px to 350px */
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .white-section .bigbg.hundred {
        min-height: 300px !important; /* Increased from 250px to 300px */
        max-height: 300px !important; /* Increased from 250px to 300px */
    }
    
    .white-section .columns.small-12.medium-6.large-6 {
        min-height: 300px !important; /* Increased from 250px to 300px */
        max-height: 300px !important; /* Increased from 250px to 300px */
    }
}

/* Remove top padding from white-section */
.columns.white-section {
    padding-top: 0 !important;
}

/* Maintain other white-section styles */
.white-section .bigbg.hundred {
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    min-height: 350px !important;
    max-height: 350px !important;
}

/* Update mobile navigation styles */
@media screen and (max-width: 64em) {
    /* Logo styles */
    .logo {
        text-align: center;
        width: 100%;
        padding: 10px 60px;
        margin-bottom: 0;
    }
    
    /* Navigation container */
    .navigation {
        width: 100%;
        text-align: center;
        padding: 0;
        margin-top: 10px;
    }
    
    /* Navigation list */
    .navigation ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
    }
    
    /* Navigation items */
    .navigation ul li {
        width: 100%;
        text-align: center;
    }
    
    .navigation ul li a {
        display: block;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    /* Adjust header padding for mobile */
    .top-section {
        padding: calc(var(--smallpad) * 0.5) 0 !important;
        flex-direction: column;
    }
    
    /* Adjust row alignment */
    .row.align-middle.widerow {
        flex-direction: column;
    }
    
    /* Hide navigation by default on mobile */
    .navigation {
        display: none;
    }
    
    /* Show navigation when mobile menu is active */
    .mobile-menu-active .navigation {
        display: block;
    }
}

/* Ensure mobile menu toggle works */
.nav-toggler {
    display: none;
}

@media screen and (max-width: 64em) {
    .nav-toggler {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 1000;
    }
}

/* Add smooth transitions */
.navigation {
    transition: all 0.3s ease-in-out;
}

.navigation ul li a {
    transition: color 0.2s ease-in-out;
}

/* Add responsive text for photo description */
.photo-description:after {
    content: 'right';
}

@media screen and (max-width: 64em) {
    .photo-description:after {
        content: 'below';
    }
}

/* Emergency contact button styles */
.emergency-contact {
    margin-top: 20px !important;
}

.emergency-contact a {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 5px !important;
    transition: background-color 0.3s ease !important;
}

.emergency-contact a:hover {
    background-color: #cc0000 !important;
    color: white !important;
}

.emergency-label {
    font-size: 1rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
}

.emergency-number {
    font-size: 1.2rem !important;
    font-weight: bold !important;
}

/* Add some separation from other menu items */
.mobile-menu ul li.emergency-contact {
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Desktop emergency contact button styles */
.navigation .emergency-contact {
    margin-left: 15px !important;
}

.navigation .emergency-contact a {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    display: flex !important;
    flex-direction: column !important;  /* Changed to column to match mobile */
    align-items: center !important;
    gap: 5px !important;
    min-width: 200px !important;  /* Ensure minimum width */
}

.navigation .emergency-contact a:hover {
    background-color: #cc0000 !important;
}

.navigation .emergency-label {
    font-size: 1rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
    display: block !important;
    text-align: center !important;
}

.navigation .emergency-number {
    font-size: 1.2rem !important;
    font-weight: bold !important;
    display: block !important;
    text-align: center !important;
}

/* Hide the after pseudo-element for emergency contact */
.navigation .emergency-contact a::after {
    display: none !important;
}

/* Remove any default navigation styles that might interfere */
.navigation ul li.emergency-contact {
    display: flex !important;
    align-items: center !important;
}

.navigation ul li.emergency-contact > a {
    margin-right: 0 !important;
}

/* Responsive adjustments */
@media screen and (max-width: 64em) {
    .navigation .emergency-contact {
        display: none !important; /* Hide in desktop nav when mobile */
    }
}

/* Mobile emergency contact button styles */
.mobile-menu .emergency-contact a {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 15px 20px !important;
    display: flex !important;
    flex-direction: column !important;  /* Stack vertically on mobile */
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;  /* Full width on mobile */
    text-align: center !important;
}

.mobile-menu .emergency-label {
    font-size: 1.2rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
    display: block !important;  /* Ensure block display */
    width: 100% !important;
}

.mobile-menu .emergency-number {
    font-size: 1.4rem !important;
    font-weight: bold !important;
    display: block !important;  /* Ensure block display */
    width: 100% !important;
}

/* Add separation from other menu items in mobile */
.mobile-menu ul li.emergency-contact {
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
}

/* Hover effects */
.emergency-contact a:hover {
    background-color: #cc0000 !important;
    color: white !important;
}

/* Header emergency contact styles */
.header-emergency-contact {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    padding-right: 20px !important;
}

.emergency-button {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 8px 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2px !important;
    text-decoration: none !important;
    transition: background-color 0.3s ease !important;
}

.emergency-button:hover {
    background-color: #cc0000 !important;
    color: white !important;
}

.emergency-button .emergency-label {
    font-size: 0.9rem !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
}

.emergency-button .emergency-number {
    font-size: 1.1rem !important;
    font-weight: bold !important;
}

/* Mobile adjustments */
@media screen and (max-width: 64em) {
    .header-emergency-contact {
        display: none !important; /* Hide on mobile since it's in the mobile menu */
    }
}

/* Fixed emergency contact styles - Desktop */
.emergency-contact-fixed {
    position: fixed !important;
    top: calc(var(--logoheight) + var(--smallpad) * 2) !important;
    right: 0 !important;
    z-index: 998 !important;
}

/* Mobile adjustments for emergency button */
@media screen and (max-width: 64em) {
    .emergency-contact-fixed {
        position: fixed !important;
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding: 16px !important;
        z-index: 999 !important;
        background-color: transparent !important;
    }

    /* Increase padding at the bottom of main content */
    main {
        padding-bottom: 120px !important; /* Increased from 100px to 120px */
    }

    /* Add margin to the bottom of the last section */
    main > section:last-child {
        margin-bottom: 80px !important;
    }

    .emergency-button {
        width: 100% !important;
        justify-content: center !important;
        padding: 15px 20px !important;
        border-radius: 0 !important;
        flex-direction: row !important;
        gap: 10px !important;
        background-color: #ff0000 !important;
    }

    .emergency-button .emergency-label,
    .emergency-button .emergency-number {
        font-size: 1.1rem !important;
    }
}

.emergency-button {
    background-color: #ff0000 !important;
    color: white !important;
    border-radius: 8px 0 0 8px !important; /* Only round the left corners */
    padding: 8px 15px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
}

/* Review section button styles */
.small-section.tac {
    margin-top: 2rem !important;
}

.small-section.tac .button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.small-section.tac .button span[uk-icon] {
    transition: transform 0.3s ease !important;
}

.small-section.tac .button:hover span[uk-icon] {
    transform: translateX(5px) !important;
}

/* Reviews grid layout */
.reviews-grid {
    margin: 0 -1rem !important;
}

.reviews-grid .column {
    padding: 1rem !important;
}

.reviews-grid blockquote {
    height: 100% !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    position: relative !important;
    background: var(--dark) !important;
    border-radius: var(--mediumrad) !important;
    overflow: hidden !important;
    padding: 0 !important;
    box-shadow: 0 3px 5px rgba(0,0,0,0.4) !important;
    transition: all 0.3s ease !important;
}

/* Remove any existing background styles */
.reviews-grid blockquote.darkbg {
    background: var(--dark) !important; /* Force dark background */
}

/* Remove any existing before/after elements that might add backgrounds */
.reviews-grid blockquote::before,
.reviews-grid blockquote::after {
    display: none !important;
}

/* Ensure consistent text content styling */
.reviews-grid .review-content {
    flex-grow: 1 !important;
    padding: 2.5rem 1.5rem 1.5rem !important;
    background: transparent !important; /* Remove any background */
}

.reviews-grid .review-content p {
    color: white !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
    position: relative !important;
    z-index: 2 !important;
}

.reviews-grid .author {
    margin-top: 0.5rem !important;
    padding: 0 1.5rem 1.5rem !important;
    color: var(--accent) !important;
    font-size: 0.8rem !important;
}




