* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    background: #0f172a;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links li a {
    color: #ffffff;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #f59e0b;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 80px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: #f59e0b;
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0f172a;
}

.hero-text p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary {
    background: #f59e0b;
    color: white;
}

.btn-primary:hover {
    background: #d97706;
}

.btn-outline {
    border: 2px solid #0f172a;
    color: #0f172a;
}

.btn-outline:hover {
    background: #0f172a;
    color: white;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header span {
    color: #f59e0b;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 36px;
    color: #0f172a;
    margin: 12px 0;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #64748b;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 30px 24px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card i {
    font-size: 36px;
    color: #f59e0b;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
    color: #0f172a;
}

/* Why Choose Us */
.why-choose-us {
    background: #f8fafc;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.why-card h3 {
    margin-bottom: 14px;
    color: #0f172a;
}

/* CTA */
.cta-section {
    background: #0f172a;
}

.cta-box {
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 25px;
    color: #cbd5e1;
}

/* Footer */
.footer {
    background: #020617;
    color: white;
    padding-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 30px;
}

.footer-box h3,
.footer-box h4 {
    margin-bottom: 18px;
}

.footer-box p,
.footer-box ul li {
    margin-bottom: 10px;
    color: #cbd5e1;
}

.footer-box ul li a {
    color: #cbd5e1;
}

.footer-box ul li a:hover {
    color: #f59e0b;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    text-align: center;
    padding: 20px 0;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container,
    .services-grid,
    .why-grid,
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-text h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #0f172a;
        position: absolute;
        top: 70px;
        right: 20px;
        width: 220px;
        padding: 20px;
        border-radius: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-container,
    .services-grid,
    .why-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .section-header h2,
    .cta-box h2 {
        font-size: 28px;
    }
}
.page-banner {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.page-banner p {
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
}

.page-content h2 {
    margin-bottom: 15px;
    color: #0f172a;
}

.page-content p {
    margin-bottom: 24px;
    color: #475569;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #f59e0b;
}
.messages-wrapper {
    margin-top: 20px;
}

.alert-message {
    background: #dcfce7;
    color: #166534;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #bbf7d0;
}
.portfolio-preview {
    background: #f8fafc;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-8px);
}

.portfolio-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.portfolio-content {
    padding: 24px;
}

.portfolio-category {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    color: #f59e0b;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.portfolio-content h3 {
    margin-bottom: 12px;
    color: #0f172a;
}

.portfolio-content p {
    color: #64748b;
    margin-bottom: 12px;
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
.stats-section {
    background: #ffffff;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stat-card {
    background: #f8fafc;
    padding: 30px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.stat-card h3 {
    font-size: 36px;
    color: #f59e0b;
    margin-bottom: 10px;
}

.stat-card p {
    color: #475569;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
.testimonials-section {
    background: #ffffff;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
}

.testimonial-stars {
    margin-bottom: 18px;
    color: #f59e0b;
    font-size: 16px;
}

.testimonial-text {
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author h4 {
    color: #0f172a;
    margin-bottom: 6px;
}

.testimonial-author p {
    color: #64748b;
    font-size: 14px;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
.faq-section {
    background: #f8fafc;
    padding: 80px 0;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 14px;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    color: #f59e0b;
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #64748b;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}
.nav-links li a.active {
    color: #f59e0b;
}
.hero-text h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
}

.hero-text p {
    font-size: 18px;
    max-width: 560px;
}

.section-header h2 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
}

.service-card,
.portfolio-card,
.testimonial-card,
.stat-card,
.faq-item,
.why-card {
    border: 1px solid #eef2f7;
}

.service-card:hover,
.portfolio-card:hover,
.testimonial-card:hover,
.why-card:hover,
.stat-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}
.process-section {
    background: #ffffff;
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f7;
}

.process-card span {
    display: inline-block;
    font-size: 28px;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 14px;
}

.process-card h3 {
    margin-bottom: 10px;
    color: #0f172a;
}

.process-card p {
    color: #64748b;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}
html {
    scroll-behavior: smooth;
}

.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.service-card,
.portfolio-card,
.testimonial-card,
.why-card,
.stat-card,
.faq-item {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover,
.portfolio-card:hover,
.testimonial-card:hover,
.why-card:hover,
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.hero-image img {
    border-radius: 20px;
    animation: floatImage 4s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-text h1,
.section-header h2,
.cta-box h2 {
    letter-spacing: -0.5px;
}

.nav-links li a {
    position: relative;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #f59e0b;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.faq-question {
    transition: background 0.3s ease;
}

.faq-item.active .faq-question,
.faq-question:hover {
    background: #fffaf0;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(245, 158, 11, 0.08);
    border-radius: 50%;
    top: -60px;
    right: -60px;
    filter: blur(10px);
}

.hero::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(15, 23, 42, 0.06);
    border-radius: 50%;
    bottom: -40px;
    left: -40px;
    filter: blur(8px);
}
.hero-buttons .btn-primary {
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.35);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}
.testimonials-section {
    background: #ffffff;
    padding: 80px 0;
}

.testimonialSwiper {
    padding-bottom: 50px;
}

.testimonial-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
    border: 1px solid #eef2f7;
}

.testimonial-card:hover {
    transform: translateY(-6px);
}

.testimonial-stars {
    margin-bottom: 18px;
    color: #f59e0b;
    font-size: 16px;
}

.testimonial-text {
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author h4 {
    color: #0f172a;
    margin-bottom: 6px;
}

.testimonial-author p {
    color: #64748b;
    font-size: 14px;
}

.swiper-pagination-bullet {
    background: #cbd5e1;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #f59e0b;
}

.hero {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    animation: floatShape 8s ease-in-out infinite;
}

.hero-shape-1 {
    width: 220px;
    height: 220px;
    background: rgba(245, 158, 11, 0.12);
    top: -60px;
    right: -40px;
}

.hero-shape-2 {
    width: 160px;
    height: 160px;
    background: rgba(15, 23, 42, 0.08);
    bottom: 20px;
    left: -50px;
    animation-delay: 1.5s;
}

.hero-shape-3 {
    width: 120px;
    height: 120px;
    background: rgba(59, 130, 246, 0.10);
    top: 50%;
    left: 45%;
    animation-delay: 3s;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-18px) translateX(10px);
    }
    100% {
        transform: translateY(0px) translateX(0px);
    }
}
.logo img {
    height: 70px;
    width: auto;
}
.logo {
    display: flex;
    align-items: center;
}
.navbar {
    transition: all 0.3s ease;
}

.navbar-scrolled {
    padding: 10px 0;
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.navbar-scrolled .logo img {
    height: 50px;
}

@media (max-width: 768px) {
    .navbar-scrolled .logo img {
        height: 42px;
    }
}
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 18px;
        bottom: 18px;
        font-size: 27px;
    }
}
.card-link {
    display: inline-block;
    margin-top: 16px;
    color: #f59e0b;
    font-weight: 700;
}

.card-link:hover {
    color: #d97706;
}

.service-detail-section {
    padding: 80px 0;
    background: #ffffff;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
    align-items: start;
}

.service-detail-content,
.service-detail-card {
    background: #f8fafc;
    padding: 35px;
    border-radius: 18px;
    border: 1px solid #eef2f7;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.service-detail-icon {
    width: 75px;
    height: 75px;
    background: #fff7ed;
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 34px;
    margin-bottom: 22px;
}

.service-detail-content h2 {
    font-size: 34px;
    color: #0f172a;
    margin-bottom: 16px;
}

.service-detail-content p {
    color: #64748b;
    line-height: 1.8;
}

.service-benefits {
    margin-top: 30px;
}

.service-benefits h3 {
    color: #0f172a;
    margin-bottom: 16px;
}

.service-benefits ul li {
    margin-bottom: 14px;
    color: #475569;
}

.service-benefits ul li i {
    color: #22c55e;
    margin-right: 10px;
}

.service-detail-card {
    position: sticky;
    top: 110px;
}

.service-detail-card h3 {
    color: #0f172a;
    margin-bottom: 12px;
}

.service-detail-card p {
    color: #64748b;
    margin-bottom: 22px;
}

@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        position: static;
    }
}
.portfolio-card {
    position: relative;
    overflow: hidden;
}

.portfolio-card img {
    transition: transform 0.5s ease;
}

.portfolio-card:hover img {
    transform: scale(1.12);
}

.portfolio-content {
    position: relative;
    z-index: 2;
}

.portfolio-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.15));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover::after {
    opacity: 1;
}

