html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.buttonHeader {
    background-color: black;
    color: gold;
/*    height: 60px;
    width: 250px*/;
    font-size: 15px;
    /*padding: 0px;*/
    /*border-radius: 10px;
    border: 2px solid gold;*/
    transition-duration: 0.4s;
    cursor: pointer;
}

.buttonHeader:hover {
    background-color: gold;
    color: black;    
}

.buttonHeader:active {
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}

.button2 {
    background-color: black;
    color: gold;
    height: 60px;
    width: 100px;
    font-size: 15px;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid gold;
    transition-duration: 0.4s;
    cursor: pointer;
}

.button2:hover {
    background-color: gold;
    color: black;
}

.button2:active {
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}

footer {
    bottom:0px;
    position:fixed;
    width: 100%;
    font-size: xx-large;
}

.transitionRightToLeft {
    /*background-color: white;*/
    position: relative;
    animation-name: animateRightToLeft;
    animation-duration: 2s;
}

#div1 {
    animation-timing-function: linear;
}

#div2 {
    animation-timing-function: ease;
}

#div3 {
    animation-timing-function: ease-in;
}

#div4 {
    animation-timing-function: ease-out;
}

#div5 {
    animation-timing-function: ease-in-out;
}

@keyframes animateRightToLeft {
    0% {
        left: 200px;
        top: 0px;
    }
    /*    25% {
        background-color: yellow;
        left: 200px;
        top: 0px;
    }

    50% {
        background-color: blue;
        left: 200px;
        top: 200px;
    }

    75% {
        background-color: green;
        left: 0px;
        top: 200px;
    }*/

    100% {
        left: 0px;
        top: 0px;
    }
}

.themeDefault {
    background-color: black;
    color: gold;
}

.borderDefault {
    /*border: 2px solid gold;*/
    border-color: gold !important;
    /*border-color: black !important;*/
}

.borderEdgeDefault {
    border: 2px solid gold;
}

.button1 {
    /*background-color: black;
    color: gold;*/
    height: 60px;
    width: 100px;
    font-size: 15px;
    padding: 16px;
    border-radius: 10px;
    /*border: 2px solid gold;*/
    border: 2px solid white;
    transition-duration: 0.4s;
    cursor: pointer;
}

.button1:hover {
    background-color: gold;
    color: black;
    /*background-color: black;*/
/*color: white;*/
}

.button1:active {
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}

/*a {
    background-color: black;
    color: gold;*/
    /*border: 2px solid gold;*/
    /*transition-duration: 0.4s;
    cursor: pointer;
}

    .a:hover {
        background-color: gold;
        color: black;
    }

    .a:active {
        box-shadow: 0 5px #666;
        transform: translateY(4px);
    }*/





/*body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #000;
    color: #eee;
}

header {
    background: #111;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

    header .logo {
        color: gold;
        font-weight: bold;
        font-size: 24px;
    }

nav a {
    color: gold;
    margin-left: 15px;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: #000;
    animation: fadeIn 2s ease-in;
}

h1, h2 {
    color: gold;
}

.btn-gold {
    background-color: gold;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

    .btn-gold:hover {
        background-color: #e6c200;
    }

.dark-section {
    padding: 60px 20px;
    background-color: #111;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-card {
    background: #222;
    border: 1px solid gold;
    color: gold;
    padding: 20px;
    flex: 1 1 calc(25% - 40px);
    min-width: 200px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s;
}

    .service-card:hover {
        transform: scale(1.05);
    }

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: auto;
}

input, textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
}

footer {
    background: #000;
    color: gold;
    text-align: center;
    padding: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
    }

    header {
        flex-direction: column;
    }

    nav {
        margin-top: 10px;
    }

        nav a {
            margin: 5px;
        }
}*/

/*Optional*/
/*#tsparticles {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}*/

body {
    /*contact us page cant see bottom button*/
    /*margin: 0;*/ 
    font-family: 'Segoe UI', sans-serif;
    background-color: #000;
    color: #eee;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    background-repeat: repeat;
    background-size: cover;
    animation: bgAnimation 30s linear infinite;
}

#tsparticles {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}

header {
    background: rgba(17, 17, 17, 0.9);
    padding: 20px;
    /*display: flex;*/
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header .logo {
    color: gold;
    font-weight: bold;
    font-size: 24px;
}

nav a {
    color: gold;
    margin-left: 15px;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: transparent;
    animation: fadeIn 1s ease-in;
}

h1, h2 {
    color: gold;
}

.btn-gold {
    background-color: gold;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-gold:hover {
    background-color: #e6c200;
}

.dark-section {
    padding: 60px 20px;
    background-color: rgba(17, 17, 17, 0.9);
    background: transparent;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-card {
    background: #222;
    border: 1px solid gold;
    color: gold;
    padding: 20px;
    flex: 1 1 calc(25% - 40px);
    min-width: 200px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bgAnimation {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 1000px 1000px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
    }

    header {
        flex-direction: column;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        margin: 5px;
    }
}

.index-section {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}