*{
    box-sizing: border-box; 
    font-family: "Oswald", sans-serif; 
}

body{  
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(images/pngtree-business-atmosphere-geometric-lines-tech-black-gold-background-image_210947.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color:white;
    margin: 0;
    padding: 0;
}

.header{
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    height: 100px;
    justify-content: space-between;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    flex-basis: 300px;
    border-bottom: 2px solid #D4AF37;

}
@media (max-width:768px){
    .header{
        flex-direction: column;
        padding:  10px 0;
        height: auto;
    }

    .navbar{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;  
    }
    .navbar a{
        margin: 10px 0;
    }
}

.logo{
    text-decoration: none;
    font-weight:900;
    font-size: 25px;
    color:#F5F5F5;;
    margin-left: 25px;
    font-style: italic; 
    text-shadow: #0A0A0A;   
}

.navbar a{
    margin-right: 40px;
    text-decoration: none;
    font-size: 19px;
    font-weight: bolder;
    color:#D4AF37;
    border-radius: 30px;
    padding: 5px 10px;
    border:none;
    font-style: italic;
}

.navbar a:hover i{
   color: black;
   transition: 0.4s ease;
}

.navbar a.active i{
    color: white;
}

.navbar a.active a:hover{
    color:black
}
.navbar a:hover{
    color: #000000;
    background-color: #D4AF37;
    transition: 0.4s;
}

h1{
    color:white;
}
.home{
    display: flex;
    align-items: center;
    height: 100vh;
    padding: 0 10%;
}

@media (max-width:768px){
    .home{
        flex-direction: column;
        justify-content: center;
        padding:20px;
        height: auto;
    }
    .content h1{
        font-size: 25px;
        margin-top: 70%;
    }
    .content h3{
        font-size: 20px;
        margin-top: 20%;
    }
    img{
        width: 80%;
        height: auto;
        margin: 20px 0;
    }
    .content .home-buttons{
        flex-direction: column;
        width: 100%;
    }
    .home-buttons a{
        margin: 10px 0;
        width: 80%;
    }
    .content .socials-media{
       position: static;
       margin-top: 50px auto 0;
       justify-content: center;
       top: 60px;
       
    }
}
.rotating {
    position: relative;
}

.rotating img{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60%;
    width: 75%;
    margin-left: 25vh;
    border-radius: 25%;
    margin-top: 80px;
    display: flex;
}

.navbar i{
    font-size: 20px;
    color: #D4AF37;
    margin-right: 10px;
    margin-left: 1px;
    text-decoration: none;
}

.rotating::after {
    content: '';
    position: absolute;
    top: 80px;
    left: 25vh;
    width: 75%;
    height: 83%;
    border: 2px solid #D4AF37;
    border-radius: 25%;
    clip-path: inset(0 0 95% 0);
    animation: borderRotate 3s linear infinite;
    box-shadow: 
        0 0 5px #D4AF37,
        0 0 5px #D4AF37,
        0 0 10px #D4AF37;
    filter: brightness(1);
    pointer-events: none;
    transition: all 0.3s;
}

@keyframes borderRotate {
    0% {
        clip-path: inset(0 0 95% 0);
    }
    25% {
        clip-path: inset(0 0 0 95%);
    }
    50% {
        clip-path: inset(95% 0 0 0);
    }
    75% {
        clip-path: inset(0 95% 0 0);
    }
    100% {
        clip-path: inset(0 0 95% 0);
    }
}
.footer-logo img{
    height: 60%;
    width: 40%;
    margin-left: 23vh;
    border-radius: 50%;
    margin-top: 10px;
}

.content{
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
}

.content h1{
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 16px;
    margin-left: 30px;
}

@keyframes neonGlow {
    0%, 100% {
      text-shadow:
        0 0 5px #000000,
        0 0 10px #D4AF37,
        0 0 20px #D4AF37,
        0 0 30px #D4AF37,
        0 0 40px #D4AF37;
    }
    50% {
      text-shadow:
        0 0 10px #464343,
        0 0 20px #D4AF37,
        0 0 30px #D4AF37,
        0 0 40px #D4AF37,
        0 0 50px #D4AF37;
    }
  }
.content h3{
    font-size: 40px;
    margin-bottom: 15px;
    margin-left: 30px;
    animation: neonGlow 2s infinite alternate;
}

.content p{
    font-size: 19px;
    margin-bottom: 15px;
    font-weight: 500;
    border:none;
    border-radius: 10px;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(50px);
    box-shadow: 7px 5px #D4AF37;
    position: relative;
    border: 1px solid #D4AF37;
}

.home-buttons a{
    position: relative;
    display: inline-flex;
    font-size: 23px;
    font-weight: bolder;
    text-decoration: none;
    align-items: center;
    border:none;
    border-radius: 20px;
    justify-content: center;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #D4AF37;
    width: 200px;
    height: 80%;
    bottom: 2vh;
    border: 2px solid #D4AF37;
}
.home-buttons a:hover{
    background: #D4AF37;
    color: #000000;
    transform: scale(1.05);
    transition: .3s;
}
.content .home-buttons{
    justify-content: space-between;
    display: flex;
    width: 490px;
    height: 50px;
}

.home .socials-media {
    margin-top: 90px; /* NE KADAR BOŞLUK İSTERSEN AYARLAYABİLİRSİN */
    display: flex;
    justify-content: center;
    gap: 15px;
}

.socials-media{
   position: absolute;
   bottom:40px;
   width: 150px;
   display: flex;
   justify-content: space-between;
   margin-left: 25px;
   margin-top: 100px; 
   gap: 15px;
}
.socials-media a{
    justify-content: center;
    align-items: center;
    display: inline-flex;
    font-size: 20px;
    border: 2px solid #D4AF37;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color:#D4AF37;
    background: transparent;
    text-decoration: none;
    left: 20px;
}

.socials-media a:hover{
    background: #D4AF37;
    color: #000000;
    transition: 0.3s;
}
footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #D4AF37;
    padding: 30px 20px;
    text-align: center;
    box-sizing: border-box;
    display: block;
    border-top: 2px solid #D4AF37;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 90px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
    background-color: aliceblue;
    margin-right: 23vh;
    margin-bottom: -25px;
}

