﻿* /*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100%;
    overflow-x: hidden;
    background-color: #111827;
    scroll-behavior: smooth;
}


header {
    background: url('img/kkk.png') no-repeat center center/ cover   ;
    height: 100vh;
    position: relative;
    color: #000;
    
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;*/
/*background-color: rgba(30, 39, 46, 0.95);*/
/*background-color: rgba(11, 38, 55, 0.95);
    position: fixed;
    width: 100%;
    z-index: 999;
}

.logo {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.95);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f7941d;
}

.hero {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding-left: 60px;
}

.hero-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    max-width: 500px;
    border-left: 5px solid #f7941d;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.line {
    width: 60px;
    height: 4px;
    background-color: #f4d9c3;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: #333;
}*/
/* Animation */
/*.animate-slide {
    animation: slideIn 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-container {
    padding: 100px 40px;
    font-size: 18px;
    line-height: 1.6;
}*/
/* Global Styles */
/*------------------------------------------------------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100%;
    overflow-x: hidden;
    background-color: #111827;
    scroll-behavior: smooth;
}

/* Header Section */
header {
    background: url('img/kkk.png') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    color: #fff;
    overflow: hidden;
}

    /* Dark overlay for better readability */
    header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(30, 39, 46, 0.8) 0%, rgba(44, 62, 80, 0.7) 50%, rgba(26, 37, 47, 0.8) 100%);
        z-index: 1;
    }

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: linear-gradient(135deg, rgba(11, 38, 55, 0.95) 0%, rgba(30, 39, 46, 0.95) 100%);
    position: fixed;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(247, 148, 29, 0.3);
    transition: all 0.3s ease;
}

    .navbar:hover {
        background: linear-gradient(135deg, rgba(11, 38, 55, 0.98) 0%, rgba(30, 39, 46, 0.98) 100%);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

.logo {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 1px;
    color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

    .logo::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #f7941d, #f4d9c3);
        transition: width 0.3s ease;
    }

    .logo:hover::after {
        width: 100%;
    }

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

    .nav-links li {
        position: relative;
    }

    .nav-links a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 500;
        transition: all 0.3s ease;
        padding: 10px 15px;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
    }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(247, 148, 29, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .nav-links a:hover::before {
            left: 100%;
        }

        .nav-links a:hover {
            color: #f7941d;
            background: rgba(247, 148, 29, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(247, 148, 29, 0.3);
        }



/* Hero Section */
.hero {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding-left: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    max-width: 600px;
    border-left: 5px solid #f7941d;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .hero-text::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(247, 148, 29, 0.05), transparent);
        transform: rotate(45deg);
        transition: all 0.6s ease;
        opacity: 0;
    }

    .hero-text:hover::before {
        animation: shimmer 2s ease-in-out;
        opacity: 1;
    }

    .hero-text:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(247, 148, 29, 0.3);
        border-color: rgba(247, 148, 29, 0.6);
    }

    .hero-text h1 {
        font-size: 48px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 20px;
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        position: relative;
    }

.line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f7941d, #f4d9c3);
    margin-bottom: 20px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

    .line::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        animation: shimmer 2s ease-in-out infinite;
    }

.hero-text p {
    font-size: 18px;
    color: #e8e8e8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Floating Elements for Background Animation */
.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23f7941d" opacity="0.4"><animate attributeName="cy" values="20;80;20" dur="4s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1.5" fill="%23f4d9c3" opacity="0.6"><animate attributeName="cy" values="40;10;40" dur="3s" repeatCount="indefinite"/></circle><circle cx="60" cy="70" r="2.5" fill="%23f7941d" opacity="0.3"><animate attributeName="cy" values="70;30;70" dur="5s" repeatCount="indefinite"/></circle></svg>') repeat;
    opacity: 0.6;
    animation: float 10s ease-in-out infinite;
}

/* Animations */
.animate-slide {
    animation: slideIn 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-20px);
        opacity: 0.8;
    }
}

