:root {
    --font-primary: 'Poppins';
    --font-secondary: 'Poppins';
    --primary-dark: black;
    --primary-light: black;
    --accent: #f26431;
    --white: #ffffff;
    --off-black: black;
    --cc-transition-speed: 0.3s;
    --cc-footer-color: rgba(7, 6, 6, 0.8);
}

@import url('https://fonts.cdnfonts.com/css/poppins');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

html {
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
}

code, pre {
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
}

body {
    position: relative;
    background-size: 100% auto;
    background-repeat: repeat-y;
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    overflow-x: hidden;
    min-height: 100vh;
    z-index: -2;
}

body::before {
    content: '';

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}
.decorative-circle {
    position: fixed;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    filter: blur(50px);
}


.circle-2 {
    width: 25vw;
    height: 25vw;
    bottom: -10%;
    right: -5%;
    background: linear-gradient(-60deg, 
        rgba(0,176,255,0.12) 0%, 
        rgba(25,118,210,0.08) 100%);
    transform: rotate(15deg);
}

.circle-3 {
    width: 25vw;
    height: 25vw;
    top: -15%;
    right: 20%;
    background: linear-gradient(45deg, 
        rgba(255,87,34,0.1) 0%, 
        rgba(255,152,0,0.08) 100%);
    transform: rotate(30deg);
}

.cc-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.cc-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.2), transparent 60%),
                radial-gradient(circle at bottom left, rgba(var(--accent-rgb), 0.1), transparent 60%);
    pointer-events: none;
}

.cc-header {
    width: 100%;
    padding: 1rem 0;
    position: relative;
    background: transparent;
    
}

.cc-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 4rem;
}

.cc-nav__logo {
    flex-shrink: 0;
    z-index: 2;
}
d
.cc-nav__logo a {
    display: block;
    transition: opacity var(--cc-transition-speed) ease;
}

.cc-nav__logo a:hover {
    opacity: 0.8;
}

.cc-nav__logo img {
    height: 45px;
    width: auto;
   
}

.cc-nav__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    z-index: 2;
}


.cc-nav__link {
    
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color var(--cc-transition-speed) ease;
}

.cc-nav__link:hover {
    color: #333;
}

.cc-nav__language {
    position: relative;
}

.cc-nav__language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
    transition: color 0.3s ease;
}



.cc-nav__language-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.cc-nav__language:hover .cc-nav__language-arrow {
    transform: rotate(180deg);
}

.cc-nav__language-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    min-width: 120px;
    transition: all 0.3s ease;
    transform: translateY(-10px);
}

.cc-nav__language:hover .cc-nav__language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



.cc-nav__language-option {
    display: block;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-align: left;
}

.cc-nav__language-option:hover {
    background: #f5f5f5;
    color: var(--primary-dark);
}



.cc-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: -1;
}

.cc-hero {
    z-index: -1;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    
    border-radius: 10px;
    overflow: hidden;
    
}

.cc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255,255,255,1) 0%, 
        rgba(255,255,255,1) 15%, 
        rgba(255,255,255,0) 50%, 
        rgba(255,255,255,0.2) 75%,
        rgba(255,255,255,0) 100%);
    z-index: -3;
}

.cc-hero__content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.cc-hero__subtitle {
    color: var(--primary-dark);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cc-hero__title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.cc-hero__title-highlight {
    color: var(--primary-light);
    position: relative;
    display: inline-block;
    padding: 0 8px;
    transition: all 0.3s ease;
}

.cc-hero__title-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, 
        rgba(17, 39, 75, 0.1) 0%,
        rgba(17, 39, 75, 0.15) 50%,
        rgba(17, 39, 75, 0.1) 100%);
    transform: skew(-12deg);
    z-index: -1;
    border-radius: 4px;
}

.cc-hero__title-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-light);
    transform: skew(-12deg);
    opacity: 0.7;
}

.cc-hero__text {
    color: #666;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
   
    margin-left: auto;
    margin-right: auto;
}

.cc-hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.cc-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cc-button--outline {
    background: transparent;
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
}

.cc-button--outline:hover {
    background: rgba(0,0,0,0.05);
}

.cc-button--solid {
    background: var(--primary-dark);
    color: white;
    border: none;
    font-weight: 600;
}

.cc-button--solid:hover {
    
    transform: translateY(-2px);
}

.cc-button--solid .arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.cc-button--solid:hover .arrow {
    transform: translateX(4px);
}

.cc-testimonials__header {
    margin-bottom: 3rem;
    color: #333;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.cc-testimonials {
    background: black;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    width: 100%;
}

.partners-section,
.companies-section {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    position: relative;
    
}

.partners-section {
    border-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent) 1;
    border-top: 1px solid;
}

