:root {
    --mag-bg-light: #EAF4FD;
    --mag-bg-white: #fff;
    --mag-accent: #0099ff;
    --mag-heading-color: #232323;
    --mag-footer-bg: #232323;
    --mag-text-color: #616161;
    --mag-font-heading: 'Nunito', sans-serif;
    --mag-font-text: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--mag-font-text);
    color: var(--mag-text-color);
    background-color: var(--mag-bg-white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.mag-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mag-btn {
    display: inline-block;
    background-color: var(--mag-accent);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--mag-font-heading);
}

.mag-btn:hover {
    background-color: #008ae6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 153, 255, 0.2);
}


.mag-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.mag-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mag-logo {
    font-family: var(--mag-font-heading);
    font-weight: 800;
    font-size: 28px;
    color: #fff;
}

.mag-logo span {
    color: var(--mag-accent);
}

.mag-nav {
    display: flex;
    align-items: center;
}

.mag-nav-list {
    display: flex;
    margin-right: 30px;
}

.mag-nav-item {
    margin: 0 15px;
    position: relative;
}

.mag-nav-link {
    font-family: var(--mag-font-heading);
    font-weight: 600;
    color: #fff;
    transition: color 0.3s ease;
}

.mag-nav-link:hover {
    color: var(--mag-accent);
}

.mag-mobile-toggle {
    display: none;
    font-size: 24px;
    margin-left: 20px;
    color: #fff;
    cursor: pointer;
}


.mag-banner {
    background: url('../img/banner.jpg') right center no-repeat;
    background-size: cover;
    padding: 200px 0 130px;
    position: relative;
    overflow: hidden;
}