/* Page Container */
.page-container {
    padding: 100px 40px;
    font-size: 18px;
    line-height: 1.6;
    background: linear-gradient(135deg, #1e272e 0%, #2c3e50 50%, #1a252f 100%);
    color: #fff;
}

/* Responsive Design */
@media (max-width: 968px) {
    .navbar {
        padding: 15px 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero {
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero-text {
        max-width: 100%;
        padding: 40px 30px;
    }

        .hero-text h1 {
            font-size: 36px;
        }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 20px;
        justify-content: center;
    }

    .hero-text {
        padding: 30px 20px;
        text-align: center;
    }

        .hero-text h1 {
            font-size: 32px;
        }

        .hero-text p {
            font-size: 16px;
        }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }

    .nav-links a {
        padding: 8px 12px;
        font-size: 14px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .line {
        width: 60px;
        height: 3px;
    }
}
/*--------------------------------------------------------------------------------------------------*/


/*.about-section {*/
/*background-color: #1e272e;*/
/*background-color: rgba(43, 61, 78, 0.95) ;
    color: white;
    padding: 6rem 2rem;
    overflow: hidden;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height:90vh;
}

.about-image img {
    max-width: 450px;
    width: 100%;
    height: 350px;
    border-radius: 4px;
    transition: transform 0.5s ease;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

    .about-image img:hover {
        transform: scale(1.05);
    }

.about-text {
    max-width: 450px;
    animation: fadeSlideIn 1.2s ease forwards;
    opacity: 0;
    
}

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .about-text p {
        font-size: 1rem;
        color: #f1f1f1;
        text-align: justify;
        text-justify: inter-word;
    }

    .about-text .line {
        height: 4px;
        width: 60px;
        background: #f4c29f;
        margin: 1rem 0;
    }*/

/* Animations */
/*@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-image img {
        max-width: 90%;
        height: auto;
    }

    .about-text {
        max-width: 90%;
    }

        .about-text h2 {
            font-size: 1.5rem;
        }

        .about-text p {
            font-size: 0.9rem;
        }
}*/

/* About Section */
.about-section {
    padding: 120px 20px 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e272e 0%, #2c3e50 50%, #1a252f 100%);
    position: relative;
}

    .about-section h2 {
        text-align: center;
        font-size: 3rem;
        margin-bottom: 60px;
        color: #fff;
        position: relative;
        opacity: 0;
        animation: fadeInDown 1s ease forwards;
    }

        .about-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #f7941d, #f4d9c3);
            border-radius: 2px;
        }

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

/* About Image */
.about-image {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease forwards 0.5s;
    position: relative;
}

    .about-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 20px;
        border: 3px solid rgba(247, 148, 29, 0.3);
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .about-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent, rgba(247, 148, 29, 0.1), transparent);
        border-radius: 20px;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .about-image:hover::before {
        opacity: 1;
    }

    .about-image:hover img {
        transform: scale(1.02);
        border-color: rgba(247, 148, 29, 0.6);
        box-shadow: 0 15px 40px rgba(247, 148, 29, 0.3);
    }

/* About Text */
.about-text {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease forwards 0.7s;
}

    .about-text h2 {
        font-size: 2.0rem;
        margin-bottom: 20px;
        color: #f7941d;
        text-align: left;
        animation: none;
        opacity: 1;
        transform: none;
    }

        .about-text h2::after {
            display: none;
        }

.line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f7941d, #f4d9c3);
    border-radius: 2px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

    .line::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        animation: shimmer 2s ease-in-out infinite;
    }

.about-text p {
    color: #e8e8e8;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .about-text p::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(247, 148, 29, 0.05), transparent);
        transform: rotate(45deg);
        transition: all 0.6s ease;
        opacity: 0;
    }

    .about-text p:hover::before {
        animation: shimmer 2s ease-in-out;
        opacity: 1;
    }

    .about-text p:hover {
        transform: translateY(-5px);
        border-color: rgba(247, 148, 29, 0.3);
        box-shadow: 0 10px 30px rgba(247, 148, 29, 0.2);
    }




