* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
    transition: background-color 0.5s ease, color 0.5s ease;
}

body.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}

#page1 {
    min-height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    position: relative;
    padding: 0 2vw;
    overflow: hidden;
    transition: background-color 0.5s ease;
}

body.dark-mode #page1 {
    background-color: #1e1e1e;
}

nav {
    padding: 0.5vw 0vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #c7944b;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: #2c3e50;
}

body.dark-mode .logo span {
    color: #e0e0e0;
}

#nav-part-2 {
    display: flex;
    align-items: center;
    gap: 1.3vw;
}

#nav-part-2 h4 {
    padding: 10px 20px;
    border: 1px solid #05040489;
    border-radius: 50px;
    font-weight: 500;
    color: #000000bb;
    transition: all ease 0.4s;
    position: relative;
    font-size: 18px;
    overflow: hidden;
}

body.dark-mode #nav-part-2 h4 {
    border-color: #e0e0e089;
    color: #e0e0e0bb;
}

#nav-part-2 h4::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: black;
    left: 0;
    bottom: -100%;
    border-radius: 50%;
    transition: all ease 0.4s;
}

body.dark-mode #nav-part-2 h4::after {
    background-color: #e0e0e0;
}

#nav-part-2 h4:hover::after {
    bottom: 0;
    border-radius: 0;
}

#nav-part-2 h4 a {
    color: #000000bb;
    text-decoration: none;
    position: relative;
    z-index: 9;
}

body.dark-mode #nav-part-2 h4 a {
    color: #e0e0e0bb;
}

#nav-part-2 h4:hover a {
    color: #fff;
}

body.dark-mode #nav-part-2 h4:hover a {
    color: #121212;
}

#center {
    height: 65vh;
    width: 100%;
    display: flex;
    padding-bottom: 2vw;
    position: relative;
    z-index: 2;
}

#left p {
    width: 40vw;
    font-size: 1.5vw;
    margin-left: 90px;
    color: #000000;
    transition: color 0.5s ease;
}

body.dark-mode #left p {
    color: #e0e0e0;
}

#left h3 {
    width: 40vw;
    font-size: 2vw;
    margin-top: 150px;
    margin-left: 90px;
    color: #000000;
    transition: color 0.5s ease;
}

body.dark-mode #left h3 {
    color: #e0e0e0;
}

#air {
    display: flex;
    align-items: center;
    gap: 2vw;
    margin-left: 200px;
    margin-top: 90px;
}

#air h4 {
    padding: 10px 20px;
    border: 1px solid #000000bb;
    border-radius: 50px;
    font-weight: 500;
    color: #000000bb;
    transition: all ease 0.4s;
    position: relative;
    font-size: 18px;
    overflow: hidden;

}

body.dark-mode #air h4 {
    border-color: #e0e0e0bb;
    color: #e0e0e0bb;
}

#air h4::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: black;
    left: 0;
    bottom: -100%;
    border-radius: 50%;
    transition: all ease 0.4s;
}

body.dark-mode #air h4::after {
    background-color: #e0e0e0;
}

#air h4:hover::after {
    bottom: 0;
    border-radius: 0;
}

#air h4 a {
    color: #000000bb;
    text-decoration: none;
    position: relative;
    z-index: 9;
}

body.dark-mode #air h4 a {
    color: #e0e0e0bb;
}

#air h4:hover a {
    color: #fff;
}

body.dark-mode #air h4:hover a {
    color: #121212;
}

#right {
    position: relative;
    z-index: 1;
}

#right img {
    margin-left: 100px;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.stats-container {
    margin: 50px;
    display: flex;
    justify-content: center;
    gap: 150px;
    padding: 30px;
    font-family: system-ui, -apple-system, sans-serif;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    min-width: 180px;
}

.icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: #EFEAE3;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: background-color 0.5s ease;
}

body.dark-mode .icon-container {
    background-color: #2d2d2d;
}