.mail {
    color: #D4AF37;
    font-size: 18px;
    display: block;
    margin: 10px auto;
    text-decoration: none;
}

.mail:hover {
    color: #ffffff;
    transition: 0.45s;
    text-decoration: underline;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

.socials a {
    color: #D4AF37;
    text-decoration: none;
    font-size: 20px;
}

.socials a:hover {
    color: #ffffff;
    transition: 0.45s;
}

footer span {
    display: block;
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}

@media (max-width: 768px) {
    .footer-content {
        padding: 0 20px;
    }
    
    .footer-logo img {
        width: 60px;
        margin-left: 20vh;
    }
    
    .mail {
        font-size: 16px;
    }
    
    .socials {
        gap: 20px;
    }
    
    .socials a {
        font-size: 18px;
    }
    
    footer span {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 20px 10px;
    }
    
    .footer-logo img {
        width: 50px;
        margin-left: 20vh;
    }
    
    .mail {
        font-size: 14px;
    }
    
    .socials {
        gap: 15px;
    }
    
    .socials a {
        font-size: 16px;
    }
    
    footer span {
        font-size: 11px;
    }
}

@media (max-width: 1200px) {
    .content h1 {
        font-size: 45px;
    }
    .content h3 {
        font-size: 35px;
    }
    .content p {
        font-size: 17px;
    }
    .home-buttons a {
        width: 180px;
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .home {
        padding: 0 5%;
    }
    .content h1 {
        font-size: 40px;
    }
    .content h3 {
        font-size: 30px;
    }
    .rotating img {
        width: 75%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 10px 0;
        height: auto;
    }

    .navbar {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 10px;
    }

    .navbar a {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }

    .logo {
        margin: 10px 0;
        text-align: center;
    }

    .home {
        flex-direction: column;
        justify-content: center;
        padding: 20px;
        height: auto;
        margin-top: 100px;
    }

    .content {
        text-align: center;
        margin: 0 auto;
    }

    .content h1 {
        font-size: 35px;
        margin-left: 0;
    }

    .content h3 {
        font-size: 25px;
        margin-left: 0;
    }

    .content p {
        font-size: 16px;
        padding: 20px 15px;
    }

    .rotating {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .rotating img {
        width: 55vw;
        max-width: 320px;
        height: auto;
        margin: 30px auto 0 auto;
        display: block;
        margin-left: 26%;
        margin-top: 20px;
        
    }
    .rotating::after {
        top: 50%;
        left: 50%;
        width: 80vw;
        max-width: 320px;
        height: 83%;
        transform: translate(-50%, -50%);
        margin: 0;
        border-radius: 25%;
        transform-origin: center center;
        pointer-events: none;
    }

    .content .home-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .home-buttons a {
        margin: 10px 0;
        width: 80%;
        max-width: 250px;
    }

    .socials-media {
        position: static;
        margin: 30px auto 0;
        justify-content: center;
        width: 100%;
    }
    .footer{
        align-items: center;
        padding: 10px 0;
    }
}

@media (max-width: 576px) {
    .content h1 {
        font-size: 30px;
    }

    .content h3 {
        font-size: 22px;
    }

    .content p {
        font-size: 15px;
        padding: 15px 10px;
    }

    .rotating img {
        width:40vw;
        max-width: 220px;
        margin: 20px auto 0 auto;
        display: block;
        margin-left: 28%;
        margin-top: 10px;
    }
    .rotating::after {
        top: 50%;
        left: 50%;
        width: 90vw;
        max-width: 220px;
        height: 83%;
        transform: translate(-50%, -50%);
        margin: 0;
        border-radius: 25%;
        transform-origin: center center;
        pointer-events: none;
    }

    img {
        width: 80%;
    }

    .home-buttons a {
        width: 90%;
        font-size: 18px;
    }

    .socials-media a {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
  
}

@media (max-width: 400px) {
    .content h1 {
        font-size: 26px;
    }

    .content h3 {
        font-size: 20px;
    }

    .navbar a {
        font-size: 16px;
    }

    .home-buttons a {
        font-size: 16px;
    }
}

  