/* Floating Animation for Background Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(247, 148, 29, 0.4);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

    .floating-element:nth-child(1) {
        top: 15%;
        left: 15%;
        animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
        top: 70%;
        left: 25%;
        animation-delay: 2s;
    }

    .floating-element:nth-child(3) {
        top: 30%;
        left: 75%;
        animation-delay: 4s;
    }

    .floating-element:nth-child(4) {
        top: 85%;
        left: 80%;
        animation-delay: 6s;
    }

    .floating-element:nth-child(5) {
        top: 45%;
        left: 10%;
        animation-delay: 1s;
    }

    .floating-element:nth-child(6) {
        top: 60%;
        left: 60%;
        animation-delay: 3s;
    }

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image, .about-text {
        animation: fadeInUp 1s ease forwards;
        transform: translateY(30px);
    }

        .about-text h2 {
            text-align: center;
        }

    .line {
        margin: 20px auto 30px;
    }
}

@media (max-width: 768px) {
    .about-section h2 {
        font-size: 2.0rem;
        margin-bottom: 40px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-image img {
        height: 300px;
    }

    .about-text p {
        padding: 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-section h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-image img {
        height: 250px;
    }

    .about-text p {
        padding: 15px;
        font-size: 0.9rem;
    }
}





/* ????? ??? ?????? ??????? */
/*.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

    .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
    }*/

/*.services-section {
    background-color: #1e272e;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

    .services-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        font-weight: bold;
    }

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #2f3640;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

    .service-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        border-radius: 6px;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .service-card p {
        font-size: 1rem;
        color: #f1f1f1;
        text-align: justify;
        text-justify: inter-word;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }*/

/* Animation */
/*@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: #2f3640;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 70%;
    max-width: 800px;
    color: #fff;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    cursor: pointer;
}

    .close:hover {
        color: white;
    }*/

/* Services Section */
.services-section {
    padding: 120px 20px 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e272e 0%, #2c3e50 50%, #1a252f 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .services-section h2 {
        font-size: 3rem;
        margin-bottom: 60px;
        color: #fff;
        position: relative;
        opacity: 0;
        animation: fadeInDown 1s ease forwards;
        font-weight: bold;
    }

        .services-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #f7941d, #f4d9c3);
            border-radius: 2px;
        }

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(247, 148, 29, 0.05), transparent);
        transform: rotate(45deg);
        transition: all 0.6s ease;
        opacity: 0;
    }

    .service-card:hover::before {
        animation: shimmer 2s ease-in-out;
        opacity: 1;
    }

    .service-card:nth-child(1) {
        animation-delay: 0.2s;
    }

    .service-card:nth-child(2) {
        animation-delay: 0.4s;
    }

    .service-card:nth-child(3) {
        animation-delay: 0.6s;
    }

    .service-card:nth-child(4) {
        animation-delay: 0.8s;
    }

    .service-card:nth-child(5) {
        animation-delay: 1s;
    }

    .service-card:nth-child(6) {
        animation-delay: 1.2s;
    }

    .service-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 20px;
        transition: all 0.3s ease;
        border: 2px solid rgba(247, 148, 29, 0.3);
    }

    .service-card:hover img {
        transform: scale(1.05);
        border-color: rgba(247, 148, 29, 0.6);
        box-shadow: 0 10px 30px rgba(247, 148, 29, 0.3);
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #f7941d;
        position: relative;
        transition: all 0.3s ease;
    }

        .service-card h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #f7941d, #f4d9c3);
            transition: width 0.3s ease;
        }

    .service-card:hover h3::after {
        width: 100%;
    }

    .service-card p {
        font-size: 1rem;
        color: #e8e8e8;
        text-align: justify;
        text-justify: inter-word;
        line-height: 1.6;
        transition: color 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-15px);
        border-color: rgba(247, 148, 29, 0.5);
        box-shadow: 0 20px 40px rgba(247, 148, 29, 0.2);
    }

        .service-card:hover p {
            color: #fff;
        }

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #2f3640 0%, #3c4a59 50%, #2f3640 100%);
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    width: 80%;
    max-width: 800px;
    color: #fff;
    position: relative;
    border: 1px solid rgba(247, 148, 29, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease forwards;
    transform: translateY(-50px);
    opacity: 0;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

    .close:hover {
        color: #f7941d;
        background: rgba(247, 148, 29, 0.2);
        transform: rotate(90deg);
    }

/* Floating Animation for Background Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(247, 148, 29, 0.4);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

    .floating-element:nth-child(1) {
        top: 15%;
        left: 15%;
        animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
        top: 70%;
        left: 25%;
        animation-delay: 2s;
    }

    .floating-element:nth-child(3) {
        top: 30%;
        left: 75%;
        animation-delay: 4s;
    }

    .floating-element:nth-child(4) {
        top: 85%;
        left: 80%;
        animation-delay: 6s;
    }

    .floating-element:nth-child(5) {
        top: 45%;
        left: 10%;
        animation-delay: 1s;
    }

    .floating-element:nth-child(6) {
        top: 60%;
        left: 60%;
        animation-delay: 3s;
    }

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
}

@keyframes modalSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .service-card {
        padding: 25px;
    }

    .modal-content {
        width: 90%;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .services-section h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 20px;
    }

        .service-card img {
            height: 220px;
        }

        .service-card h3 {
            font-size: 1.3rem;
        }

        .service-card p {
            font-size: 0.9rem;
        }
}

@media (max-width: 480px) {
    .services-section h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 15px;
    }

        .service-card img {
            height: 180px;
        }

        .service-card h3 {
            font-size: 1.2rem;
        }

    .modal-content {
        width: 95%;
        padding: 20px 15px;
    }
}



/* ???? ?????? */
.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-glass:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    }