.icon {
    width: 60px;
    height: 60px;
    color: #a39683;
    transition: color 0.5s ease;
}

body.dark-mode .icon {
    color: #c7944b;
}

.value {
    font-size: 30px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
    transition: color 0.5s ease;
}

body.dark-mode .value {
    color: #e0e0e0;
}

.label {
    color: #4b5563;
    transition: color 0.5s ease;
}

body.dark-mode .label {
    color: #b0b0b0;
}

.header p {
    margin-left: 130px;
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
    transition: color 0.5s ease;
}

body.dark-mode .header p {
    color: #b0b0b0;
}

.header h1 {
    margin-left: 33%;
    color: #000000;
    transition: color 0.5s ease;
}

body.dark-mode .header h1 {
    color: #e0e0e0;
}

.services-container {
    border-radius: 12px;
    background-color: #EFEAE3;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    max-width: 1300px;
    width: 90%;
    transition: background-color 0.5s ease;
}

body.dark-mode .services-container {
    background-color: #1e1e1e;
}

.service-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

body.dark-mode .service-card {
    background: #2d2d2d;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
}

body.dark-mode .service-card:hover {
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.5);
}

.card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.12);
}

.card-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 28px;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.service-title {
    font-size: 1.7rem;
    color: #2c3e50;
    margin-bottom: 18px;
    font-weight: 700;
    transition: color 0.5s ease;
}

body.dark-mode .service-title {
    color: #e0e0e0;
}

.service-description {
    color: #5a6b7c;
    line-height: 1.7;
    margin-bottom: 22px;
    flex-grow: 1;
    font-size: 1.05rem;
    transition: color 0.5s ease;
}

body.dark-mode .service-description {
    color: #b0b0b0;
}

.service-features {
    margin-bottom: 28px;
}

.service-features li {
    margin-bottom: 10px;
    color: #34495e;
    list-style-type: none;
    padding-left: 30px;
    position: relative;
    font-size: 1.02rem;
    transition: color 0.5s ease;
}

body.dark-mode .service-features li {
    color: #d0d0d0;
}

.service-features li:before {
    content: "✓";
    color: #2ecc71;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    color: black;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

body.dark-mode .btn {
    color: #121212;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    color: #2c3e50;
    transition: all 0.5s ease;
}

body.dark-mode .price-tag {
    background: rgba(45, 45, 45, 0.95);
    color: #e0e0e0;
}

/* Individual card colors */
.card-1 .icon,
.card-1 .btn,
.card-1 .price-tag {
    background: #efeae3;
}

.card-1 .btn:hover {
    background: #c7944b;
}

.card-2 .icon,
.card-2 .btn,
.card-2 .price-tag {
    background: #efeae3;
}

.card-2 .btn:hover {
    background: #c7944b;
}

.card-3 .icon,
.card-3 .btn,
.card-3 .price-tag {
    background: #efeae3;
}

.card-3 .btn:hover {
    background: #c7944b;
}

.card-4 .icon,
.card-4 .btn,
.card-4 .price-tag {
    background: #efeae3;
}

.card-4 .btn:hover {
    background: #c7944b;
}

.card-5 .icon,
.card-5 .btn,
.card-5 .price-tag {
    background: #efeae3;
}

.card-5 .btn:hover {
    background: #c7944b;
}

.card-6 .icon,
.card-6 .btn,
.card-6 .price-tag {
    background: #efeae3;
}

.card-6 .btn:hover {
    background: #c7944b;
}

#hero-shape-1 {
    position: absolute;
    width: 13vw;
    height: 13vw;
    background-color: #c7944b;
    border-radius: 50%;
    right: 8%;
    bottom: 15%;
    filter: blur(20px);
    animation-name: anime2;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    z-index: 1;
    transition: background-color 0.5s ease;
}

body.dark-mode #hero-shape-1 {
    background-color: #8B5E3C;
}

