.elementor-kit-421{--e-global-color-primary:#F6F9FF;--e-global-color-secondary:#54595F;--e-global-color-text:#000000;--e-global-color-accent:#BBBBBB;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:300;--e-global-typography-secondary-font-family:"Roboto";--e-global-typography-secondary-font-weight:300;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:300;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:transparent;color:#080000;font-family:"Roboto", Roboto;font-size:15px;font-weight:300;background-image:linear-gradient(180deg, #F6F9FF 0%, #F6F9FF 100%);overscroll-behavior:none;}.elementor-kit-421 e-page-transition{background-color:#F6F9FF;}.elementor-kit-421 a{color:var( --e-global-color-accent );font-family:"Roboto", Roboto;font-size:15px;font-weight:300;}.elementor-kit-421 a:hover{color:var( --e-global-color-primary );}.elementor-kit-421 h1{color:#000000;font-family:"Roboto", Roboto;font-weight:300;}.elementor-kit-421 h2{color:#000000;font-family:"Roboto", Roboto;font-weight:300;}.elementor-kit-421 h3{color:#000000;font-family:"Roboto", Roboto;font-weight:300;}.elementor-kit-421 h4{color:var( --e-global-color-primary );font-family:"Roboto", Roboto;font-weight:300;text-transform:capitalize;font-style:normal;text-decoration:none;line-height:1.2em;letter-spacing:0px;}.elementor-kit-421 h5{color:#000000;font-family:"Roboto", Roboto;font-weight:300;}.elementor-kit-421 h6{color:#0A0000;font-family:"Roboto", Roboto;font-weight:300;}.elementor-kit-421 button,.elementor-kit-421 input[type="button"],.elementor-kit-421 input[type="submit"],.elementor-kit-421 .elementor-button{font-family:"Roboto", Roboto;font-weight:300;text-shadow:0px 0px 10px rgba(0,0,0,0.3);}.elementor-kit-421 img{border-style:none;}.elementor-kit-421 img:hover{border-style:none;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1600px;}.e-con{--container-max-width:1600px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){margin-block-end:0px;}.elementor-element{--widgets-spacing:0px 0px;--widgets-spacing-row:0px;--widgets-spacing-column:0px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-lightbox{background-color:#F6F9FF;--lightbox-ui-color:#F6F9FF;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-421 h4{font-size:18px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Reset default margin/padding */
body, ul {
    margin: 0;
    padding: 0;
}

/* Make the header transparent */
.transparent-header {
    position: fixed; /* Sticky header */
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: transparent; /* Initially transparent */
    color: white; /* Text color */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000; /* Ensures header stays above other content */
    transition: background-color 0.3s ease; /* Smooth transition */
}

/* Change header background on scroll (optional) */
.transparent-header.scrolled {
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
}

/* Navigation styling */
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero section styling */
.hero-section {
    height: 100vh;
    background: url('your-background-image.jpg') no-repeat center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}/* End custom CSS */