.portfolio-card:hover .portfolio-content h3,
.portfolio-card:hover .portfolio-content p,
.portfolio-card:hover .portfolio-category,
.portfolio-card:hover .card-link {
    color: #ffffff;
}
.portfolioSwiper {
    padding-bottom: 50px;
}

.portfolioSwiper .swiper-slide {
    height: auto;
}

.portfolioSwiper .portfolio-card {
    height: 100%;
}
.portfolio-detail-section {
    padding: 80px 0;
    background: #ffffff;
}

.portfolio-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
    align-items: start;
}

.portfolio-detail-main,
.portfolio-detail-sidebar {
    background: #f8fafc;
    padding: 35px;
    border-radius: 18px;
    border: 1px solid #eef2f7;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.portfolio-detail-main img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 28px;
    max-height: 450px;
    object-fit: cover;
}

.portfolio-detail-main h2 {
    color: #0f172a;
    margin: 20px 0 12px;
}

.portfolio-detail-main p,
.portfolio-detail-sidebar p {
    color: #64748b;
    line-height: 1.8;
}

.portfolio-detail-sidebar {
    position: sticky;
    top: 110px;
}

.portfolio-detail-sidebar h3 {
    margin-bottom: 18px;
    color: #0f172a;
}

.portfolio-detail-sidebar .btn {
    width: 100%;
    text-align: center;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .portfolio-detail-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-detail-sidebar {
        position: static;
    }
}
#pageLoader {
    position: fixed;
    inset: 0;
    background: #0f172a;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#pageLoader.hide-loader {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-circle {
    width: 58px;
    height: 58px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: #f59e0b;
    border-radius: 50%;
    animation: loaderSpin 1s linear infinite;
    margin: 0 auto 18px;
}

