body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #3b4371, #3b4371);
    color: #333;
    overflow-x: hidden;
}
li{
  line-height:  150%;
}
/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}
a{
    text-decoration: none;
}
span.slogo {
    font-size: 18px;
    color: #ffb220;
    text-decoration: none;
    font-weight: 700;
}

.header.scrolled {
    transform: rotateX(10deg);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    width: 150px;
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.navig {
    position: relative;
}

.navig #navig-toggle {
    display: none;
}

.navig .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    perspective: 1000px;
}

.navig .burger span {
    width: 30px;
    height: 3px;
    background: #fff;
    transition: transform 0.3s ease;
}

.navig #navig-toggle:checked ~ .burger span:nth-child(1) {
    transform: rotateY(45deg);
}

.navig #navig-toggle:checked ~ .burger span:nth-child(2) {
    opacity: 0;
}

.navig #navig-toggle:checked ~ .burger span:nth-child(3) {
    transform: rotateY(-45deg);
}

@media (max-width: 768px) {
    .navig .burger {
        display: flex;
    }
}

.navig .navig-items {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 20px;
    top: 70px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transform: rotateX(-90deg);
    transform-origin: top;
    transition: transform 0.5s ease;
}

.navig .navig-items.active {
    transform: rotateX(0);
}

.navig .navig-items li {
    margin: 10px 0;
}

.navig .navig-items a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navig .navig-items a:hover {
    background: #f3904f;
    color: #fff;
    transform: scale(1.1);
}

@media (min-width: 769px) {
    .navig .navig-items {
        display: flex;
        flex-direction: row;
        position: static;
        transform: none;
        background: none;
        backdrop-filter: none;
    }

    .navig .navig-items li {
        margin-left: 20px;
    }
}

/* heromen Section */
.heromen {
    position: relative;
    height: 100vh;
   min-height: 100%;
    margin-top: 80px;
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(59, 67, 113, 0.5), rgba(243, 144, 79, 0.5));
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
}

.slide-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 72px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 32px;
    }
    .slide-content p {
        font-size: 18px;
    }
}

@media (max-width: 320px) {
    .slide-content h1 {
        font-size: 32px;
    }
    .slide-content p {
        font-size: 14px;
    }
}

.btn {
    padding: 15px 30px;
    border: none;
    display: block;
    margin: 0 auto;
    width: fit-content;
    border-radius: 0px;
    cursor: pointer;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow {
    background: #db6516;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(243, 144, 79, 0.7);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-glow:hover::before {
    width: 300px;
    height: 300px;
}

.btn-glow:hover {
    background: #fff;
    color: #3b4371;
    box-shadow: 0 0 25px rgba(243, 144, 79, 1);
}

.slider-navig {
    position: absolute;
    bottom: 20px;
    display: none;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-navig button {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: #fff;
    list-style: none;
    display: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.slider-navig button:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* abouti Section */
.abouti {
    padding: 100px 15px;
    position: relative;
}
.abouti__wrapper {
    display: flex;
    gap: 20px;
}
.abouti__wrapper img{
    width: 100%;
    border-radius: 10px;
    max-width: 500px;
}
.abouti-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.abouti-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.abouti-block:nth-child(even) {
    flex-direction: row-reverse;
}

.abouti-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.abouti-text {
    max-width: 500px;
}

.abouti-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #f3904f;
    margin-bottom: 10px;
}

.abouti-text h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.abouti-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #ddd;
}

/* servicces Section */
.servicces {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.05);
}

.servicces h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #f3904f;
    text-align: center;
    margin-bottom: 40px;
}

.cards-servicces {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-servicces {
    background: rgba(255, 255, 255, 0.1);
  
    /* overflow: hidden; */
    min-height: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    perspective: 1000px;
}

.card-servicces .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-servicces:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.card-back {
    background: #f3904f;
    color: #fff;
    transform: rotateY(180deg);
}

.card-servicces img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-servicces h4 {
    font-size: 24px;
    color: #f3904f;
    margin: 20px;
}

.card-servicces p {
    font-size: 16px;
    margin: 0 20px 20px;
    line-height: 1.6;
    color: #ddd;
}

.servicces-slider {
    margin-top: 40px;
    overflow-x: auto;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
 
}

.slider-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    width: 29%;
    text-align: center;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.slider-item  span{
    font-size: 20px;
    font-weight: 700;
}
.slider-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.slider-item h4 {
    font-size: 20px;
    color: #f3904f;
    margin: 15px 0;
}

.slider-item p {
    font-size: 14px;
    color: #ddd;
}

/* processis Section */
.processis {
    padding: 80px 20px;
    text-align: center;
}

.processis h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #f3904f;
    margin-bottom: 40px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(0, 10px);
    width: 2px;
    height: 92%;
    background: #f3904f;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.timeline-content h4 {
    font-size: 20px;
    color: #f3904f;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: #ddd;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: #f3904f;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Team Section */
.team {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.05);
}

.team h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #f3904f;
    text-align: center;
    margin-bottom: 40px;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(750px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex
;
    gap: 30px;
    padding: 20px;
    align-items: center;
}
.team-member span{
    font-size: 20px;
    font-weight: 700;
}
.team-men img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 20px;
    color: #f3904f;
    margin: 15px 0;
}