/* ????? ????? ?????? */
.add-service-form {
    background: #2f3640;
    padding: 1rem;
    border-radius: 8px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    margin-top: 1rem;
}

    .add-service-form input[type="text"],
    .add-service-form textarea,
    .add-service-form input[type="file"] {
        width: 100%;
        padding: 0.5rem;
        margin-bottom: 0.75rem;
        border: none;
        border-radius: 4px;
        font-size: 1rem;
    }

    .add-service-form textarea {
        resize: vertical;
        min-height: 80px;
    }

    .add-service-form button {
        background-color: #00a8ff;
        color: #fff;
        padding: 0.5rem 1rem;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .add-service-form button:hover {
            background-color: #0097e6;
        }




/* company-works Section */
.company-works {
    padding: 50px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

    .company-works h2 {
        font-size: 2.5em;
        margin-bottom: 40px;
        color: #333;
    }

.works-grid {
    display: grid;
    grid-template-columns: 1fr; /* ?? ?? ????? 100% ??? work-item */
    gap: 25px;
}


.work-item {
    /*background: #fff;*/
    background-color: #2f3640;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .work-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .work-item img {
        width: 100%;
        display: block;
    }



.work-info {
    padding: 15px;
}

    .work-info h3 {
        margin: 10px 0;
        color: #f7941d;
        font-size: 1.3em;
    }

    .work-info p {
        color: #666;
        font-size: 0.95em;
    }


.work-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; /* ?? ??? ????? ??? */
}

    .work-images img {
        max-width: 200px; /* ?? ????? ??????? ?? */
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

        .work-images img:hover {
            transform: scale(1.05);
        }





/* Contact Section */
.contact-section {
    padding: 120px 20px 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e272e 0%, #2c3e50 50%, #1a252f 100%);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #fff;
    position: relative;
    opacity: 0;
    animation: fadeInDown 1s ease forwards;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #f7941d, #f4d9c3);
        border-radius: 2px;
    }

.contact-container {
    display: grid;
    grid-template-columns: 1.25fr 1.25fr; /* ?????? ???? 1.5 ??? ?? ?????? */
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px; /* ???? ?? ????? */
    align-items: stretch; /* ????? ????? ?????? ??????? */
}


/* Contact Info */
.contact-info {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease forwards 0.5s;
}

    .contact-info h3 {
        font-size: 2rem;
        margin-bottom: 30px;
        color: #f7941d;
    }

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .info-item:hover {
        transform: translateX(10px);
        border-color: rgba(247, 148, 29, 0.5);
        box-shadow: 0 10px 30px rgba(247, 148, 29, 0.2);
    }

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f7941d, #f4d9c3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    font-size: 20px;
    color: white;
    transition: transform 0.3s ease;
    /*padding-right:10px;*/
}

.info-item:hover .info-icon {
    transform: rotate(360deg) scale(1.1);
}

.info-details h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
    /*padding-left: 25px;*/
}

