@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

@font-face {
    font-family: 'HoboStd';
    src: url('/font/Hobo-Std-Medium.ttf') format('truetype'); /* Adjust the file path */
    font-weight: normal;
    font-style: normal;
}

body{
	line-height: 1.5;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	overflow-x: hidden;
	margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    height: 100%; /* Make sure the body and html cover the full height */
	
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.special-heading {
            font-family: 'HoboStd', sans-serif; /* Fallback to sans-serif if the custom font doesn't load */
            
            
            
        }
:before,:after{
	box-sizing: border-box;
}
.container{
	max-width: 1200px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
.v-center{
	align-items: center;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}

section{
    padding: 100px 0;
}
.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
h1{
	font-size: 3.5rem;
}

h4{
	font-size: 1.5rem;
	text-align: center;
	color: #fca400;
}
.full-background h3 {
	color: #fff;
	text-align: center;
	font-size: 2.3rem;
}

.banner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between; /* Ensure proper spacing between text and image */
    padding: 5px;
    position: relative;
}


.banner-img {
    flex: 0 0 30%; /* Image takes up 30% of the space */
    max-width: 30%; /* Ensures the image doesn't take up more than 30% of the width */
    height: auto;
    transition: transform 0.5s ease;
    margin: 5px;
    position: relative;
    z-index: 1;
}

/* Cookie Consent Banner Styles */
#cookieConsentBanner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 1000; /* Ensure it's above other content */
}

#cookieConsentBanner p {
    margin: 0;
    font-size: 14px;
}

#cookieConsentBanner a {
    color: #66ccff;
    text-decoration: none;
}

#cookieConsentBanner a:hover {
    text-decoration: underline;
}

#cookieConsentBanner button {
    background: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

#cookieConsentBanner button:hover {
    background: #0056b3;
}

/* Cookie Management Modal Styles */
#cookieManagementModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1001; /* Ensure it's above the banner */
}

#cookieManagementModal div {
    background: #333;
    padding: 20px;
    margin: auto;
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
}

#cookieManagementModal h2 {
    margin-top: 0;
    font-size: 18px;
}

#cookieManagementModal p {
    font-size: 14px;
}

#cookieManagementModal div {
    margin-bottom: 15px;
}

#cookieManagementModal input[type="checkbox"] {
    margin-right: 10px;
}

#cookieManagementModal label {
    font-size: 14px;
}

#savePreferences, #closeModal {
    background: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

#savePreferences:hover, #closeModal:hover {
    background: #0056b3;
}

#closeModal {
    background: #ccc;
    color: #333;
}

#closeModal:hover {
    background: #bbb;
}

.text {
    flex: 0 0 60%; /* Text takes up 60% of the space */
    max-width: 60%; /* Ensures the text doesn't take up more than 60% of the width */
    padding: 20px;
    margin: 5px;
    transition: transform 0.5s ease, background-color 0.5s ease;
    position: relative;
    z-index: 2;
    text-align: left; /* Aligns text to the left */
}

.text p {
    font-size: 2rem; /* Set font size to 2rem */
}

/* Media query for medium screens */
@media (max-width: 1024px) {
    .text p {
        font-size: 1.8rem; /* Adjust font size for medium screens */
    }
}

/* Ensure that the banner scales well on mobile devices */
@media (max-width: 768px) {
    .banner {
        flex-direction: column; /* Stack elements vertically */
        padding: 10px; /* Reduce padding to fit content better */
        text-align: center; /* Center text for better alignment on small screens */
    }

    .banner-img {
        flex: 0 0 auto; /* Allow image to resize based on its content */
        max-width: 100%; /* Ensure image doesn't overflow */
        height: auto; /* Maintain aspect ratio */
        margin: 5px 0; /* Adjust margin for better spacing */
    }

    .text {
        flex: 0 0 auto; /* Allow text block to resize based on its content */
        max-width: 100%; /* Ensure text block doesn't overflow */
        margin: 10px 0; /* Adjust margin for better spacing */
    }

    .text p {
        font-size: 1.5rem; /* Adjust font size for readability on smaller screens */
    }
}


@media (max-width: 480px) {
    .banner-img {
        max-width: 100%; /* Allow image to be as wide as its container */
        max-height: auto; /* Further reduce height for extra-small screens */
    }

    .text p {
        font-size: 1rem; /* Further reduce font size for very small screens */
    }

    h1 {
        font-size: 1.5rem; /* Further reduce heading size */
    }
}