.team-member p {
    font-size: 14px;
    color: #ddd;
}

/* faqis Section */
.faqis {
    padding: 80px 20px;
}

.faqis h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #f3904f;
    text-align: center;
    margin-bottom: 40px;
}
.faqis-wrapper{
display: flex;
gap: 20px;
}
.faqis-wrapper img{
    max-width: 420px ;
    width: 100%;
}
.faqis-items {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.faqis-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 10px;
}

.faqis-question {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faqis-question h4 {
    font-size: 18px;
    color: #f3904f;
}

.faqis-answer {
    display: none;
    padding: 15px;
    color: #ddd;
    font-size: 14px;
}

.faqis-answer.active {
    display: block;
}

/* Gallery Section */
.gallery {
    padding: 80px 0px;
    background: rgba(255, 255, 255, 0.05);
}

.gallery h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #f3904f;
    text-align: center;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0px;

}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0px;
}

/* iblog Section */
.iblog {
    padding: 80px 20px;
}

.iblog h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #f3904f;
    text-align: center;
    margin-bottom: 40px;
}

.iblog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.iblog-post {
  
    border-radius: 15px;

}
.iblog-post h3,.iblog-post span{
    color: #fff;
}
.iblog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0px;
}

.iblog-post h4 {
    font-size: 20px;
    color: #f3904f;
    margin: 15px 0;
}

.iblog-post p {
    font-size: 14px;
    color: #ddd;
}

/* icontacct Section */
.icontacct {
    padding: 80px 20px;
    text-align: center;
}

.icontacct-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.icontacct h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #eb6b17;
    margin-bottom: 20px;
}

.icontacct p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 30px;
}

.map-placeholder {
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ad622b;
    border-radius: 0px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  
}

.icontacct-page {
    padding: 100px 20px;
    display: flex
;
flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}
.icontacct-page h1 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    width: 100%;
    color: #f3904f;
    margin-bottom: 20px;
}

.icontacct-page p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 30px;
}

.icontacct-page form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.icontacct-page form input,
.icontacct-page form textarea {
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8);
}

.icontacct-page form textarea {
    resize: none;
    height: 150px;
}

/* Footer */
.footer {
    background: linear-gradient(45deg, #3b4371, #f3904f);
    padding: 50px 20px;
    color: #fff;
}

.oter-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.oter-logo img {
    width: auto;
    height: 50px;
}

.oter-info p {
    margin: 5px 0;
    font-size: 14px;
}

.social a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 18px;
}

.social a:hover {
    color: #f3904f;
}

.oter-links h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.oter-links ul {
    list-style: none;
    padding: 0;
}

.oter-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.oter-links ul li a:hover {
    color: #f3904f;
}

.oter-newsletter h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.oter-newsletter input {
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    width: 200px;
}

.oter-newsletter .btn {
    margin-top: 10px;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}
.abouti h3{
    font-size: 32px;
    color: #fff;
}
.abouti li,
.abouti p{
    color: #fff;
}
.icontacct-page span {
    padding: 10px 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}
html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.tati p, .tati h2,.tati h3, .tati h4{
    text-align: start;
    margin-bottom: 20px;
}
@media screen and (max-width:768px) {
    .abouti__wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .abouti-block {
        display: flex
    ;
        align-items: center;
        gap: 10px;
        margin-bottom: 60px;
        position: relative;
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.5s ease, transform 0.5s ease;
        flex-direction: column;
    }
    .faqis-wrapper {
        display: flex
    ;
        gap: 20px;
        flex-direction: column;
    }
    .team-member {
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        display: flex
    ;
        gap: 30px;
        padding: 20px;
        /* margin: 0 auto; */
        width: 320px;
        align-items: center;
        flex-direction: column;
    }
    .abouti-block:nth-child(even) {
        flex-direction: column;
    }
    .card-front, .card-back {
        position: absolute;
        width: 94%;
        height: 100%;
        backface-visibility: hidden;
        display: flex
    ;
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }
    .slide-content {
        position: absolute;
        top: 50%;
        width: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        z-index: 1;
    }
    .heromen {
        position: relative;
        height: 100vh;
        min-height: 100%;
        margin-top: 57px;
    }
    .timeline-content {
        width: 100%;
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }
    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0%;
        transform: translate(0, 10px);
        width: 2px;
        height: 97%;
        background: #f3904f;
    }
    .timeline-icon {
        width: 40px;
        height: 40px;
        background: #f3904f;
        border-radius: 50%;
        position: absolute;
        left: 0;
        transform: translateX(-50%);
    }
    .slider-item {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        width: 86%;
        margin: 0 auto;
        text-align: center;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}
.ckie-ban-3 {
    position: fixed;
    /* top: 50%; */
    left: 50%;
    /* transform: translate(-50%, -50%); */
    background: #222;
    color: #fff;
    padding: 25px;
    bottom: 10px;
    border-radius: 8px;
    text-align: center;
    display: none;
    z-index: 9999;
}