.info-details p {
    color: #e8e8e8;
    font-size: 1rem;
    /*padding-left:50px;*/
}

/* Contact Form */
.contact-form {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease forwards 0.7s;
}

.form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 56px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

    .form-container::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(247, 148, 29, 0.05), transparent);
        transform: rotate(45deg);
        transition: all 0.6s ease;
        opacity: 0;
    }

    .form-container:hover::before {
        animation: shimmer 2s ease-in-out;
        opacity: 1;
    }

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

    .form-input::placeholder, .form-textarea::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .form-input:focus, .form-textarea:focus {
        outline: none;
        border-color: #f7941d;
        box-shadow: 0 0 20px rgba(247, 148, 29, 0.3);
        transform: translateY(-2px);
    }

.form-textarea {
    height: 250px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    /*padding-top: 30px;*/
    background: linear-gradient(135deg, #f7941d, #f4d9c3);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .submit-btn:hover::before {
        left: 100%;
    }

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(247, 148, 29, 0.4);
    }

    .submit-btn:active {
        transform: translateY(-1px);
    }

/* Map Section */
.map-section {
    margin-top: 60px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards 1s;
}

.map-container {
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(247, 148, 29, 0.3);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

    .map-placeholder::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="3" fill="%23f7941d" opacity="0.8"><animate attributeName="r" values="3;15;3" dur="2s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.8;0.2;0.8" dur="2s" repeatCount="indefinite"/></circle></svg>') center/50px 50px no-repeat;
        animation: pulse 2s ease-in-out infinite;
    }

/* Floating Animation for Background Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(247, 148, 29, 0.4);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

    .floating-element:nth-child(1) {
        top: 15%;
        left: 15%;
        animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
        top: 70%;
        left: 25%;
        animation-delay: 2s;
    }

    .floating-element:nth-child(3) {
        top: 30%;
        left: 75%;
        animation-delay: 4s;
    }

    .floating-element:nth-child(4) {
        top: 85%;
        left: 80%;
        animation-delay: 6s;
    }

    .floating-element:nth-child(5) {
        top: 45%;
        left: 10%;
        animation-delay: 1s;
    }

    .floating-element:nth-child(6) {
        top: 60%;
        left: 60%;
        animation-delay: 3s;
    }

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.4;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info, .contact-form {
        animation: fadeInUp 1s ease forwards;
        transform: translateY(30px);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .info-item {
        padding: 15px;
    }

    .map-container {
        height: 300px;
    }
}



  .facebook-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 15px;
    }

    .facebook-content {
        flex: 1;
        display: flex;
        align-items: center;
    }

        .facebook-content p {
            margin: 0;
        }

    .qr-code {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        .qr-code img {
            width: 60px;
            height: 60px;
            border: 1px solid #F79B2E;
            border-radius: 6px;
            padding: 3px;
            background: white;
            margin-bottom: 3px;
        }

    .qr-label {
        font-size: 10px;
        color: #666;
        margin: 0;
        white-space: nowrap;
    }

    a {
        text-decoration: none;
    }

        a:hover {
            text-decoration: underline;
        }
}