@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600& display=swap");

:root {
    --main-color: #0e112cef;
    --black-color: #0e0e00;
    --border: 0.1rem solid rgba(255, 255, 255, 0.4);
}

*{
    font-family:  "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: 0.2s ease;
}

/*! base html codes*/
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

body{
    background-color:var(--main-color) ;
}

section{
    padding: 3.5rem 7%;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: 2rem 3.75rem;
    border-radius: 30rem;
    font-size: 1.8rem;
    color:#fff;
    background-color: var(--black-color);
    cursor: pointer;
}

.heading{
    font-size: 4rem;
    color: #fff;
    text-transform: uppercase;
}

.heading span{
    text-transform: uppercase;
}

.logo img {
    height: 8rem;
}

/*! header start */
.header.logo img {
    height: 1rem;
}

.header{
    background-color:#ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    margin: 2rem 7%;
    border-radius: 30rem;
    box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.75);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .navbar a {
    margin: 0 1rem;
    font-size: 1.6rem;
    color: var(--black-color);
    border-bottom: 0.5rem solid transparent;
}




/* Header styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f3f1f1;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .logo img {
    height: 70px;
}

.navbar {
    display: flex;
    gap: 15px;
    position: relative;
    align-items: center;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    transition: background-color 0.3s;
    display: inline-block;
    vertical-align: middle;
}

.navbar a:hover, .navbar a.active {
    background-color: #868686;
    border-radius: 5px;
    border-bottom: 2rem;
}

.buttons button {
    background: none;
    border: none;
    color: #0a0a0a;
    cursor: pointer;
    font-size: 18px;
    margin-left: 10px;
}

.menu-toggle {
    display: block;
    color: #333;
    padding: 15px;
    font-size: 20px;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    padding: 10px 0;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
    font-size: 1.4rem;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: var(--main-color);
}

/*! header end */

/*! home start */
.home {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url(../images/home5.png) no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: -13.5rem;
    display: flex;
    align-items: center;
}
.home .content{
    max-width: 60vh;
    color: #fff;
    padding: 20px;
    color: #faf7f7;
}
.home .content h3{
    font-size: 5em;
    margin-bottom: 10px;
    text-align: left;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.home .content p{
    font-size: 2em;
    margin-bottom: 20px;
    text-align: justify;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.home .content a{
    margin-top: 1rem;
    display: inline-block;
    padding: 2rem 3.75rem;
    border-radius: 30rem;
    font-size: 1.8rem;
    color:#fff;
    background-color: var(--black-color);
    cursor: pointer;
}

/* Home section styles */
.home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #f4f4f4;
}

.home .content {
    max-width: 600px;
}

.home .content .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.home .content .btn:hover {
    background-color: #555;
}


/*! home end */

/*! products start */
.products {
    padding: 5rem 7%;
    background: #ffffff;
}

.products .heading {
    text-align: center;
    margin-bottom: 4rem;
    color: #000000;
    font-size: 4rem;
}

.products .row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.products .content-box {
    background: #f5f5f5;
    padding: 2rem;
    width: 300px;
    border: 1px solid #ddd;
}

.products .content-box .icon {
    text-align: center;
    margin-bottom: 1rem;
}

.products .content-box .icon i {
    font-size: 3rem;
    color: #000000;
}

.products .content-box h3 {
    color: #000000;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.products .content-box p {
    color: #333333;
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.products .content-box .btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .products .row {
        flex-direction: column;
        align-items: center;
    }
    
    .products .content-box {
        width: 100%;
        max-width: 300px;
    }
}
/*! products end */

/*! about start */
.about {
    padding: 5rem 7%;
    background: #0e112cef;
    background-size: cover;
    background-position: center;
}

.about .heading {
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    font-size: 4rem;
    text-transform: uppercase;
}

.about .row {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
    justify-content: center;
}

.about .image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.about .image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    align-items: center;
}