.loader-content p {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    border: none;
    background: #f8fafc;
    color: #0f172a;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
    border: 1px solid #e2e8f0;
}

.filter-btn:hover,
.filter-btn.active {
    background: #f59e0b;
    color: #ffffff;
    border-color: #f59e0b;
}

.filter-item {
    transition: all 0.35s ease;
}

.filter-item.hide {
    display: none;
}

.careers-section {
    padding: 80px 0;
    background: #ffffff;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.job-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #eef2f7;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.job-card h3 {
    color: #0f172a;
    margin-bottom: 14px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.job-meta span {
    background: #fff7ed;
    color: #f59e0b;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.job-card p {
    color: #64748b;
    line-height: 1.8;
}

.career-form-wrapper {
    max-width: 750px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 35px;
    border-radius: 18px;
    border: 1px solid #eef2f7;
    box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}

.career-form-wrapper h2 {
    color: #0f172a;
    margin-bottom: 24px;
    text-align: center;
}

.career-form input,
.career-form textarea,
.career-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

@media (max-width: 992px) {
    .jobs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .jobs-grid {
        grid-template-columns: 1fr;
    }
}
.partners-section {
    padding: 80px 0;
    background: #ffffff;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
    align-items: center;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.08);
}


.partner-card {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.partner-card img {
    max-width: 90%;
    max-height: 60px;
    object-fit: contain;
    transition: 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.partners-slider {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.partners-track {
    display: flex;
    width: max-content;
    animation: scrollPartners 35s linear infinite;
}
.partners-slider:hover .partners-track {
    animation-play-state: paused;
}
.partner-card {
    min-width: 180px;
    height: 110px;
    margin-right: 20px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid #eef2f7;
}

.partner-card img {
    max-width: 95%;
    max-height: 75px;
    object-fit: contain;
    filter: grayscale(60%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* animation */
@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.portfolio-preview {
    background: #ffffff;
    padding: 90px 0;
}

.portfolio-showcase-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.portfolio-showcase-card {
    height: 230px;
    border-radius: 18px;
    overflow: hidden;
    display: block;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: 0.35s ease;
}

.portfolio-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.portfolio-showcase-card:hover {
    transform: translateY(-8px);
}

.portfolio-showcase-card:hover img {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .portfolio-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .portfolio-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-showcase-card {
        height: 170px;
    }
}
.portfolio-showcase-card {
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.10);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}


.portfolio-showcase-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.25),
        rgba(15, 23, 42, 0.05)
    );
}

.portfolio-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.portfolio-showcase-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.20),
        0 8px 20px rgba(15, 23, 42, 0.08);
}

