/* ===== VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #0062cc;
    --primary-rgb: 0, 98, 204;
    --secondary-color: #004a9f;
    --accent-color: #00bfff;
    --dark-color: #121212;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --gray-color: #6c757d;
    --light-gray-color: #adb5bd;
    --success-color: #28a745;
    --text-color: #121212;

    /* Fonts */
    --body-font: 'Poppins', sans-serif;

    /* Transitions */
    --transition: all 0.3s ease-in-out;

    /* Shadows */
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
    /* 10px = 1rem */
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    transition: var(--transition);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
}

.section-title {
    font-size: 3.6rem;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    color: var(--dark-color);
}

.section-title.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1rem;
    width: 6rem;
    height: 0.3rem;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.section-description {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 5rem;
    opacity: 0;
    transform: translateY(20px);
    color: var(--gray-color);
}

.section-description.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.cta-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: var(--light-color);
    padding: 1rem 0;
    box-shadow: var(--box-shadow);
}

.navbar.scrolled .nav-menu a {
    color: var(--dark-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.1rem;
}

.navbar.scrolled .logo {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 3rem;
}

.nav-menu a {
    color: white;
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 0;
    height: 0.2rem;
    background-color: white;
    transition: var(--transition);
}

.navbar.scrolled .nav-menu a::after {
    background-color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 2.5rem;
    height: 0.3rem;
    margin: 0.5rem 0;
    background-color: white;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background-color: var(--dark-color);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #111a33 0%, #1a237e 100%);
    color: white;
    overflow: hidden;
    padding-top: 8rem;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 98, 204, 0.3), transparent 60%);
    z-index: -1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.shape-1 {
    width: 50rem;
    height: 50rem;
    top: -25rem;
    right: -15rem;
    animation: floatShape 20s infinite alternate;
}

.shape-2 {
    width: 30rem;
    height: 30rem;
    bottom: -15rem;
    left: -10rem;
    animation: floatShape 15s infinite alternate-reverse;
}

.shape-3 {
    width: 20rem;
    height: 20rem;
    top: 40%;
    left: 10%;
    animation: floatShape 18s infinite alternate;
}

.shape-4 {
    width: 15rem;
    height: 15rem;
    bottom: 20%;
    right: 15%;
    animation: floatShape 12s infinite alternate-reverse;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(20px, 20px) rotate(10deg);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-right: 2rem;
}

.hero-tagline {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    padding: 0.8rem 1.6rem;
    border-radius: 3rem;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.6s forwards;
}

.hero-title {
    font-size: 5.6rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.highlight {
    color: var(--accent-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    height: 8px;
    width: 100%;
    background-color: rgba(0, 191, 255, 0.2);
    z-index: -1;
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 3.5rem;
    opacity: 0.9;
    max-width: 55rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.secondary-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: var(--transition);
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s 0.4s forwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.6rem;
}

.feature-item span {
    font-weight: 500;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.digital-globe {
    position: relative;
    width: 100%;
    height: 45rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-container {
    position: relative;
    width: 30rem;
    height: 30rem;
    animation: floatGlobe 6s ease-in-out infinite;
}

@keyframes floatGlobe {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.globe-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-1 {
    width: 100%;
    height: 100%;
    animation: rotateCircle 20s linear infinite;
}

.circle-2 {
    width: 80%;
    height: 80%;
    animation: rotateCircle 15s linear infinite reverse;
}

.circle-3 {
    width: 60%;
    height: 60%;
    animation: rotateCircle 10s linear infinite;
}

@keyframes rotateCircle {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.globe-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--accent-color);
    background: rgba(0, 191, 255, 0.1);
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 2rem rgba(0, 191, 255, 0.5);
}

.globe-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.dot {
    position: absolute;
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 0 1rem rgba(0, 191, 255, 0.3);
    animation: pulseDot 3s infinite;
}

.dot i {
    color: white;
    transition: color 0.3s ease;
}

.dot:hover i {
    color: var(--accent-color);
}

.dot-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
    background-color: rgba(59, 89, 152, 0.2);
}

.dot-2 {
    top: 25%;
    right: 0;
    animation-delay: 0.6s;
    background-color: rgba(193, 53, 132, 0.2);
}

.dot-3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 1.2s;
    background-color: rgba(29, 161, 242, 0.2);
}

.dot-4 {
    bottom: 10%;
    right: 25%;
    animation-delay: 1.8s;
    background-color: rgba(0, 119, 181, 0.2);
}

.dot-5 {
    top: 60%;
    right: 15%;
    animation-delay: 2.4s;
    background-color: rgba(0, 0, 0, 0.2);
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 191, 255, 0.5);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(0, 191, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 191, 255, 0);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design for hero section */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 4.8rem;
    }

    .globe-container {
        width: 25rem;
        height: 25rem;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 55%;
    }

    /* Navbar mobile styles */
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: var(--light-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .nav-menu a {
        color: var(--dark-color);
    }

    .nav-menu a::after {
        background-color: var(--primary-color);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 2rem 0;
    }

    /* Hero section mobile styles */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        order: 2;
    }

    .hero-visual {
        order: 1;
        height: 32rem;
    }

    .digital-globe {
        height: 32rem;
    }

    .hero-title {
        font-size: 4.2rem;
    }

    .hero p {
        margin: 0 auto 3.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .globe-container {
        width: 20rem;
        height: 20rem;
    }

    /* Other mobile styles */
    .trust-item,
    .stat-item {
        width: 100%;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 5rem;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 50%;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--light-color);
    position: relative;
    z-index: 5;
}

.trust-elements {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 5rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    width: 30%;
    opacity: 0;
    transform: translateY(20px);
}

.trust-item.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.trust-item i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.trust-item h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: #f9f9f9;
    position: relative;
    z-index: 5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.service-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    background-color: rgba(0, 98, 204, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.service-card p {
    margin-bottom: 2.5rem;
    color: var(--gray-color);
    font-size: 1.6rem;
}

.service-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: rgba(0, 98, 204, 0.1);
    color: var(--primary-color);
    border-radius: 5rem;
    font-weight: 600;
    transition: var(--transition);
}

.service-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ===== WHY US SECTION ===== */
.why-us {
    background-color: var(--dark-color);
    padding: 4rem 0;
    color: var(--light-color);
    position: relative;
    z-index: 5;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--light-color);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-text {
    font-size: 1.6rem;
    color: var(--light-color);
}

/* Value Cards and Approach Section */
.value-container {
    margin-bottom: 4rem;
}

.approach-container {
    margin-bottom: 3rem;
}

.values-title,
.approach-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.4rem;
    color: var(--light-color);
}