/* header */
.header{
	display: block;
	width: 100%;
	position: sticky;
	top: 0; /* Sticks to the top of the viewport */
	z-index: 99;
	padding:15px;
	transition: all 0.3s ease;
}
.header.scrolled {
	background-color: white; /* Background color when scrolled */
}
.header .item-left{
	flex:0 0 17%;
}
.header .logo a{
	font-size: 30px;
	color:#000000;
	font-weight: 700;
	text-decoration: none;
  
}
.header .logo a img {
  height: 80px;
  width: auto; /* Ensure aspect ratio is maintained */
  max-width: 100%; /* Make sure the image scales properly */
  display: block;
}
.header .item-center{
	flex:0 0 66%;
}
.header .item-right{
	flex:0 0 17%;
	display: flex;
	justify-content: flex-end;
}
.header .item-right a{ 
     text-decoration: none;
     font-size: 16px;
     color:#555555;
     display: inline-block;
     margin-left: 10px;
     transition: color 0.3s ease;
}
.header .menu > ul > li{
	display: inline-block;
	line-height: 50px;
	margin-left: 25px;
}
.header .menu > ul > li > a{
	font-size: 15px;
	font-weight: 500;
	color:#000000;
	position: relative;
	text-transform: capitalize;
	transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu{
	position: absolute;
	z-index: 500;
	background-color:#ffffff;
	box-shadow: -2px 2px 70px -25px rgba(0,0,0,0.3); 
	padding: 20px 30px;
	transition: all 0.5s ease;
	margin-top:25px;
	opacity:0;
	visibility: hidden;
}
@media(min-width: 992px){
.header .menu > ul > li.menu-item-has-children:hover .sub-menu{
	margin-top: 0;
	visibility: visible;
	opacity: 1;
}
}
.header .menu > ul > li .sub-menu > ul > li{
	line-height: 1;
}
.header .menu > ul > li .sub-menu > ul > li > a{
	display: inline-block;
	padding: 10px 0;
	font-size: 15px;
	color: #555555;
	transition: color 0.3s ease;
	text-decoration: none;
	text-transform: capitalize;
}
.header .menu > ul > li .single-column-menu{
	min-width: 280px;
	max-width: 350px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li{
   line-height: 1;
   display: block; 
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
	padding:10px 0;
	display: inline-block;
	font-size: 16px;
	color:#555555;
	transition: color 0.3s ease;

}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > p {
	padding:0px 0;
	display: inline-block;
	font-size: 12px;
	color:#a6a2a2;
	transition: color 0.3s ease;
}

.header .menu > ul > li .sub-menu.mega-menu{ 
    left: 50%;
    transform: translateX(-50%);	
}

.header .menu > ul > li .sub-menu.mega-menu-column-4{
  max-width: 1100px;
  width: 100%; 	
  display: flex;
  flex-wrap: wrap;
  padding:20px 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
  flex:0 0 25%;
  padding:0 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title{
	font-size: 16px;
	color:#ea4636;
	font-weight: 500;
	line-height: 1;
	padding:10px 0;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
	text-align: center;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
	max-width: 100%;
	width: 100%;
	vertical-align: middle;
	margin-top: 10px;
	height: 300px;
	object-fit: cover;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a{
	color:#ea4636;
}

.menu-item-has-children:hover > a i,
.menu-item-has-children.active > a i {
  transform: rotate(180deg);
}
/* banner section */
.banner-section{
  background-image: url('/images/homebanner2.png');
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
}
.mobile-menu-head,
.mobile-menu-trigger{
	display: none;
}

/*responsive*/
@media(max-width: 991px){

	.header .item-center{
		order:3;
		flex:0 0 100%;
	}
	.header .item-left,
	.header .item-right{
		flex:0 0 auto;
	}
	.v-center{
		justify-content: space-between;
	}
	.header .mobile-menu-trigger{
		display: flex;
		height: 30px;
		width: 30px;
		margin-left: 15px;
		cursor: pointer;
		align-items: center;
		justify-content: center;
	}
	.header .mobile-menu-trigger span{
		display: block;
		height: 2px;
		background-color: #333333;
		width: 24px;
		position: relative;
	}
	.header .mobile-menu-trigger span:before,
	.header .mobile-menu-trigger span:after{
		content: '';
		position: absolute;
		left:0;
		width: 100%;
		height: 100%;
		background-color: #333333;
	}
	.header .mobile-menu-trigger span:before{
		top:-6px;
	}
	.header .mobile-menu-trigger span:after{
		top:6px;
	}
	.header .item-right{
		align-items: center;
	}

	.header .menu{
		position: fixed;
		width: 320px;
		background-color:#ffffff;
		left:0;
		top:0;
		height: 100%;
		overflow: hidden;
		transform: translate(-100%);
		transition: all 0.5s ease;
		z-index: 1099;
	}
	.header .menu.active{
	   transform: translate(0%);	
	}
	.header .menu > ul > li{
		line-height: 1;
		margin:0;
		display: block;
	}
	.header .menu > ul > li > a{
		line-height: 50px;
		height: 50px;
		padding:0 50px 0 15px;
		display: block;
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}
	.header .menu > ul > li > a i{
		position: absolute;
		height: 50px;
		width: 50px;
		top:0;
		right: 0;
		text-align: center;
		line-height: 50px;
		transform: rotate(-90deg);
	}
	.header .menu .mobile-menu-head{
		display: flex;
		height: 50px;
		border-bottom: 1px solid rgba(0,0,0,0.1);
		justify-content: space-between;
		align-items: center;
		position: relative;
		z-index: 501;
		position: sticky;
		background-color: #ffffff;
		top:0;
	}
	.header .menu .mobile-menu-head .go-back{
		height: 50px;
		width: 50px;
		border-right: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#000000;
		font-size: 16px;
		display: none;
	}
	.header .menu .mobile-menu-head.active .go-back{
		display: block;
	}
	.header .menu .mobile-menu-head .current-menu-title{
		font-size: 15px;
		font-weight: 500;
		color:#000000;
	}
	.header .menu .mobile-menu-head .mobile-menu-close{
	    height: 50px;
		width: 50px;
		border-left: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#000000;	
		font-size: 25px;
	}
	.header .menu .menu-main{
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.header .menu > ul > li .sub-menu.mega-menu,
	.header .menu > ul > li .sub-menu{
		visibility: visible;
		opacity: 1;
		position: absolute;
		box-shadow: none;
		margin:0;
		padding:15px;
		top:0;
		left:0;
		width: 100%;
		height: 100%;
		padding-top: 65px;
		max-width: none;
		min-width: auto;
		display: none;
		transform: translateX(0%);
		overflow-y: auto;
	}
.header .menu > ul > li .sub-menu.active{
	display: block;
}
@keyframes slideLeft{
	0%{
		opacity:0;
		transform: translateX(100%);
	}
	100%{
	    opacity:1;
		transform: translateX(0%);	
	}
}
@keyframes slideRight{
	0%{
		opacity:1;
		transform: translateX(0%);
	}
	100%{
	    opacity:0;
		transform: translateX(100%);	
	}
}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
		margin-top:0;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
		margin-bottom: 20px;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title{
		margin-bottom:0px;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
		flex: 0 0 100%;
        padding: 0px;
	}
	.header .menu > ul > li .sub-menu > ul > li > a,
	.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a{
		display: block;
	}
	.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
		margin-bottom: 15px;
	}
	.menu-overlay{
		position: fixed;
		background-color: rgba(0,0,0,0.5);
		left:0;
		top:0;
		width: 100%;
		height: 100%;
		z-index: 1098;
		visibility: hidden;
		opacity:0;
		transition: all 0.5s ease;
	}
	.menu-overlay.active{
	  visibility: visible;
	  opacity:1;	
	}
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header .logo a img {
      height: 60px; /* Adjust size for smaller screens */
  }
}

@media (max-width: 480px) {
  .header .logo a img {
      height: 50px; /* Further adjust for very small screens */
  }
}
  


.full-background {
    background-color: #230044; /* Replace with your desired color */
    width: 100%; /* Ensure full width */
    min-height: 100vh; /* Ensure full height of the viewport */
    padding: 20px; /* Optional: Add padding if needed */
    box-sizing: border-box; /* Include padding in width and height */
}

.container-panel {
    width: 100%;
    max-width: 900px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 2rem auto 0; /* Center horizontally and add spacing from top */
    padding: 20px; /* Optional: Add some padding for spacing inside the container */
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width */
}


.tabs {
    display: flex;
    border-bottom: 2px solid #ddd;
}

.tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    background-color: #f8f9fa;
    transition: background-color 0.3s ease, color 0.3s ease, border-bottom 0.3s ease;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

.tab:hover {
    background-color: #e2e6ea; /* Light grey on hover */
}

.tab.active {
    background-color: #000000;
    color: #fff;
    border-bottom: 2px solid #ff0000;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.panel {
    padding: 2rem;
    border-top: 1px solid #ddd;
    border-radius: 12px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 100px; /* Minimum height to ensure space for content */
}

.panel .form-content {
    display: none; /* Hide forms by default */
}

.panel .form-content.active {
    display: block; /* Show active form */
}

/* Background colors for active service */
.panel.service1-active {
    background: linear-gradient(135deg, #e7f0ff 0%, #b3d9ff 100%); /* Light blue gradient */
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2); /* Light blue shadow */
}

.panel.service2-active {
    background: linear-gradient(135deg, #e7ffe7 0%, #b3ffb3 100%); /* Light green gradient */
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.2); /* Light green shadow */
}

.panel.service3-active {
    background: linear-gradient(135deg, #fff7e7 0%, #ffe3b3 100%); /* Light yellow gradient */
    box-shadow: 0 4px 12px rgba(255, 223, 0, 0.2); /* Light yellow shadow */
}


.panel h5 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #333; /* Adjust as needed */
}

.panel h6 {
    font-size: 1.2rem; /* Adjust as needed */
}

.panel label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #333;
}

.panel input, .panel textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.button-panel {
    color: #fff;
	font-size: 1rem;
    border-radius: 4px;
    background-color:#1b03f8;
    border: none;
    padding: 20px;
    width: 200px;
    transition: all 0.5s;
}
  
  
.button-panel span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
  
.button-panel span:after {
    
    content: '⮞';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}
  
.button-panel:hover span {
    padding-right: 25px;
}
  
.button-panel:hover span:after {
    opacity: 1;
    right: 0;
}

.sub-main-panel{
    width: 30%;
    margin:2px;
    float: left;
}




.button-two-panel {
    text-align: center;
    cursor: pointer;
    font-size:1.5rem;
    margin: 0 0 0 100px;
}


form {
    flex: 1; /* Allow form to take up remaining space */
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    display: flex;
    align-items: stretch; /* Ensure both items stretch to the same height */
    gap: 20px; /* Space between the icon and the form */
}

#result-container {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    position: relative; /* Relative positioning for proper layout adjustments */
}

#result {
    margin: 0;
    padding: 10px;
    font-size: 1rem;
}

#copy-button {
    display: block;
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
}