.companies-section {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
    gap: 2rem;
}

.companies-section .cc-testimonials__logos {
    display: flex;
    flex-wrap: nowrap;
    gap: 4rem;
    align-items: center;
    width: 100%;
    padding: 2rem;
}

.companies-section .cc-testimonials__logo {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.companies-section .cc-testimonials__logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.companies-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.2) 50%, 
        rgba(255,255,255,0) 100%);
    top: 0;
}

.companies-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.2) 50%, 
        rgba(255,255,255,0) 100%);
    bottom: 0;
}


.companies-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
  
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.1), 
        rgba(255,255,255,0.05), 
        rgba(255,255,255,0.1));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.companies-grid .cc-testimonials__logos {
    display: flex;
    gap: max(3rem, 3vw);
    justify-content: flex-start;
    width: 100%;
}

.companies-grid .cc-testimonials__logo {
    width: max(200px, 16vw) !important;
    height: max(160px, 12vw) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    margin: 0;
    background: none;
}

.companies-grid .cc-testimonials__logo img {
    
   
    object-fit: contain !important;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

@media screen and (min-width: 1920px) {
    .companies-grid .cc-testimonials__logo {
        width: max(240px, 20vw) !important;
        height: max(180px, 15vw) !important;
    }
    
    .companies-grid {
        padding-left: max(6rem, 5vw);
    }
}

.companies-text {
    text-align: right;
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    color: white;
    padding: 1rem 2rem;
    position: relative;
}

.companies-text h2 {
    text-align: right;
    font-size: max(4rem, 3.5vw);
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
    background: linear-gradient(45deg, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    white-space: pre-line;
    text-shadow: 0 0 10px rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.companies-text h2::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, 
        rgba(255,255,255,0.1) 0%, 
        rgba(255,255,255,0) 70%);
    top: -50px;
    left: -50px;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 8s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(1); opacity: 0.3; }
}

.companies-text h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
    opacity: 0.2;
}

.partners-text,
.companies-text {
    color: white;
    padding: 1rem 2rem;
    position: relative;
    display: flex;
   
}

.partners-text {
    text-align: left;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 2rem;
    position: relative;
}

.partners-text h2 {
    font-size: max(4rem, 4vw);
    font-weight: 700;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    background: linear-gradient(45deg, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    white-space: pre-line;
    text-shadow: 0 0 10px rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.cc-testimonials__logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: max(2rem, 2vw);
    align-items: center;
    justify-items: center;
    width: 100%;
    padding: max(2rem, 2vw);
}

.cc-testimonials__logo {
    width: max(120px, 10vw);
    height: max(50px, 3.5vw);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(0.5rem, 0.5vw);
    position: relative;
}

.cc-testimonials__logo img {
    width: auto !important;
    height: auto !important;
    
    max-height: 85% !important;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

/* Specific adjustments for partner logos */
.partners-section .cc-testimonials__logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: max(2rem, 2vw);
}

@media screen and (min-width: 1920px) {
    .cc-testimonials__logo {
        width: max(120px, 9vw);
        height: max(50px, 3.5vw);
    }
}

/* Companies grid specific styles */
.companies-grid {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    backdrop-filter: blur(10px);
    
}

.companies-grid .cc-testimonials__logos {
    display: flex;
    gap: max(2rem, 2vw);
    justify-content: space-between;
    width: 100%;
}

.companies-grid .cc-testimonials__logo {
    width: max(215px, 15vw) !important;
    height: max(200px, 12vw) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin: 0;
}

.companies-top, 
.companies-bottom {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
}

.companies-section .cc-testimonials__logo {
    width: 200px;
    height: 160px;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
}


/* Make text horizontal for the second section */
.companies-text h2 br {
    display: none;
}

/* Decorative elements */
.partners-text h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 20px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #fff, transparent);
    opacity: 0.3;
}

.partners-text h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
    opacity: 0.2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partners-section,
    .companies-section {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 2rem 1rem;
    }
    
    .partners-text h2 {
        font-size: 3rem;
    }
    
    .companies-text h2 {
        font-size: 2rem;
    }
    
    .cc-testimonials__logo {
        width: 70%;
    }
}

@media (max-width: 1200px) {
    .custom-footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .custom-footer {
        padding: 2rem 0 0;
    }

    .custom-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }

    .custom-footer-bottom {
        margin-top: 2rem;
    }

    .footer-logo {
        height: 50px;
    }
}