.about .content {
    flex: 2;
    min-width: 300px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-box {
    background: #27262670;
    padding: 2.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.about-box:hover {
    transform: translateY(-5px);
}

.about-box .icon {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-box .icon i {
    font-size: 2.5rem;
    color: #fff;
}

.about-box .text {
    flex: 1;
}

.about-box .text h4 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-box .text p {
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: justify;
}

@media (max-width: 768px) {
    .about .row {
        flex-direction: column;
        align-items: center;
    }

    .about .image {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .about .content {
        width: 100%;
    }

    .about-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem;
    }

    .about-box .text p {
        text-align: center;
    }
}
/*! about end */

/*! solutions start */
.solutions {
    padding: 5rem 7%;
    background: #0e112cef;
    background-size: cover;
    background-position: center;
}

.solutions .heading {
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    font-size: 4rem;
    text-transform: uppercase;
}
.solutions .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
}

.solutions .content-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.solutions .content-box:hover {
    transform: translateY(-10px);
}

.solutions .content-box .icon {
    text-align: center;
    margin-bottom: 2rem;
}

.solutions .content-box .icon i {
    font-size: 4rem;
    color: #fff;
    background: var(--main-color);
    padding: 1.5rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.solutions .content-box h3 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.solutions .content-box p {
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}


/*! solutions end */

/* Contact section styles */
.Contact {
    padding: 50px;
    background-color: #f4f4f4;
}
.Contact .heading {
    text-align: center;
    margin-bottom: 40px;
    font-size: 3em;
    color: #0e112cef;
}

.Contact .row {
    display: flex;
    flex-wrap: wrap;
}

.Contact .column {
    flex: 1;
    min-width: 300px; 
    padding: 20px;
}

.Contact iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.Contact form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.Contact form h3 {
    margin-bottom: 20px;
    font-size: 1.5em;
}

.Contact form .inputBox {
    position: relative;
    margin-bottom: 20px;
}

.Contact form .inputBox i {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #333;
}

.Contact form input, .Contact form textarea {
    width: 100%;
    padding: 10px 10px 10px 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.Contact form textarea {
    resize: none;
    height: 100px;
}

.Contact form .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.Contact form .btn:hover {
    background-color: #555;
}

.contact-btn {
    background-color: #007bff;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.contact-btn:hover {
    background-color: #0056b3;  
}

.contact-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.contact-info h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1.2em;
    margin: 5px 0;
}

.contact-info-boxes {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

.contact-info-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 30%;
}

.contact-info-box h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #0e112cef;
}

.contact-info-box p {
    font-size: 1.5em;
    color: #555;
}
/*! contact end */

/* Responsive styles */
@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    .header {
        padding: 1.5rem 2rem;
    }

    section {
        padding: 2rem;
    }

    .products .row,
    .solutions .row {
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: var(--border);
        padding: 1rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        display: none;
    }

    .header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        display: block;
    }

    .header .navbar a {
        display: block;
        margin: 1rem;
        padding: 1rem;
        font-size: 1.6rem;
        background: #eee;
        border-radius: 0.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .products .content-box,
    .solutions .content-box {
        padding: 2rem;
    }

    .products .content-box p,
    .solutions .content-box p {
        font-size: 1.4rem;
    }

    .contact-info-boxes {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info-box {
        width: 100%;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    .heading {
        font-size: 3rem;
    }

    .products .content-box,
    .solutions .content-box {
        padding: 1.5rem;
    }

    .products .content-box h3,
    .solutions .content-box h3 {
        font-size: 2rem;
    }

    .products .content-box p,
    .solutions .content-box p {
        font-size: 1.3rem;
    }

    .btn {
        padding: 1.5rem 2.5rem;
        font-size: 1.4rem;
    }
}




    /* BLOG */
.blog-content {
    padding: 50px;
    background-color: #f4f4f4;
}

.blog-content h1 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 40px;
}

.blog-content article {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.blog-content article h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.blog-content article p {
    font-size: 1.2em;
    line-height: 1.6;
}

    /* KARİYER */
.kariyer-content {
    padding: 50px;
    background-color: #f4f4f4;
}

.kariyer-content h1 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 40px;
}

.kariyer-content article {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.kariyer-content article p {
    font-size: 1.7em;
    line-height: 2;
    text-align: center;
}

    /* KALİTE */
.kalite-content {
    padding: 50px;
    background-color: #f4f4f4;
}

.kalite-content h1 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 40px;
}

.kalite-content article {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.kalite-content article p {
    font-size: 1.7em;
    line-height: 3;
    text-align: left;
    margin-left: 2em;
    position: relative;
    padding-left: 1em; 
}

.kalite-content article p::before {
    content: "•"; /* Madde işareti ekler */
    position: absolute;
    left: -0.8em; /* Noktanın konumunu ayarlar */
    color: black; /* Nokta rengi */
    font-size: 1.2em; /* Nokta boyutu */
}


/*! footer start */
.footer {
    background-color: #0e112cef; 
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-content h3 {
    font-size: 2em;
    margin-bottom: 10px;
}

.footer-content p {
    font-size: 1.2em;
    margin: 5px 0;
}
/*! footer end */