#copy-button:hover {
    background-color: #0056b3;
}

/* Media query for small screens */
@media (max-width: 768px) {
    #result-container {
        margin-top: 10px;
        padding: 15px;
        font-size: 0.9rem;
    }

    #copy-button {
        width: 100%; /* Make button full-width on small screens */
        margin-top: 10px;
    }
}


.icon {
    width: 300px; /* Adjust size to match the form */
    height: 100%; /* Ensure it stretches to match the form height */
    object-fit: cover; /* Ensure the image covers the container without distortion */
}
/* Media Query for Small Screens */
@media (max-width: 768px) {

    .content-wrapper {
        flex-direction: column; /* Stack items vertically on small screens */
        align-items: center; /* Center items horizontally */
    }
	h4 {
        font-size: 1rem; /* Adjust for small screens */
    }
	h3 {
        font-size: 1.5rem; /* Adjust for small screens */
    }

    .icon {
        display: none; /* Hide icon on small screens */
    }
	

    .panel h5 {
        font-size: 2rem; /* Adjust for small screens */
    }

    .panel h6 {
        font-size: 1rem; /* Adjust for small screens */
    }

    .panel input, .panel textarea, .panel button {
        font-size: 0.875rem; /* Smaller font size for smaller screens */
    }
}

@media (max-width: 480px) {
	.panel h4 {
        font-size: 1.5rem; /* Adjust for small screens */
    }
    .panel h5 {
        font-size: 1.5rem; /* Adjust for extra-small screens */
    }

    .panel h6 {
        font-size: .80rem; /* Adjust for extra-small screens */
    }

    .panel input, .panel textarea, .panel button {
        font-size: 0.75rem; /* Smaller font size for extra-small screens */
    }
}



.mega-footer {
    background-color: #000000;
    color: #ecf0f1;
    padding: 60px 0;
}

.container-footer {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 220px;
    margin-right: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    font-size: 18px;
    border-bottom: 3px solid #ecf0f1;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.mega-footer .footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    padding-left: 0;
}


.footer-col ul li a:hover {
    color: #f39c12;
    padding-left: 5px;
}

.address p {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #000000;
    color: #ecf0f1;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    background-color: #f39c12;
    transform: scale(1.1);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
}

.newsletter-form input[type="email"] {
    padding: 15px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    background-color: #34495e;
    color: #ecf0f1;
}

.newsletter-form input[type="email"]::placeholder {
    color: #95a5a6;
}

.newsletter-form button {
    background-color: #fff;
    color: black;
    border: none;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.newsletter-form button:hover {
    background-color: red;
    color:white;
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #34495e;
    padding-top: 20px;
    font-size: 14px;
    color: #bdc3c7;
}

#response-message {
    opacity: 1;
    transition: opacity 0.5s ease;
    color: #fff; /* Default color */
}