@media (max-width: 968px) {
    .custom-timeline-container {
        padding: 1rem;
    }

    .custom-timeline-item {
        flex-direction: column;
    }
    
    .custom-timeline-image-block,
    .custom-timeline-content-block {
        width: 100%;
    }

    .custom-timeline-image-block {
        min-height: 300px;
    }

    .custom-timeline-content-block {
        padding: 2rem;
    }

    .custom-timeline-year-label {
        font-size: 2rem;
        padding: 0.8rem 1.5rem;
    }

    .custom-timeline-content-block h2 {
        font-size: 1.8rem;
    }

    .custom-timeline-navigation {
        padding: 0.5rem;
    }
}
.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: block;
}

.mobile-nav__header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.mobile-nav__logo {
    height: 40px;
}

.mobile-nav__logo img {
    height: 100%;
    width: auto;
}

.mobile-nav-toggle {
    border: none;
    background: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav__content {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    padding: 2rem;
    overflow-y: auto;
    overflow-x: hidden;
    transition: left 0.3s ease;
    z-index: 999;
}

.mobile-nav.active .mobile-nav__content {
    left: 0;
}

.mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mobile-nav__link {
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 0;
}

.mobile-nav__language {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #eee;
}

.mobile-nav__language-option {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.mobile-nav__language-option.active {
    background: #f5f5f5;
    color: var(--primary-dark);
    font-weight: 500;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .cc-wrapper {
        padding: 0 5%;
    }

    .cc-hero__title {
        font-size: 3rem;
    }
}

@media screen and (max-width: 1060px) {
    .cc-nav {
        display: none;
    }

    .cc-wrapper {
        padding-top: 50px;
        min-height: unset;
    }

    .cc-hero {
        margin: 0;
        padding: 0;
        background: white;
        border-radius: 0;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
    }

    .cc-hero::before {
        display: none;
    }

    .cc-hero__content {
        padding: 0;
        max-width: 100%;
        text-align: center;
        margin: 0;
        min-height: unset;
        justify-content: flex-start;
    }

    .cc-hero__buttons {
        justify-content: center;
        margin-bottom: 2rem;
    }
}

@media screen and (min-width: 1060px) {
    .mobile-nav {
        display: none;
    }
}

.cc-hero .cc-hero__mobile-visual {
    display: none;
}

@media screen and (max-width: 992px) {
    .cc-hero .cc-hero__mobile-visual {
        display: block;
    }
    
    .cc-hero .cc-hero__mobile-visual img {
        width: 750px;
        margin: 0 auto;
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .cc-hero .cc-hero__mobile-visual img {
        width: 650px;
    }
}

@media screen and (max-width: 576px) {
    .cc-hero .cc-hero__mobile-visual img {
        width: 410px;
        
    }
   
    .cc-hero__buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .cc-button {
        width: 100%;
    }
    .cc-wrapper {
        padding-top: 50px;
        min-height: unset;
    }

}

/* Partners Section */
.trusted-by {
    position: relative;
    z-index: 2;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    text-align: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.logo-container.partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partner-logo {
    height: 50px;
    width: auto;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* Footer Styles */
.custom-footer {
   
    z-index: 500;
    position: relative;
    background: rgb(245, 245, 247);
    color: white;
    padding: 4rem 0 0;
   
}

.custom-footer-logo {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-slogan {
    color: rgba(0, 0, 0, 0.9);
    font-size: 1.2rem;
    font-style: italic;
}

.custom-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.custom-footer-section h3 {
    color: black;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}


.custom-footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 2rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--cc-footer-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--cc-footer-color);
}

.footer-contact i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.footer-contact strong {
    color: var(--cc-footer-color);
    display: block;
    margin-bottom: 0.3rem;
}

.custom-footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.custom-footer-social a {
    color: var(--cc-footer-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.custom-footer-social a:hover {
    color: var(--accent);
    opacity: 1;
    transform: translateY(-3px);
}

.custom-footer-newsletter {
    margin-top: 2rem;
}

.custom-footer-newsletter h4 {
    color: var(--cc-footer-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.custom-footer-newsletter p {
    color: var(--cc-footer-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 4px;
}

.newsletter-form input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.footer-button {
    padding: 0.8rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.newsletter-form button {
    padding: 0.8rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.05) ;
}

.footer-button:hover {
    transform: scale(1.05) ;
}

.custom-footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem;
    text-align: center;
}

.footer-bottom-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--cc-footer-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

.custom-footer-bottom p {
    color: var(--cc-footer-color);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 1200px) {
    .custom-footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .custom-footer {
        padding: 2rem 0 0;
    }

    .custom-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }

    .custom-footer-bottom {
        margin-top: 2rem;
    }

    .footer-logo {
        height: 50px;
    }
}

@media (max-width: 968px) {
    .custom-timeline-container {
        padding: 1rem;
    }

    .custom-timeline-item {
        flex-direction: column;
    }
    
    .custom-timeline-image-block,
    .custom-timeline-content-block {
        width: 100%;
    }

    .custom-timeline-image-block {
        min-height: 300px;
    }

    .custom-timeline-content-block {
        padding: 2rem;
    }

    .custom-timeline-year-label {
        font-size: 2rem;
        padding: 0.8rem 1.5rem;
    }

    .custom-timeline-content-block h2 {
        font-size: 1.8rem;
    }

    .custom-timeline-navigation {
        padding: 0.5rem;
    }
}
/* Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}
/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    z-index: 999;
    padding-top: 80px;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

     
    .companies-mobile-slider .cc-testimonials__logo {
        flex: 0 0 auto;
        scroll-snap-align: center;
    }

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .companies-section {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .companies-text h2 {
        font-size: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .companies-grid {
        width: 100%;
        overflow: hidden;
    }

    .companies-grid .swiper-container {
        width: 100%;
        padding: 1rem;
    }

    .companies-grid .swiper-slide {
        width: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .companies-section .cc-testimonials__logo {
        width: 120px;
        height: 50px;
        margin: 0;
    }

    .companies-top,
    .companies-bottom {
        display: none;
    }

    .companies-mobile-slider {
        display: flex;
        width: 100%;
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding: 1rem;
    }

    .companies-mobile-slider .cc-testimonials__logo {
        flex: 0 0 auto;
        scroll-snap-align: center;
        width: 120px;
    }
}

/* Tablets and Mobile */
@media screen and (max-width: 1024px) {
    .partners-section {
        min-height: unset;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 2rem;
        overflow: hidden;
    }

    .partners-text {
        width: 100%;
        text-align: center;
        padding: 0 2rem;
    }

    .partners-text h2 {
        font-size: 2.8rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .cc-testimonials__logos {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        padding: 2rem;
        gap: 3rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
        align-items: center;
        grid-template-columns: unset;
    }

    .cc-testimonials__logos::-webkit-scrollbar {
        display: none;
    }

    .cc-testimonials__logo {
        flex: 0 0 auto;
        width: 250px;
        height: 100px;
        scroll-snap-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }

    .cc-testimonials__logo img {
        max-width: 80%;
        max-height: 80%;
        object-fit: contain;
    }
}

/* Mobile specific adjustments */
@media screen and (max-width: 768px) {
    .partners-text h2 {
        font-size: 2.2rem;
    }

    .cc-testimonials__logo {
        width: 200px;
        height: 80px;
    }
}

@media (max-width: 1024px) {
    .companies-section {
        flex-direction: column;
        padding: 2rem 0;
    }

    .companies-section .cc-testimonials__logos {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        padding: 1rem;
        gap: 3rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .companies-section .cc-testimonials__logos::-webkit-scrollbar {
        display: none;
    }

    .companies-section .cc-testimonials__logo {
        flex: 0 0 auto;
        width: 250px;
        height: 100px;
        scroll-snap-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .companies-section .cc-testimonials__logo img {
        max-width: 80%;
        max-height: 80%;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }
}

@media (max-width: 768px) {
    .companies-section .cc-testimonials__logo {
        width: 200px;
        height: 80px;
    }
}

@media (max-width: 1024px) {
    .companies-text {
        text-align: center;
        align-items: center;
        padding: 0 2rem;
    }

    .companies-text h2 {
        text-align: center;
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .companies-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 1054px) {
    .companies-section .cc-testimonials__logos {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        padding: 0;
        gap: 3rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .companies-section .cc-testimonials__logos::-webkit-scrollbar {
        display: none;
    }

    .companies-section .cc-testimonials__logo {
        flex: 0 0 auto;
        width: 250px;
        height: 100px;
        scroll-snap-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .companies-section .cc-testimonials__logo img {
        max-width: 80%;
        max-height: 80%;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }
}

@media (max-width: 768px) {
    .companies-section .cc-testimonials__logo {
        width: 200px;
        height: 80px;
    }
}
@keyframes logoReveal {
    0% {
        opacity: 0;
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: perspective(1000px) translateX(-100px) rotateX(45deg);
        filter: blur(10px);
    }
    60% {
        opacity: 0.8;
        transform: perspective(1000px) translateX(20px) rotateX(-10deg);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) translateX(0) rotateX(0);
        filter: blur(0);
    }
}

.cc-testimonials__logo {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity;
    opacity: 0;  /* Start hidden */
}

.cc-testimonials__logo.animate {
    animation: logoReveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.cc-testimonials__logo img {
    transform-style: preserve-3d;
    pointer-events: none;
}

.text-animate {
    opacity: 0;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity, filter;
}

.text-animate.animate {
    animation: textReveal 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.partners-text h2,
.companies-text h2 {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}