#hero-shape-2 {
    position: absolute;
    width: 13vw;
    height: 13vw;
    background-color: #c7944b;
    border-radius: 50%;
    right: 38%;
    bottom: 65%;
    filter: blur(20px);
    animation-name: anime1;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    z-index: 1;
    transition: background-color 0.5s ease;
}

body.dark-mode #hero-shape-2 {
    background-color: #8B5E3C;
}

@keyframes anime1 {
    from {
        transform: translate(-10%, 10%);
    }

    to {
        transform: translate(10%, -10%);
    }
}

@keyframes anime2 {
    from {
        transform: translate(10%, -10%);
    }

    to {
        transform: translate(-10%, 10%);
    }
}

#page2 {
    min-height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    padding: 3vw 0;
    position: relative;
    z-index: 2;
    transition: background-color 0.5s ease;
}

body.dark-mode #page2 {
    background-color: #1e1e1e;
}


#moving-text h1 {
    font-size: 6vw;
    display: inline-block;
    color: #000000;
    transition: color 0.5s ease;
}

body.dark-mode #moving-text h1 {
    color: #e0e0e0;
}

#gola {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background-color: #c7944b;
    display: inline-block;
    margin: 0 20px;
    transition: background-color 0.5s ease;
}

body.dark-mode #gola {
    background-color: #8B5E3C;
}

.con {
    background-color: #efeae3;
    white-space: nowrap;
    display: inline-block;
    animation-name: move;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transition: background-color 0.5s ease;
}

body.dark-mode .con {
    background-color: #1e1e1e;
}

#moving-text {
    white-space: nowrap;
    overflow-x: hidden;
    position: relative;
    padding: 20px 0;
}

#moving-text::-webkit-scrollbar {
    display: none;
}

@keyframes move {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Dark Mode Toggle */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.theme-switch {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 34px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #c7944b;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.slider-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: white;
}

.slider-icon.sun {
    left: 8px;
}

.slider-icon.moon {
    right: 6px;
}

/* Dark mode specific styles for icons */
body.dark-mode .slider-icon.sun {
    color: #ffcc80;
}

body.dark-mode .slider-icon.moon {
    color: #e0e0e0;
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background-color: #EFEAE3;
    transition: background-color 0.5s ease;
    overflow: hidden;
}

body.dark-mode .security-section {
    background-color: #1e1e1e;
}

.security-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.security-header {
    text-align: center;
    margin-bottom: 60px;
}

.security-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    transition: color 0.5s ease;
}

body.dark-mode .security-header h2 {
    color: #e0e0e0;
}

.security-header p {
    font-size: 1.2rem;
    color: #5a6b7c;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    transition: color 0.5s ease;
}

body.dark-mode .security-header p {
    color: #b0b0b0;
}

.security-features {
    display: flex;
    white-space: nowrap;
    animation: security-move 10s linear infinite;
    padding: 20px 0;
}

.security-features:hover {
    animation-play-state: paused;
}

.security-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 0 0 auto;
    width: 280px;
    margin: 0 15px;
}

body.dark-mode .security-card {
    background: #2d2d2d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.security-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

body.dark-mode .security-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: #efeae3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #c7944b;
    transition: all 0.5s ease;
}

body.dark-mode .security-icon {
    background: #3d3d3d;
}

.security-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: color 0.5s ease;
}

body.dark-mode .security-card h3 {
    color: #e0e0e0;
}

.security-card p {
    color: #5a6b7c;
    line-height: 1.6;
    transition: color 0.5s ease;
    white-space: normal;
}

body.dark-mode .security-card p {
    color: #b0b0b0;
}

@keyframes security-move {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background-color: #EFEAE3;
    transition: background-color 0.5s ease;
    overflow: hidden;
}

body.dark-mode .steps-section {
    background-color: #1e1e1e;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.steps-header {
    text-align: center;
    margin-bottom: 60px;
}

.steps-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    transition: color 0.5s ease;
}