.portfolio-showcase-card:hover img {
    transform: scale(1.12);
}

.portfolio-showcase-card:hover::after {
    opacity: 1;
}
.messages-wrapper {
    margin: 20px 0;
}

.alert-message {
    background: #dcfce7;
    color: #166534;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid #bbf7d0;
    font-weight: 600;
}
.admin-login-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 80px 20px;
}

.admin-login-card {
    width: 100%;
    max-width: 430px;
    background: #ffffff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
    border: 1px solid #eef2f7;
    text-align: center;
}

.login-badge {
    display: inline-block;
    background: #fff7ed;
    color: #f59e0b;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 18px;
}

.admin-login-card h1 {
    color: #0f172a;
    font-size: 34px;
    margin-bottom: 10px;
}

.admin-login-card p {
    color: #64748b;
    margin-bottom: 28px;
}

.admin-login-card .form-group {
    margin-bottom: 18px;
}

.admin-login-card input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #dbeafe;
    font-size: 16px;
    outline: none;
}

.admin-login-card input:focus {
    border-color: #f59e0b;
}

.login-btn {
    width: 100%;
    border: none;
    cursor: pointer;
}
.dashboard-section {
    padding: 80px 0;
    background: #f8fafc;
    min-height: 80vh;
}

.dashboard-section h1 {
    color: #0f172a;
    font-size: 40px;
    margin-bottom: 8px;
}

.dashboard-section > .container > p {
    color: #64748b;
    margin-bottom: 35px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.dashboard-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    border: 1px solid #eef2f7;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.dashboard-card h3 {
    color: #0f172a;
    margin-bottom: 12px;
}

.dashboard-card p {
    font-size: 42px;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .dashboard-cards {
        grid-template-columns: 1fr;
    }
}
.table-wrapper {
    overflow-x: auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table th {
    background: #f8fafc;
    color: #0f172a;
    padding: 14px;
    text-align: left;
    font-weight: 700;
    border-bottom: 1px solid #e2e8f0;
}

.dashboard-table td {
    padding: 14px;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.dashboard-table tr:hover {
    background: #f9fafb;
}
.table-link {
    color: #f59e0b;
    font-weight: 700;
}

.table-link:hover {
    color: #d97706;
}

/* ================================
   FINAL PREMIUM POLISH
================================ */

:root {
    --primary: #f59e0b;
    --primary-dark: #d97706;
    --dark: #0f172a;
    --text: #475569;
    --muted: #64748b;
    --light: #f8fafc;
    --border: #e5eaf3;
    --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 24px 60px rgba(15, 23, 42, 0.14);
}

body {
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
    color: var(--dark);
    background: #ffffff;
}

/* Better section spacing */
section {
    padding: 95px 0;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 55px;
}

.section-header span {
    background: #fff7ed;
    color: var(--primary);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
    margin-top: 18px;
}

.section-header p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--muted);
}

/* Premium navbar */
.navbar {
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
}

.nav-links li a {
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Hero polish */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.18), transparent 32%),
        radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.10), transparent 30%),
        linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.hero-text h1 {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
}

.hero-badge {
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.28);
}

.hero-image img {
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
}