.mag-banner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.mag-banner-subtitle {
    font-size: 18px;
    color: var(--mag-accent);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mag-banner-title {
    font-family: var(--mag-font-heading);
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 600px;
}

.mag-banner-text {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    color: #fff;
}


.mag-about {
    padding: 100px 0 60px 0;
    background-color: var(--mag-bg-white);
}

.mag-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.mag-section-subtitle {
    font-size: 18px;
    color: var(--mag-accent);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mag-section-title {
    font-family: var(--mag-font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--mag-heading-color);
    line-height: 1.2;
}

.mag-about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.mag-about-text {
    flex: 1;
    min-width: 300px;
}

.mag-about-desc {
    margin-bottom: 25px;
    font-size: 17px;
}

.mag-about-list {
    margin-bottom: 30px;
}

.mag-about-list-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.mag-about-list-item i {
    color: var(--mag-accent);
    margin-right: 10px;
}

.mag-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mag-advantage-card {
    background-color: var(--mag-bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.mag-advantage-card:hover {
    transform: translateY(-5px);
}

.mag-advantage-icon {
    font-size: 40px;
    color: var(--mag-accent);
    margin-bottom: 20px;
}

.mag-advantage-title {
    font-family: var(--mag-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--mag-heading-color);
    margin-bottom: 15px;
}


.mag-stats {
    padding: 30px 0;
    background-color: var(--mag-bg-light);
}

.mag-stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.mag-stat-item {
    text-align: center;
    padding: 20px;
}

.mag-stat-number {
    font-family: var(--mag-font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--mag-accent);
    margin-bottom: 10px;
}

.mag-stat-text {
    font-size: 18px;
    color: var(--mag-heading-color);
}


.mag-services {
    padding: 100px 0;
    background-color: var(--mag-bg-white);
}

.mag-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mag-service-card {
    background-color: var(--mag-bg-light);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mag-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mag-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0px;
    height: 100%;
    background-color: var(--mag-accent);
    z-index: -1;
    transition: width 0.3s ease;
}

.mag-service-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.mag-service-icon {
    font-size: 40px;
    color: var(--mag-accent);
    margin-bottom: 20px;
}

.mag-service-title {
    font-family: var(--mag-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--mag-heading-color);
    margin-bottom: 15px;
}

.mag-service-desc {
    margin-bottom: 20px;
}

.mag-service-link {
    color: var(--mag-accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.mag-service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.mag-service-link:hover i {
    transform: translateX(5px);
}


.mag-blog {
    padding: 100px 0;
    background-color: var(--mag-bg-light);
}

.mag-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mag-blog-card {
    background-color: var(--mag-bg-white);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.mag-blog-card:hover {
    transform: translateY(-5px);
}

.mag-blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.mag-blog-content {
    padding: 25px;
}

.mag-blog-meta {
    display: flex;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--mag-text-color);
}

.mag-blog-author {
    margin-right: 20px;
}

.mag-blog-title {
    font-family: var(--mag-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--mag-heading-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.mag-cta .mag-section-title {
    color: #fff;
    margin-bottom: 20px;
}

.mag-cta {
    padding: 100px 0;
    background: url('../img/cta-bg.jpg') left center no-repeat;
    background-size: cover;
}




.mag-footer {
    background-color: var(--mag-footer-bg);
    color: white;
    padding: 80px 0 0;
}

.mag-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.mag-footer-logo {
    font-family: var(--mag-font-heading);
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 20px;
}

.mag-footer-logo span {
    color: var(--mag-accent);
}

.mag-footer-desc {
    margin-bottom: 20px;
    opacity: 0.8;
}

.mag-footer-title {
    font-family: var(--mag-font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.mag-footer-links {
    margin-bottom: 10px;
}

.mag-footer-link {
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.mag-footer-link:hover {
    opacity: 1;
    color: var(--mag-accent);
}

.mag-footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.mag-footer-contact-icon {
    margin-right: 15px;
    color: var(--mag-accent);
}

.mag-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

.mag-footer-policy {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.mag-footer-policy-link {
    margin: 0 15px;
}


.mag-cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 20px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    max-width: 400px;
    width: 90%;
    display: none;
}

.mag-cookie-title {
    font-family: var(--mag-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--mag-heading-color);
    margin-bottom: 15px;
}

.mag-cookie-text {
    margin-bottom: 20px;
}

.mag-cookie-options {
    margin-bottom: 20px;
}

.mag-cookie-option {
    margin-bottom: 10px;
}

.mag-cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.mag-cookie-btn {
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mag-cookie-btn-accept {
    background-color: var(--mag-accent);
    color: white;
    border: none;
}

.mag-cookie-btn-reject {
    background-color: transparent;
    color: var(--mag-text-color);
    border: 1px solid #ddd;
}

.mag-breadcrumb {
    background-color: #EAF4FD;
    padding: 120px 0 20px 0;
    margin-bottom: 60px;
}

.mag-breadcrumb-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mag-breadcrumb-title {
    font-family: 'Nunito', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #232323;
}

.mag-breadcrumb-links {
    display: flex;
}

.mag-breadcrumb-link {
    color: #616161;
    font-size: 16px;
}

.mag-breadcrumb-link:after {
    content: '/';
    margin: 0 10px;
}

.mag-breadcrumb-link:last-child:after {
    content: '';
    margin: 0;
}

.mag-breadcrumb-link.active {
    color: #0099ff;
}



.mag-about-story {
    padding: 60px 0;
}

.mag-story-content {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.mag-story-text {
    flex: 1;
}

.mag-story-text p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.mag-story-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mag-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mag-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mag-value-card {
    text-align: center;
    padding: 30px;
    background-color: #EAF4FD;
    border-radius: 10px;
}

.mag-value-icon {
    font-size: 40px;
    color: #0099ff;
    margin-bottom: 20px;
}

.mag-value-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 15px;
}

.mag-approach {
    padding: 80px 0;
    background-color: #EAF4FD;
}

.mag-approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mag-approach-step {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.mag-step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #0099ff;
    color: white;
    border-radius: 50%;
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.mag-approach-step h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 15px;
}

.mag-clients {
    padding: 80px 0;
}

.mag-clients-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 50px 0;
}

.mag-client-logo {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.mag-client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.mag-client-logo img {
    max-width: 100%;
    max-height: 100%;
}

.mag-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mag-testimonial {
    padding: 30px;
    background-color: #EAF4FD;
    border-radius: 10px;
    position: relative;
}

.mag-testimonial:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 60px;
    color: #0099ff;
    opacity: 0.2;
}

.mag-testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.mag-testimonial-author h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 5px;
}


.mag-contact-info {
    padding: 60px 0;
    background-color: #EAF4FD;
}

.mag-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mag-contact-info-item {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.mag-contact-icon {
    font-size: 40px;
    color: #0099ff;
    margin-bottom: 20px;
}

.mag-contact-info-item h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 15px;
}

.mag-contact-form-section {
    padding: 80px 0;
}

.mag-contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.mag-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.mag-form-group {
    flex: 1;
    margin-bottom: 20px;
}

.mag-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #232323;
}

.mag-form-group input,
.mag-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.mag-form-group input:focus,
.mag-form-group textarea:focus {
    border-color: #0099ff;
    outline: none;
}

.mag-form-group.error input,
.mag-form-group.error textarea {
    border-color: #ff3333;
}

.mag-error-msg {
    display: block;
    color: #ff3333;
    font-size: 14px;
    margin-top: 5px;
    min-height: 20px;
}

.mag-thankyou-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mag-thankyou-popup.active {
    opacity: 1;
    visibility: visible;
}

.mag-thankyou-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.mag-thankyou-icon {
    font-size: 60px;
    color: #0099ff;
    margin-bottom: 20px;
}

.mag-thankyou-content h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 15px;
}

.mag-thankyou-content p {
    margin-bottom: 25px;
}




.mag-services-detailed {
    padding: 60px 0;
}

.mag-service-detail {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.mag-service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.mag-service-content {
    flex: 1;
}

.mag-service-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mag-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mag-service-title {
    font-family: 'Nunito', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #232323;
    margin-bottom: 20px;
}

.mag-service-desc {
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.7;
}

.mag-service-features {
    margin-bottom: 30px;
}

.mag-service-feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.mag-service-feature i {
    color: #0099ff;
    margin-right: 12px;
    font-size: 18px;
}

.mag-service-cta {
    margin-top: 30px;
}


.mag-faq-section {
    padding: 60px 0;
}

.mag-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.mag-faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.mag-faq-question {
    padding: 20px;
    background-color: #EAF4FD;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #232323;
}

.mag-faq-question i {
    transition: transform 0.3s ease;
}

.mag-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: white;
}

.mag-faq-item.active .mag-faq-answer {
    max-height: 500px;
    padding: 20px;
}

.mag-faq-item.active .mag-faq-question i {
    transform: rotate(180deg);
}


.mag-services-cta {
    padding: 80px 0;
    background-color: #EAF4FD;
    text-align: center;
}



@media (max-width: 992px) {

    .mag-service-detail,
    .mag-service-detail:nth-child(even) {
        flex-direction: column;
    }

    .mag-service-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .mag-breadcrumb-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .mag-breadcrumb-links {
        justify-content: center;
    }

    .mag-service-title {
        font-size: 24px;
    }
}

.mag-policy-content {
    padding: 60px 0;
    background-color: #fff;
}

.mag-policy-text {
    max-width: 800px;
    margin: 0 auto;
}

.mag-policy-update {
    color: #616161;
    font-style: italic;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #EAF4FD;
}

.mag-policy-text h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #232323;
    margin: 30px 0 15px;
}

.mag-policy-text h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #232323;
    margin: 20px 0 10px;
}

.mag-policy-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #616161;
}

.mag-policy-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.mag-policy-text li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #616161;
}

.mag-policy-text a {
    color: #0099ff;
    text-decoration: none;
}

.mag-policy-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .mag-policy-text h2 {
        font-size: 22px;
    }

    .mag-policy-text h3 {
        font-size: 18px;
    }
}


















@media (max-width: 768px) {
    .mag-story-content {
        flex-direction: column;
    }

    .mag-form-row {
        flex-direction: column;
        gap: 0;
    }

    .mag-clients-logos {
        gap: 20px;
    }

    .mag-client-logo {
        width: 120px;
    }
}
































@media (max-width: 992px) {
    .mag-nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--mag-bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .mag-nav-list.active {
        display: flex;
    }

    .mag-nav-item {
        margin: 10px 0;
    }

    .mag-mobile-toggle {
        display: block;
    }

    .mag-banner-title {
        font-size: 36px;
    }

    .mag-header {
        background: rgba(0, 0, 0, 0.5);
    }

    .mag-nav-link {
        color: #222;
    }
}

@media (max-width: 768px) {
    .mag-banner {
        padding: 130px 0 80px;
    }

    .mag-banner-title {
        font-size: 32px;
    }

    .mag-section-title {
        font-size: 28px;
    }

    .mag-stat-number {
        font-size: 36px;
    }
}

@media(max-width: 767px) {
    .mag-banner {
        background-position: left center;
    }
}

@media(max-width: 430px) {
    .mag-btn {
        display: none;
    }

    .mag-banner {
        padding-bottom: 40px;
    }
}