body.dark-mode .steps-header h2 {
    color: #e0e0e0;
}

.steps-header p {
    font-size: 1.2rem;
    color: #5a6b7c;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    transition: color 0.5s ease;
}

body.dark-mode .steps-header p {
    color: #b0b0b0;
}

.steps {
    display: flex;
    white-space: nowrap;
    animation: steps-move 10s linear infinite;
    padding: 20px 0;
}

.steps:hover {
    animation-play-state: paused;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 0 0 auto;
    width: 280px;
    margin: 0 15px;
    counter-increment: step-counter;
}

body.dark-mode .step-card {
    background: #2d2d2d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

body.dark-mode .step-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #c7944b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(199, 148, 75, 0.3);
}

.step-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 15px;
    transition: color 0.5s ease;
}

body.dark-mode .step-card h3 {
    color: #e0e0e0;
}

.step-card p {
    color: #5a6b7c;
    line-height: 1.6;
    transition: color 0.5s ease;
    white-space: normal;
}

body.dark-mode .step-card p {
    color: #b0b0b0;
}

@keyframes steps-move {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 30px;
    transition: background-color 0.5s ease;
}

body.dark-mode footer {
    background-color: #1a2530;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    color: #c7944b;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #c7944b;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #c7944b;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c7944b;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e0e0;
}

.footer-contact i {
    color: #c7944b;
}

.footer-newsletter p {
    margin-bottom: 20px;
    color: #e0e0e0;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: #b0b0b0;
}

.newsletter-form button {
    padding: 12px 20px;
    background: #c7944b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #b5833d;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #c7944b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(199, 148, 75, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #b5833d;
    transform: translateY(-3px);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2c3e50;
    cursor: pointer;
}

body.dark-mode .mobile-menu-btn {
    color: #e0e0e0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    #left h3 {
        margin-top: 100px;
        font-size: 2.2vw;
    }
    
    #left p {
        font-size: 1.6vw;
    }
    
    #right img {
        height: 500px;
        width: 500px;
    }
}

@media (max-width: 992px) {
    #center {
        flex-direction: column;
        height: auto;
        padding-bottom: 50px;
    }
    
    #left {
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
    
    #left h3 {
        width: 100%;
        margin-left: 0;
        margin-top: 50px;
        font-size: 2.5rem;
    }
    
    #left p {
        width: 80%;
        margin: 20px auto;
        font-size: 1.2rem;
    }
    
    #air {
        margin-left: 0;
        justify-content: center;
    }
    
    #right {
        width: 100%;
        text-align: center;
    }
    
    #right img {
        margin-left: 0;
        height: 400px;
        width: 400px;
    }
    
    .header h1 {
        margin-left: 0;
        text-align: center;
    }
    
    .header p {
        margin-left: 0;
        text-align: center;
    }
    
    .services-container {
        width: 95%;
        padding: 20px;
    }
    
    .security-features,
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 20px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    #nav-part-2 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #EFEAE3;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    body.dark-mode #nav-part-2 {
        background: #2d2d2d;
    }
    
    #nav-part-2.active {
        right: 0;
    }
    
    .theme-switch-wrapper {
        margin-left: 0;
    }
    
    #left h3 {
        font-size: 2rem;
    }
    
    #left p {
        font-size: 1rem;
        width: 90%;
    }
    
    #right img {
        height: 300px;
        width: 300px;
    }
    
    .stats-container {
        gap: 50px;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .security-features,
    .steps {
        animation: none;
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        white-space: normal;
    }
    
    .security-card,
    .step-card {
        width: auto;
        margin: 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    #left h3 {
        font-size: 1.8rem;
    }
    
    #right img {
        height: 250px;
        width: 250px;
    }
    
    .stats-container {
        gap: 30px;
    }
    
    .stat-card {
        min-width: 140px;
    }
    
    .value {
        font-size: 24px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .security-header h2,
    .steps-header h2 {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Animation for elements on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
