/* General Styles */
body {
    font-family: 'Noto Sans', sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.section {
    padding: 20px 0;
    position: relative;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: #333;
}

a {
    text-decoration: none;
    color: #f28c38;
    transition: all 0.3s ease;
}

a:hover {
    color: #e07b2e;
}
.mobile-nav-toggle{
display:none;}
/* Header Styles */
.header {
    background: #f28c38;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: padding 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
}

.header .logo img {
    max-height: 60px;
    transition: transform 0.3s ease;
}

.header .logo:hover img {
    transform: scale(1.05);
}

.navmenu ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navmenu a {
    color: #fff;
    font-weight: 500;
    padding: 8px 12px;
    text-transform: uppercase;
    font-size: 11px;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.navmenu a:hover, .navmenu a.active {
    background: #ff9f59;
    color: #e07b2e;
    transform: scale(1.05);
}

.header-social-links a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.header-social-links a:hover {
    color: #e07b2e;
    transform: scale(1.2);
}

#language-switch {
    background: #fff;
    color: #333;
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

#language-switch:hover {
    background: #f28c38;
    color: #fff;
    border-color: #e07b2e;
    transform: scale(1.05);
}

#language-switch option {
    background: #fff;
    color: #333;
}

.mobile-nav-toggle {
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 20px;
}

.navmenu.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.navmenu.active a {
    color: #333;
    padding: 10px;
    width: 100%;
    text-align: left;
}

.navmenu.active a:hover, .navmenu.active a.active {
    background: #ff9f59;
    color: #e07b2e;
}