.why-us .section-title {
    color: var(--light-color);
}

.why-us .section-title::after {
    background-color: var(--accent-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.value-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    color: var(--light-color);
}

.value-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.value-icon {
    background-color: rgba(0, 191, 255, 0.2);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1.5rem;
    font-size: 1.5rem;
}

.value-content h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--light-color);
}

.value-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    line-height: 1.6;
}

.approach-steps {
    margin-top: 3rem;
}

.approach-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    color: var(--light-color);
}

.approach-step.animated {
    opacity: 1;
    transform: translateY(0);
}

.approach-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.step-number {
    background-color: var(--accent-color);
    color: var(--dark-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--light-color);
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    line-height: 1.6;
}

.why-cta {
    text-align: center;
    margin-top: 2rem;
}

.why-cta .btn-primary,
.why-us .cta-btn {
    padding: 1.2rem 3rem;
    font-size: 1.6rem;
    background-color: var(--accent-color);
}

.why-cta .btn-primary:hover,
.why-us .cta-btn:hover {
    background-color: #00a6e6;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* ===== DETAILED SERVICE DESCRIPTIONS ===== */
.service-details {
    margin-top: 6rem;
    margin-bottom: 4rem;
}

.details-title {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
}

.details-title:after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 0.3rem;
    background-color: var(--accent-color);
}

.details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.detail-item {
    background-color: white;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    opacity: 0;
    transform: translateY(20px);
}

.detail-item.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.detail-icon {
    flex: 0 0 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
}

.detail-icon i {
    font-size: 3rem;
}

.detail-content {
    flex: 1;
    padding: 2.5rem;
}

.detail-content h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.detail-content p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

.detail-content ul {
    list-style: none;
}

.detail-content ul li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--dark-color);
}

.detail-content ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
}

.cta-container {
    text-align: center;
    margin: 4rem 0 2rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--light-color);
    position: relative;
    z-index: 10;
    padding: 8rem 0;
    margin-top: 2rem;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact .section-title {
    margin-bottom: 5rem;
    text-align: center;
    color: var(--text-color);
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.contact-info {
    width: 45%;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
    flex-direction: column;
    align-content: center;
}

.contact-info.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--white-color);
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.contact-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-item a {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-item p {
    color: var(--gray-color);
    font-size: 1.6rem;
    line-height: 1.6;
}

.contact-form {
    width: 50%;
    opacity: 1;
    transform: translateY(0);
    background-color: var(--white-color);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-form.animated {
    opacity: 1;
    transform: translateY(0);
}

.form-group {
    margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-family: var(--body-font);
    font-size: 1.6rem;
    transition: var(--transition);
    background-color: var(--white-color);
    color: var(--text-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
}

.contact-form textarea {
    height: 15rem;
    resize: none;
}

.security-note {
    margin-bottom: 2rem;
    color: var(--gray-color);
    font-size: 1.4rem;
}

.security-note i {
    margin-right: 0.5rem;
}

.submit-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Success message styling */
.success-message {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.success-message i {
    font-size: 2rem;
    margin-right: 1rem;
}

/* Responsive styles for contact section */
@media screen and (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .contact-info {
        margin-bottom: 3rem;
    }
}

/* Form validation shake animation */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.shake {
    animation: shake 0.6s;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #121212;
    color: white;
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.footer p {
    margin-bottom: 2rem;
    opacity: 0.7;
    font-size: 1.6rem;
}

.footer-email a {
    color: var(--accent-color);
    font-size: 1.8rem;
}

.footer-email a:hover {
    text-decoration: underline;
    color: var(--high-contrast-accent);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
    html {
        font-size: 60%;
    }

    .trust-item,
    .stat-item {
        width: 45%;
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 50%;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive styles for Values and Approach */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .approach-step {
        flex-direction: column;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .value-icon {
        margin-bottom: 1rem;
    }

    .value-card {
        flex-direction: column;
    }

    .value-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Responsive design for service details */
@media screen and (max-width: 768px) {
    .details-container {
        grid-template-columns: 1fr;
    }

    .detail-item {
        flex-direction: column;
    }

    .detail-icon {
        flex: 0 0 6rem;
        width: 100%;
    }
}