/* Buttons */
.btn {
    border-radius: 999px;
    padding: 15px 30px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.28);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--dark);
}

/* Cards premium */
.service-card,
.why-card,
.testimonial-card,
.portfolio-card,
.stat-card,
.faq-item,
.partner-card,
.job-card {
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.service-card:hover,
.why-card:hover,
.testimonial-card:hover,
.portfolio-card:hover,
.stat-card:hover,
.partner-card:hover,
.job-card:hover {
    box-shadow: var(--shadow-hover);
}

/* Service icons */
.service-card i {
    width: 72px;
    height: 72px;
    background: #fff7ed;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Stats section */
.stats-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-color: rgba(255, 255, 255, 0.12);
}

.stat-card h3 {
    color: var(--primary);
    font-size: 46px;
}

.stat-card p {
    color: #cbd5e1;
}

/* FAQ polish */
.faq-question {
    font-size: 18px;
}

.faq-item.active {
    border-color: rgba(245, 158, 11, 0.4);
}

/* CTA stronger */
.cta-section {
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.22), transparent 30%),
        linear-gradient(135deg, #020617, #0f172a);
}

.cta-box h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
}

/* Footer */
.footer {
    background: #020617;
}

.footer-box h3,
.footer-box h4 {
    color: #ffffff;
}

.footer-box p,
.footer-box a {
    font-size: 15px;
}

/* Mobile polish */
@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .hero {
        min-height: auto;
        padding-top: 70px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn {
        padding: 13px 24px;
    }
}
.about-main {
    padding: 90px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 18px;
}

.about-text p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-image img {
    width: 100%;
    max-width: 400px;   /*  control size here */
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.about-image img {
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

/* Features */
.about-features {
    background: #f8fafc;
    padding: 90px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card i {
    font-size: 28px;
    color: #f59e0b;
    margin-bottom: 12px;
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    color: #64748b;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}
/* FINAL POLISH START */

section {
    padding: 90px 0;
}

.card,
.service-card,
.portfolio-card,
.feature-card {
    transition: 0.3s;
}

.card:hover,
.service-card:hover,
.portfolio-card:hover,
.feature-card:hover {
    transform: translateY(-6px);
}

html {
    scroll-behavior: smooth;
}

.footer a:hover {
    color: #f59e0b;
}

/* FINAL POLISH END */

.hero-text h1 {
    animation: heroTextReveal 0.9s ease forwards;
}

@keyframes heroTextReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.btn-primary {
    position: relative;
}

.btn-primary:hover {
    box-shadow: 0 14px 35px rgba(245, 158, 11, 0.35);
}
.about-preview {
    padding: 90px 0;
    background: #ffffff;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.section-tag {
    display: inline-block;
    background: #fff7ed;
    color: #f59e0b;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 14px;
}

.about-preview-text h2 {
    font-size: 38px;
    margin-bottom: 18px;
}

.about-preview-text p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 22px;
}

.about-preview-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Mobile */
@media (max-width: 768px) {
    .about-preview-grid {
        grid-template-columns: 1fr;
    }
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.15), transparent 30%),
        radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.08), transparent 30%),
        linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: #fff7ed;
    color: #f59e0b;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-text h1 {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero-text p {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 28px;
}

.highlight {
    color: #f59e0b;
}

.hero-buttons {
    display: flex;
    gap: 18px;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: scale(1.03);
}

/* Mobile */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}
.hero-text h1 {
    animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.footer {
    background: #020617;
    color: #cbd5e1;
    padding: 70px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-box h3,
.footer-box h4 {
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-box p {
    line-height: 1.7;
    font-size: 15px;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #f59e0b;
}

/* Social icons */
.footer-social {
    margin-top: 18px;
}

.footer-social a {
    color: #cbd5e1;
    font-size: 20px;
    margin-right: 12px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #f59e0b;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #1e293b;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #cbd5e1;
}

.footer-contact i {
    color: #f59e0b;
    margin-top: 3px;
    font-size: 16px;
    min-width: 18px;
}