/* Main Content Adjustment */
.main {
    padding-top: 90px;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80'); /* Replace with actual fon3.jpg path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero .hero-title,
.hero .hero-description,
.hero .stat-number,
.hero .stat-label {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero .hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero .hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero .btn-primary {
    background: #f28c38;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero .btn-primary:hover {
    background: #e07b2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.hero .btn-accent {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero .btn-accent:hover {
    background: #f28c38;
    color: #fff;
    border-color: #f28c38;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* About Section */
.about {
    background: #fff;
}

/* Services Section */
.services {
    background: transparent !important;
}

.services > div[style*="background-color"] {
    background-color: rgba(242, 140, 56, 0.7);
}

/* Portfolio Section */
.portfolio {
    background: #fff;
}

.portfolio .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-title {
    font-size: 2.5rem;
    color: #333;
}

.portfolio-intro {
    color: #555;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-gallery {
    padding: 20px 0;
}

.portfolio-gallery .swiper-slide {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-gallery .swiper-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.portfolio-gallery .portfolio-img-wrapper {
    position: relative;
    overflow: hidden;
}

.portfolio-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-gallery .swiper-slide:hover img {
    transform: scale(1.05);
}

.project-info {
    padding: 15px;
    text-align: center;
}

.project-title {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

.project-title i {
    color: #f28c38;
}

/* News Section */
.news-section {
    background: #fff;
}

.news-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.news-title {
    font-size: 2.5rem;
    color: #333;
}

.news-intro {
    color: #555;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.news-gallery {
    padding: 20px 0;
}

.news-gallery .swiper-slide {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-gallery .swiper-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.news-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-gallery .swiper-slide:hover img {
    transform: scale(1.05);
}

.news-info {
    padding: 15px;
}

.news-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.news-date {
    font-size: 0.8rem;
    color: #f28c38;
    margin-bottom: 5px;
}

.news-info p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f28c38;
    padding: 15px 0;
}

.breadcrumb-item a {
    color: #fff;
}

.breadcrumb-item a:hover {
    color: #e07b2e;
}

.breadcrumb-item.active {
    color: #333;
}

/* Page Title */
.page-title {
    background: #fff;
    padding: 30px 0;
}

.page-title .title-wrapper h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.page-title .title-wrapper p {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
}

/* Service Details Section */
.service-details {
    background: #fff;
}

.service-details .service-details-slider img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.service-details .swiper-pagination-bullet {
    background: #f28c38;
}

.service-details .content h3 {
    font-size: 1.8rem;
    color: #333;
}

.service-details .content h4 {
    font-size: 1.4rem;
    color: #f28c38;
}

.service-details .content p {
    font-size: 1.1rem;
    color: #555;
}

.service-details .content ul li {
    font-size: 1.1rem;
    color: #333;
}

.service-details .content ul li strong {
    color: #f28c38;
}

.service-info {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

.service-info .info-item i {
    color: #f28c38;
    font-size: 1.5rem;
}

.service-info .info-item h5 {
    font-size: 1.2rem;
    color: #333;
}

.service-info .info-item p {
    font-size: 1rem;
    color: #555;
}

.related-services .service-item i {
    color: #f28c38;
    font-size: 1.5rem;
}

.related-services .service-item h5 a {
    color: #333;
}

.related-services .service-item h5 a:hover {
    color: #f28c38;
}

.related-services .service-item p {
    font-size: 0.95rem;
    color: #555;
}

/* Project Detail Section */
.project-gallery-current {
    background: #fff;
    padding: 60px 0;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    text-align: center;
}

.title-shape {
    margin: 10px auto;
    width: 100px;
}

.title-shape svg {
    width: 100%;
    height: 20px;
    stroke: #f28c38;
}

.project-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.project-gallery-item {
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.project-gallery-item:hover {
    transform: scale(1.02);
}

.project-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.project-description {
    margin-top: 30px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* News Detail Section */
.news-detail-section {
    background: #fff;
    padding: 60px 0;
}

.news-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.news-gallery-item {
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.news-gallery-item:hover {
    transform: scale(1.02);
}

.news-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.news-content {
    margin-top: 30px;
}

.news-date {
    font-size: 0.9rem;
    color: #f28c38;
    margin-bottom: 15px;
}

.news-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Related News Section */
.related-news-section {
    background: #FFFFFF;
}

.related-news-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.news-title {
    font-size: 2.5rem;
    color: #333333;
}

.news-intro {
    color: #555555;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #f28c38;
    color: #fff;
    border-radius: 50%;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background: #e07b2e;
    transform: scale(1.1);
}

.scroll-top.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Form */
.contact-form .card {
    background: linear-gradient(135deg, #f28c38 0%, #e07b2e 100%);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.contact-form .card-body {
    padding: 30px;
}

.contact-form .form-control {
    background: #fff;
    color: #333;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #fff;
    box-shadow: 0 0 8px rgba(242, 140, 56, 0.7);
    transform: scale(1.02);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: #888;
    font-style: italic;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-accent {
    background: #fff;
    color: #f28c38;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form .btn-accent:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.contact-form .btn-accent::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.contact-form .btn-accent:hover::after {
    width: 300px;
    height: 300px;
}

.contact-form .loading,
.contact-form .error-message,
.contact-form .sent-message {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}
.mobile-nav-toggle-active{
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    margin-left: 10px;
    display:none;
   }
/* Responsive Adjustments */
@media (max-width: 768px) {
.mobile-nav-toggle-active{
display:block;}
    .mobile-nav-toggle {
        display: block;
    }
    .navmenu-mobile{
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        background: grey;
        padding: 20px;
    }
    .navmenu-mobile ul{
          display: flex;
        flex-direction: column;
    }
    .navmenu-mobile-active{
        left: 0;
    }
    .navmenu ul {
        flex-direction: column;
        gap: 15px;
    }
    .header .logo img {
        max-height: 50px;
    }
    .project-images, .news-images {
        grid-template-columns: 1fr;
    }
    .project-gallery-item img, .news-gallery-item img {
        height: 150px;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .portfolio-gallery img, .news-gallery img {
        height: 150px;
    }
    .contact-form .card-body {
        padding: 20px;
    }
    .hero {
        min-height: 400px;
    }
    .hero .hero-title {
        font-size: 2rem;
    }
    .hero .hero-description {
        font-size: 1rem;
    }
    .hero .btn-primary, .hero .btn-accent {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .navmenu a {
        font-size: 18px;
    }
    .project-description, .news-content p {
        font-size: 1rem;
    }
    .contact-form .btn-accent {
        font-size: 1rem;
        padding: 10px 15px;
    }
}