* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    color: #555;
    margin-bottom: 15px;
    font-size: 15px;
}

.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    opacity: 0.05;
    animation: floatFullPage linear infinite;
    color: #53C3B1;
    font-size: 40px;
}

.bg-shape:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-duration: 25s;
    content: '★';
    font-size: 30px;
    color: #FF6A00;
}

.bg-shape:nth-child(2) {
    top: 20%;
    right: 10%;
    font-size: 80px;
    animation-duration: 35s;
    animation-delay: -5s;
    color: #333;
    opacity: 0.02;
}

.bg-shape:nth-child(3) {
    bottom: 15%;
    left: 15%;
    animation-duration: 28s;
    animation-delay: -10s;
}

.bg-shape:nth-child(4) {
    bottom: 30%;
    right: 5%;
    animation-duration: 32s;
    color: #1E88E5;
    opacity: 0.04;
}

.bg-shape:nth-child(5) {
    top: 50%;
    left: 50%;
    font-size: 100px;
    animation-duration: 45s;
    opacity: 0.02;
    color: #333;
}

@keyframes floatFullPage {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 40px) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.header {
    background: #F8EBD6;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 72px;
    animation: slideDown 0.8s ease forwards;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    display: block;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-buttons .btn-login {
    padding: 8px 24px;
    border: 1px solid #ccc;
    background: transparent;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    transition: 0.3s;
}

.auth-buttons .btn-login:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: #bbb;
}

.auth-buttons .btn-signup {
    background: #FF6A00;
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(255, 106, 0, 0.2);
}

.auth-buttons .btn-signup:hover {
    background: #e05c00;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 106, 0, 0.3);
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    margin-left: 10px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.services-hero {
    position: relative;
    padding: 100px 0 150px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);
    color: white;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #ddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 30px;
}

.main-services-grid {
    margin-top: -80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 5;
}

.ms-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF6A00, #FFC107);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.service-box:hover::before {
    transform: scaleX(1);
}

.sb-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: #fdf1e6;
    color: #FF6A00;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.4s;
}

.service-box:hover .sb-icon {
    background: #FF6A00;
    color: white;
    transform: rotate(-10deg);
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

.service-box p {
    font-size: 15px;
    color: #666;
    flex-grow: 1;
    margin-bottom: 25px;
}

.sb-link {
    color: #FF6A00;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.sb-link:hover {
    gap: 10px;
}

.skills-section {
    padding: 80px 0;
    background: #fafafa;
    position: relative;
}

.skills-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.skills-text {
    flex: 1;
}

.skills-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.skills-visual {
    flex: 1;
}

.skill-bar-container {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #444;
}

.progress-bg {
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 5px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.fill-orange {
    background: #FF6A00;
}

.fill-teal {
    background: #53C3B1;
}

.fill-blue {
    background: #1E88E5;
}

.fill-purple {
    background: #673AB7;
}

.fill-dark {
    background: #333;
}

.animate-active .progress-fill[data-width="95"] {
    width: 95%;
}

.animate-active .progress-fill[data-width="90"] {
    width: 90%;
}

.animate-active .progress-fill[data-width="85"] {
    width: 85%;
}

.animate-active .progress-fill[data-width="80"] {
    width: 80%;
}

.animate-active .progress-fill[data-width="75"] {
    width: 75%;
}

.why-us {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    padding: 20px;
}

.why-icon {
    font-size: 40px;
    color: #53C3B1;
    margin-bottom: 15px;
    display: inline-block;
    transition: 0.3s;
}

.why-item:hover .why-icon {
    transform: scale(1.2);
    color: #FF6A00;
}

.cta-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-anim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #333, #1a1a1a);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: #FF6A00;
    color: white;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #e05c00;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.3);
}

.footer {
    background: #f9f9f9;
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid #eee;
    position: relative;
    z-index: 2;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.footer-logo h3 span {
    display: block;
    font-size: 14px;
    color: #FF6A00;
    font-weight: 500;
}

.footer-logo p {
    color: #777;
    margin: 10px 0;
}

.tagline {
    font-weight: 600;
    color: #FF6A00 !important;
    font-size: 18px;
    margin: 15px 0 30px;
}

.footer-links a {
    margin: 0 15px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #FF6A00;
}

.footer-copyright {
    margin-top: 30px;
    color: #999;
    font-size: 13px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-hidden {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.animate-hidden {
    transform: translateY(40px);
}

.fade-right.animate-hidden {
    transform: translateX(-40px);
}

.fade-left.animate-hidden {
    transform: translateX(40px);
}

.animate-active {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

.stagger-children>* {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease;
}

.stagger-children.animate-active>* {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.animate-active>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-children.animate-active>*:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-children.animate-active>*:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-children.animate-active>*:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-children.animate-active>*:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-children.animate-active>*:nth-child(6) {
    transition-delay: 0.6s;
}

@media (max-width: 992px) {
    .header-container {
        padding: 0 20px;
    }

    .ms-grid-container {
        grid-template-columns: 1fr;
    }

    .skills-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}