/* header css */
.ccs_header {
    width: 100%;
    /* position: fixed;  */
    top: 0;
    left: 0;
    z-index: 1000;
    transition: transform 0.4s ease;
}

/* Top Bar with glass effect */
.ccs_header__topbar {
    background-color: rgba(0, 35, 102, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 0;
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 100;
    transition: all 0.3s ease; /* Added for smooth transition when hiding */
}

/* Hide topbar when header is sticky */
.ccs_header.sticky .ccs_header__topbar {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
}

.ccs_header__topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 117, 255, 0.1) 0%, rgba(255, 127, 0, 0.1) 100%);
    pointer-events: none;
}

.ccs_header__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.ccs_header__topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Wavy contact info */
.ccs_header__contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.ccs_header__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    color: #FFFFFF;
    padding: 2px 10px;
    border-radius: 20px;
}

.ccs_header__contact-item::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF7F00, transparent);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.ccs_header__contact-item:hover::before {
    transform: scaleX(1);
}

.ccs_header__contact-item:hover {
    transform: translateY(-3px);
    text-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.ccs_header__contact-item i {
    color: #FF7F00;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ccs_header__contact-item:hover i {
    transform: scale(1.2);
    color: #FFD700;
}

/* Floating social icons */
.ccs_header__social {
    display: flex;
    gap: 12px;
}

.ccs_header__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ccs_header__social-link:nth-child(1) {
    background-color: rgba(59, 89, 152, 0.8);
}

.ccs_header__social-link:nth-child(2) {
    background-color: rgba(29, 161, 242, 0.8);
}

.ccs_header__social-link:nth-child(3) {
    background-color: rgba(188, 42, 141, 0.8);
}

.ccs_header__social-link:nth-child(4) {
    background-color: rgba(0, 119, 181, 0.8);
}

.ccs_header__social-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
    top: -100%;
    left: -100%;
    transition: all 0.4s ease;
}

.ccs_header__social-link:hover::before {
    top: 0;
    left: 0;
}

.ccs_header__social-link:hover {
    transform: translateY(-3px) rotate(8deg);
    border-radius: 16px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.ccs_header__social-link i {
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Main Navigation with neon effect */
.ccs_header__main {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 90;
    transition: padding 0.3s ease, box-shadow 0.3s ease; /* Added for smooth transition */
}

/* Adjust main nav when sticky */
.ccs_header.sticky .ccs_header__main {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ccs_header__nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo with neon glow effect */
.ccs_header__logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #002366;
    text-decoration: none;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.ccs_header__logo-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #002366, #1A75FF, #002366);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.ccs_header__logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 8px rgba(26, 117, 255, 0.5);
}

/* Menu toggle with special design */
.ccs_header__menu-toggle {
    display: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 200;
    position: relative;
}

.ccs_header__menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #002366, #1A75FF);
    border-radius: 10px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.ccs_header__menu-toggle span:nth-child(1) {
    top: 5px;
}

.ccs_header__menu-toggle span:nth-child(2), .ccs_header__menu-toggle span:nth-child(3) {
    top: 14px;
}

.ccs_header__menu-toggle span:nth-child(4) {
    top: 23px;
}

.ccs_header__nav {
    display: flex;
    align-items: center;
}

/* Nav list with creative hover effects */
.ccs_header__nav-list {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.ccs_header__nav-item {
    position: relative;
    margin: 0 5px;
}

.ccs_header__nav-link {
    font-size: 16px;
    color: #212529;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    z-index: 1;
}

.ccs_header__nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(26, 117, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.ccs_header__nav-link:hover {
    color: #1A75FF;
}

.ccs_header__nav-link:hover::before {
    width: 200px;
    height: 200px;
}

.ccs_header__nav-link.active {
    color: #1A75FF;
}

.ccs_header__nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 3px;
    background: linear-gradient(90deg, #1A75FF, #FF7F00);
    border-radius: 10px;
}

/* Fancy authentication buttons */
.ccs_header__auth {
    display: flex;
    gap: 15px;
}

.ccs_header__auth-btn {
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ccs_header__login-btn {
    color: #1A75FF;
    background-color: rgba(26, 117, 255, 0.1);
    border: 1px solid #1A75FF;
}

.ccs_header__login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, #1A75FF, #5f9bff);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.ccs_header__login-btn:hover {
    color: #FFFFFF;
    box-shadow: 0 10px 15px rgba(26, 117, 255, 0.3);
    transform: translateY(-2px);
}

.ccs_header__login-btn:hover::before {
    width: 100%;
}

.ccs_header__signup-btn {
    color: #FFFFFF;
    background: linear-gradient(45deg, #FF7F00, #FF9933);
    border: none;
}

.ccs_header__signup-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #FF7F00, #FF5500);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.ccs_header__signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(255, 127, 0, 0.3);
    letter-spacing: 1.5px;
}

.ccs_header__signup-btn:hover::before {
    left: 0;
}

/* Beautiful animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes pulsate {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes rotateIn {
    from {
        transform: rotate(0deg) scale(0);
        opacity: 0;
    }
    to {
        transform: rotate(360deg) scale(1);
        opacity: 1;
    }
}

/* Glowing dots decoration */
.ccs_header__decoration-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(26, 117, 255, 0.5);
    box-shadow: 0 0 10px rgba(26, 117, 255, 0.8);
    z-index: 1;
    animation: pulsate 3s infinite;
}

.ccs_header__decoration-dot:nth-child(1) {
    top: 10px;
    left: 5%;
    animation-delay: 0.2s;
}

.ccs_header__decoration-dot:nth-child(2) {
    top: 20px;
    left: 15%;
    animation-delay: 0.5s;
}

.ccs_header__decoration-dot:nth-child(3) {
    top: 15px;
    left: 85%;
    animation-delay: 0.8s;
}

.ccs_header__decoration-dot:nth-child(4) {
    top: 25px;
    left: 95%;
    animation-delay: 1.1s;
}

/* Add padding to body for sticky header */
.content-wrapper {
    padding-top: 140px; /* Adjust based on your header height */
}

/* Responsive Styles with animations */
@media (max-width: 992px) {
    .ccs_header__nav-list {
        margin-right: 20px;
    }
    
    .ccs_header__nav-link {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .ccs_header__auth-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .content-wrapper {
        padding-top: 130px;
    }
}

@media (max-width: 768px) {
    .ccs_header__topbar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .ccs_header__contact-info {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .ccs_header__social {
        justify-content: center;
    }
    
    .ccs_header__menu-toggle {
        display: block;
    }
    
    .ccs_header__menu-toggle.active span:nth-child(1) {
        top: 14px;
        width: 0%;
        left: 50%;
    }
    
    .ccs_header__menu-toggle.active span:nth-child(2) {
        transform: rotate(45deg);
    }
    
    .ccs_header__menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
    }
    
    .ccs_header__menu-toggle.active span:nth-child(4) {
        top: 14px;
        width: 0%;
        left: 50%;
    }
    
    .ccs_header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 100;
        border-left: 1px solid rgba(26, 117, 255, 0.1);
    }
    
    .ccs_header__nav.active {
        right: 0;
    }
    
    .ccs_header__nav-list {
        flex-direction: column;
        margin-right: 0;
        margin-bottom: 30px;
        width: 100%;
    }
    
    .ccs_header__nav-item {
        width: 100%;
        margin: 0;
        text-align: center;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.3s ease;
    }
    
    .ccs_header__nav.active .ccs_header__nav-item {
        opacity: 1;
        transform: translateX(0);
    }
    
    .ccs_header__nav.active .ccs_header__nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .ccs_header__nav.active .ccs_header__nav-item:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .ccs_header__nav.active .ccs_header__nav-item:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .ccs_header__nav.active .ccs_header__nav-item:nth-child(4) {
        transition-delay: 0.4s;
    }
    
    .ccs_header__nav.active .ccs_header__nav-item:nth-child(5) {
        transition-delay: 0.5s;
    }
    
    .ccs_header__nav-link {
        width: 100%;
        padding: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .ccs_header__nav-link::before {
        display: none;
    }
    
    .ccs_header__nav-link.active::after {
        left: 30%;
        right: 30%;
    }
    
    .ccs_header__auth {
        flex-direction: column;
        width: 80%;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
        transition-delay: 0.6s;
    }
    
    .ccs_header__nav.active .ccs_header__auth {
        opacity: 1;
        transform: translateY(0);
    }
    
    .ccs_header__auth-btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .ccs_header__overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 99;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
    
    .ccs_header__overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .content-wrapper {
        padding-top: 150px;
    }
}

@media (max-width: 480px) {
    .ccs_header__contact-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .ccs_header__contact-item {
        font-size: 13px;
    }
    
    .ccs_header__logo {
        font-size: 1.5rem;
    }
    
    .ccs_header__nav {
        width: 250px;
    }
    
    .ccs_header__social {
        gap: 8px;
    }
    
    .ccs_header__social-link {
        width: 30px;
        height: 30px;
    }
    
    .content-wrapper {
        padding-top: 130px;
    }
}

/* Dummy content for demo */
.content-placeholder {
    padding: 30px;
    text-align: center;
    margin-bottom: 50px;
}

.content-placeholder h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #002366;
}

.content-placeholder p {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.dummy-section {
    height: 400px;
    background-color: rgba(26, 117, 255, 0.05);
    margin-bottom: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #002366;
    font-size: 1.5rem;
    font-weight: bold;
}

/* footer css */
.ccs_footer {
    position: relative;
    background-color: #002147;
    color: #FFFFFF;
    overflow: hidden;

}

/* Angled cut at the top */
.ccs_footer::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #002147;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* Animated diagonal lines in background */
.ccs_footer__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.03;
}

.ccs_footer__background::before,
.ccs_footer__background::after {
    content: '';
    position: absolute;
    width: 300%;
    height: 300%;
    top: -100%;
    left: -100%;
    background-image: 
        linear-gradient(45deg, #1A75FF 25%, transparent 25%),
        linear-gradient(-45deg, #1A75FF 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #1A75FF 75%),
        linear-gradient(-45deg, transparent 75%, #1A75FF 75%);
    background-size: 20px 20px;
    z-index: 0;
}

.ccs_footer__background::after {
    background-image: 
        linear-gradient(45deg, #FF7F00 25%, transparent 25%),
        linear-gradient(-45deg, #FF7F00 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #FF7F00 75%),
        linear-gradient(-45deg, transparent 75%, #FF7F00 75%);
    animation: scrollBackground 30s linear infinite;
    opacity: 0.6;
}

@keyframes scrollBackground {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(20px) translateY(20px);
    }
}

/* Container for footer content */
.ccs_footer__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 30px;
    position: relative;
    z-index: 1;
}

/* Hexagon logo container */
.ccs_footer__logo-container {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.ccs_footer__logo-hexagon {
    width: 120px;
    height: 120px;
    background-color: #fff;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.ccs_footer__logo-hexagon:hover {
    transform: rotate(45deg) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.ccs_footer__logo-text {
    transform: rotate(-45deg);
    font-size: 1.5rem;
    font-weight: 800;
    display: inline-block;
    background: linear-gradient(90deg, #002366, #1A75FF, #FF7F00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

/* Horizontal glow line */
.ccs_footer__glow-line {
    height: 2px;
    width: 80%;
    background: linear-gradient(90deg, transparent, #1A75FF, #FF7F00, transparent);
    margin: 0 auto 50px;
    position: relative;
}

.ccs_footer__glow-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 2px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8);
    animation: moveGlow 4s linear infinite;
}

@keyframes moveGlow {
    0% {
        left: 0%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Main content grid layout */
.ccs_footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* About section with company info */
.ccs_footer__about {
    position: relative;
}

.ccs_footer__title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    font-weight: 600;
    color: white;
}

.ccs_footer__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #1A75FF, #FF7F00);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.ccs_footer__about:hover .ccs_footer__title::after {
    width: 70px;
}

.ccs_footer__description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

/* Navigation with hover effects */
.ccs_footer__nav {
    position: relative;
}

.ccs_footer__nav-list {
    list-style: none;
}

.ccs_footer__nav-item {
    margin-bottom: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.ccs_footer__nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    display: inline-block;
}

.ccs_footer__nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #1A75FF;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ccs_footer__nav-link:hover {
    color: #FFFFFF;
    padding-left: 30px;
}

.ccs_footer__nav-link:hover::before {
    background-color: #FF7F00;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 10px rgba(255, 127, 0, 0.5);
}

/* Contact icons with 3D effect */
.ccs_footer__contact {
    position: relative;
}

.ccs_footer__contact-list {
    list-style: none;
}

.ccs_footer__contact-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.ccs_footer__contact-icon {
    width: 40px;
    height: 40px;
    background: #1A75FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.ccs_footer__contact-item:hover .ccs_footer__contact-icon {
    transform: rotate(0deg);
    background: #FF7F00;
    box-shadow: 0 10px 20px rgba(255, 127, 0, 0.3);
}

.ccs_footer__contact-icon i {
    transform: rotate(-45deg);
    color: #FFFFFF;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ccs_footer__contact-item:hover .ccs_footer__contact-icon i {
    transform: rotate(0deg) scale(1.2);
}

.ccs_footer__contact-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.ccs_footer__contact-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ccs_footer__contact-link:hover {
    color: #FFFFFF;
}

/* Newsletter with dynamic background */
.ccs_footer__newsletter {
    position: relative;
    padding: 30px;
    background: rgba(26, 117, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.ccs_footer__newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 117, 255, 0.1) 0%, rgba(26, 117, 255, 0) 60%);
    animation: pulse 15s infinite alternate;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(5%, 5%);
    }
}

.ccs_footer__form {
    display: flex;
    margin-top: 20px;
    position: relative;
}

.ccs_footer__input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ccs_footer__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.ccs_footer__input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.ccs_footer__button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #1A75FF, #FF7F00);
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ccs_footer__button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 5px 15px rgba(26, 117, 255, 0.3);
}

.ccs_footer__button i {
    font-size: 16px;
}

/* Social media links with hover effects */
.ccs_footer__social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.ccs_footer__social-link {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: rotate(45deg);
}

.ccs_footer__social-link i {
    transform: rotate(-45deg);
    transition: all 0.3s ease;
    font-size: 18px;
}

.ccs_footer__social-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A75FF, #FF7F00);
    top: 100%;
    left: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.ccs_footer__social-link:hover {
    transform: rotate(0deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.ccs_footer__social-link:hover i {
    transform: rotate(0deg) scale(1.2);
}

.ccs_footer__social-link:hover::before {
    top: 0;
}

/* Bottom copyright section */
.ccs_footer__bottom {
    text-align: center;
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.ccs_footer__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 30px;
}

.ccs_footer__copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 10px;
}

.ccs_footer__credit {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-style: italic;
}

.ccs_footer__highlight {
    background: linear-gradient(90deg, #1A75FF, #FF7F00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ccs_footer__credit:hover .ccs_footer__highlight {
    letter-spacing: 1px;
}

/* Floating particles */
.ccs_footer__particle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 1;
}

.ccs_footer__particle:nth-child(1) {
    width: 15px;
    height: 15px;
    top: 10%;
    left: 10%;
    animation: floatParticle 20s infinite linear;
}

.ccs_footer__particle:nth-child(2) {
    width: 10px;
    height: 10px;
    top: 40%;
    left: 80%;
    animation: floatParticle 25s infinite linear;
}

.ccs_footer__particle:nth-child(3) {
    width: 8px;
    height: 8px;
    top: 70%;
    left: 20%;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(100px, 50px);
    }
    50% {
        transform: translate(50px, 100px);
    }
    75% {
        transform: translate(-50px, 50px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Responsive media queries */
@media (max-width: 992px) {
    .ccs_footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ccs_footer {
        margin-top: 70px;
    }
    
    .ccs_footer::before {
        top: -50px;
        height: 50px;
    }
    
    .ccs_footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ccs_footer__logo-hexagon {
        width: 100px;
        height: 100px;
    }
    
    .ccs_footer__title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .ccs_footer__container {
        padding: 50px 15px 20px;
    }
    
    .ccs_footer__logo-hexagon {
        width: 80px;
        height: 80px;
    }
    
    .ccs_footer__logo-text {
        font-size: 1.2rem;
    }
    
    .ccs_footer__form {
        flex-direction: column;
    }
    
    .ccs_footer__input {
        margin-bottom: 15px;
        border-radius: 8px;
    }
    
    .ccs_footer__button {
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        transform: none;
        padding: 12px;
        height: auto;
    }
    
    .ccs_footer__newsletter {
        padding: 20px;
    }
    
    .ccs_footer__social {
        flex-wrap: wrap;
    }
}

/* registration area css */

.ccs_registration {
    display: flex;

    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%231A75FF' fill-opacity='0.05'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"), linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background-attachment: fixed;
    padding: 30px;
    align-items: center;
    justify-content: center;
}

.ccs_registration_container {
    width: 100%;
    max-width: 1100px;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.ccs_registration_left {
    width: 40%;
    background: linear-gradient(135deg, #002366 0%, #1A75FF 100%);
    padding: 60px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    overflow: hidden;
}

.ccs_registration_left_blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 127, 0, 0.2);
    border-radius: 50%;
    filter: blur(60px);
    top: -100px;
    right: -100px;
    z-index: 0;
}

.ccs_registration_left_blob2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 127, 0, 0.15);
    border-radius: 50%;
    filter: blur(50px);
    bottom: -50px;
    left: -50px;
    z-index: 0;
}

.ccs_registration_left_content {
    position: relative;
    z-index: 2;
}

.ccs_registration_logo {
    margin-bottom: 40px;
}

.ccs_registration_logo svg {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.ccs_registration_tagline {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: white;
}

.ccs_registration_subtagline {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ccs_registration_features {
    margin-top: 40px;
}

.ccs_registration_feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.ccs_registration_feature_icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.ccs_registration_feature_text {
    font-size: 14px;
    font-weight: 500;
}

.ccs_registration_right {
    width: 60%;
    padding: 50px;
    position: relative;
}

.ccs_registration_right_header {
    margin-bottom: 40px;
}

.ccs_registration_right_title {
    font-size: 28px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.ccs_registration_right_title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1A75FF, #FF7F00);
    border-radius: 2px;
}

.ccs_registration_form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.ccs_registration_field {
    position: relative;
}

.ccs_registration_field.full {
    grid-column: span 2;
}

.ccs_registration_label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #212529;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ccs_registration_label .required {
    display: inline-flex;
    width: 8px;
    height: 8px;
    background: #FF7F00;
    border-radius: 50%;
    margin-left: 5px;
    position: relative;
    top: -8px;
}

.ccs_registration_input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-size: 15px;
    color: #212529;
    background-color: #f8f9fa;
}

.ccs_registration_input:focus {
    outline: none;
    border-color: #1A75FF;
    background: #fff;
    box-shadow: 0 5px 15px rgba(26, 117, 255, 0.1);
}

.ccs_registration_input_error {
    border-color: #ff3b30 !important;
    background-color: rgba(255, 59, 48, 0.05) !important;
}

.ccs_registration_input::placeholder {
    color: #adb5bd;
}

.ccs_registration_select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23495057' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
}

.ccs_registration_button {
    padding: 18px 30px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.ccs_registration_button_primary {
    background: linear-gradient(45deg, #1A75FF, #0056D2);
    color: white;
    box-shadow: 0 10px 20px -10px rgba(26, 117, 255, 0.5);
    width: 100%;
    letter-spacing: 1px;
}

.ccs_registration_button_primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -10px rgba(26, 117, 255, 0.6);
}

.ccs_registration_button_primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: left 0.7s ease;
}

.ccs_registration_button_primary:hover::before {
    left: 100%;
}

.ccs_registration_footer {
    margin-top: 30px;
    text-align: center;
}

.ccs_registration_footer p {
    color: #495057;
    font-size: 15px;
}

.ccs_registration_link {
    color: #1A75FF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.ccs_registration_link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #1A75FF;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.ccs_registration_link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Date field styling */
.ccs_registration_date_field {
    display: flex;
    gap: 10px;
    position: relative;
}

.ccs_registration_date_field input {
    flex: 1;
    text-align: center;
}

.ccs_registration_date_separator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: #adb5bd;
    pointer-events: none;
}

.ccs_registration_date_separator.first {
    left: calc(33.3% - 5px);
}

.ccs_registration_date_separator.second {
    left: calc(66.6% - 5px);
}

/* Animation */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ccs_registration_left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.ccs_registration_right {
    animation: slideInRight 0.8s ease-out forwards;
}

.ccs_registration_field {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.ccs_registration_field:nth-child(1) { animation-delay: 0.2s; }
.ccs_registration_field:nth-child(2) { animation-delay: 0.3s; }
.ccs_registration_field:nth-child(3) { animation-delay: 0.4s; }
.ccs_registration_field:nth-child(4) { animation-delay: 0.5s; }
.ccs_registration_field:nth-child(5) { animation-delay: 0.6s; }
.ccs_registration_field:nth-child(6) { animation-delay: 0.7s; }
.ccs_registration_field:nth-child(7) { animation-delay: 0.8s; }
.ccs_registration_field:nth-child(8) { animation-delay: 0.9s; }
.ccs_registration_field:nth-child(9) { animation-delay: 1s; }

/* Floating elements */
.ccs_registration_floating {
    position: absolute;
    border-radius: 50%;
    background: #FF7F00;
    z-index: 1;
    opacity: 0.6;
}

.ccs_registration_floating.dot1 {
    width: 10px;
    height: 10px;
    top: 20%;
    right: 10%;
    animation: float 4s ease-in-out infinite;
}

.ccs_registration_floating.dot2 {
    width: 20px;
    height: 20px;
    top: 60%;
    right: 5%;
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
}

.ccs_registration_floating.dot3 {
    width: 15px;
    height: 15px;
    bottom: 15%;
    right: 30%;
    animation: float 5s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .ccs_registration_container {
        flex-direction: column;
        max-width: 700px;
        min-height: 150vh;
    }

    .ccs_registration_left,
    .ccs_registration_right {
        width: 100%;
    }

    .ccs_registration_left {
        padding: 40px;
    }

    .ccs_registration_features {
        display: none;
    }
}

@media (max-width: 768px) {
    .ccs_registration {
        padding: 20px;
        min-height: 150vh;
    }

    .ccs_registration_form {
        grid-template-columns: 1fr;
    }

    .ccs_registration_field.full {
        grid-column: span 1;
    }

    .ccs_registration_right {
        padding: 30px 20px;
    }

    .ccs_registration_left {
        padding: 30px 20px;
    }

    .ccs_registration_tagline {
        font-size: 24px;
    }
    
    .ccs_registration_date_field {
        flex-direction: column;
        gap: 15px;
    }
    
    .ccs_registration_date_separator {
        display: none;
    }
    
    .ccs_registration_floating {
        display: none;
    }
}

/* banner area css */
.ccs_homebanner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
}

.ccs_homebanner_slider {
    position: relative;
    width: 300%;
    height: 100%;
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.ccs_homebanner_slide {
    position: relative;
    width: 33.33333%;
    height: 100%;
    overflow: hidden;
}

.ccs_homebanner_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.ccs_homebanner_slide:nth-child(1) .ccs_homebanner_background {
    background-image: linear-gradient(135deg, rgba(0, 35, 102, 0.85) 0%, rgba(26, 117, 255, 0.85) 100%), url("../banner/ccsnew_banner01.jpg");
}

.ccs_homebanner_slide:nth-child(2) .ccs_homebanner_background {
    background-image: linear-gradient(135deg, rgba(0, 35, 102, 0.85) 0%, rgba(26, 117, 255, 0.85) 100%), url("../banner/ccsnew_banner02.jpg");
}

.ccs_homebanner_slide:nth-child(3) .ccs_homebanner_background {
    background-image: linear-gradient(135deg, rgba(0, 35, 102, 0.85) 0%, rgba(26, 117, 255, 0.85) 100%), url("../banner/ccsnew_banner03.jpg");
}

.ccs_homebanner_content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    color: white;
    z-index: 2;
}

.ccs_homebanner_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeUp 1s forwards 0.3s;
    line-height: 1.2;
    color: white;
}

.ccs_homebanner_subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeUp 1s forwards 0.6s;
    color: whitesmoke;
}

.ccs_homebanner_description {
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 2rem;
    line-height: 1.6;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s forwards 0.9s;
    color: wheat;
}

.ccs_homebanner_button {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    background: #FF7F00;
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s forwards 1.2s;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 127, 0, 0.3);
}

.ccs_homebanner_button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 127, 0, 0.4);
}

.ccs_homebanner_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.ccs_homebanner_button:hover::before {
    left: 100%;
}

.ccs_homebanner_button span {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.ccs_homebanner_button:hover span {
    transform: translateX(5px);
}

.ccs_homebanner_controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.ccs_homebanner_dots {
    display: flex;
    gap: 10px;
}

.ccs_homebanner_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ccs_homebanner_dot.active {
    background-color: #FF7F00;
    transform: scale(1.2);
}

.ccs_homebanner_arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    padding: 0 30px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.ccs_homebanner_arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ccs_homebanner_arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.ccs_homebanner_arrow svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Decorative Elements */
.ccs_homebanner_shape {
    position: absolute;
    z-index: 1;
}

.ccs_homebanner_shape_1 {
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

.ccs_homebanner_shape_2 {
    bottom: 15%;
    left: 15%;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 10s infinite ease-in-out reverse;
}

.ccs_homebanner_shape_3 {
    bottom: 30%;
    right: 20%;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 127, 0, 0.2);
    border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%;
    animation: float 6s infinite ease-in-out 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .ccs_homebanner_title {
        font-size: 2.8rem;
    }
    
    .ccs_homebanner_subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .ccs_homebanner_title {
        font-size: 2.4rem;
    }
    
    .ccs_homebanner_subtitle {
        font-size: 1.4rem;
    }
    
    .ccs_homebanner_description {
        font-size: 1rem;
    }
    
    .ccs_homebanner_shape_1,
    .ccs_homebanner_shape_2 {
        display: none;
    }
}

@media (max-width: 768px) {
    .ccs_homebanner {
        height: 80vh;
    }
    
    .ccs_homebanner_content {
        padding: 0 5%;
        text-align: center;
    }
    
    .ccs_homebanner_title {
        font-size: 2rem;
    }
    
    .ccs_homebanner_subtitle {
        font-size: 1.2rem;
    }
    
    .ccs_homebanner_description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .ccs_homebanner_arrows {
        display: none;
    }
    
    .ccs_homebanner_shape_3 {
        display: none;
    }
}

@media (max-width: 576px) {
    .ccs_homebanner {
        min-height: 500px;
    }
    
    .ccs_homebanner_title {
        font-size: 1.8rem;
    }
    
    .ccs_homebanner_subtitle {
        font-size: 1.1rem;
    }
    
    .ccs_homebanner_description {
        font-size: 0.9rem;
    }
    
    .ccs_homebanner_button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* about area css */
.ccs_abs {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: #f8f9fa;
}

.ccs_abs_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Decorative elements */
.ccs_abs_blob {
    position: absolute;
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    background: linear-gradient(135deg, rgba(26, 117, 255, 0.05) 0%, rgba(255, 127, 0, 0.05) 100%);
    z-index: 1;
}

.ccs_abs_blob_1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation: morph 15s linear infinite;
}

.ccs_abs_blob_2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    animation: morph 18s linear infinite reverse;
}

@keyframes morph {
    0% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    }
    25% {
        border-radius: 55% 45% 30% 70% / 55% 30% 70% 45%;
    }
    50% {
        border-radius: 30% 70% 55% 45% / 30% 55% 45% 70%;
    }
    75% {
        border-radius: 70% 30% 45% 55% / 70% 45% 55% 30%;
    }
    100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    }
}

.ccs_abs_dots {
    position: absolute;
    width: 150px;
    height: 150px;
    z-index: 1;
    opacity: 0.4;
}

.ccs_abs_dots_1 {
    top: 10%;
    left: 5%;
    background-image: radial-gradient(#1A75FF 1px, transparent 1px);
    background-size: 15px 15px;
}

.ccs_abs_dots_2 {
    bottom: 10%;
    right: 5%;
    background-image: radial-gradient(#FF7F00 1px, transparent 1px);
    background-size: 15px 15px;
}

/* Left side with images */
.ccs_abs_images {
    width: 50%;
    position: relative;
    min-height: 500px;
}

.ccs_abs_image_frame {
    position: absolute;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease-in-out;
}

.ccs_abs_image_frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.ccs_abs_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.8s ease;
}

.ccs_abs_image_frame:hover .ccs_abs_image {
    transform: scale(1);
}

.ccs_abs_frame_main {
    width: 300px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.ccs_abs_frame_inner {
    width: 260px;
    height: 360px;
    top: 20px;
    left: 20px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.ccs_abs_frame_top {
    width: 180px;
    height: 180px;
    top: 0;
    right: 0;
    transform: translate(40%, -20%) rotate(10deg);
    z-index: 2;
    border-radius: 20px;
    background-color: #1A75FF;
    box-shadow: 0 15px 30px rgba(26, 117, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.ccs_abs_frame_bottom {
    width: 220px;
    height: 160px;
    bottom: 0;
    left: 0;
    transform: translate(-20%, 30%) rotate(-5deg);
    z-index: 1;
    border-radius: 20px;
    background-color: #FF7F00;
    box-shadow: 0 15px 30px rgba(255, 127, 0, 0.3);
    animation: float 8s ease-in-out infinite 1s reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(40%, -20%) rotate(10deg) translateY(0);
    }
    50% {
        transform: translate(40%, -20%) rotate(10deg) translateY(-20px);
    }
}

.ccs_abs_float_icon {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 4;
    background-color: white;
    animation: bounce 4s infinite ease-in-out;
}

.ccs_abs_float_icon_1 {
    width: 70px;
    height: 70px;
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.ccs_abs_float_icon_2 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    right: 5%;
    animation-delay: 1s;
}

.ccs_abs_float_icon_3 {
    width: 50px;
    height: 50px;
    top: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.ccs_abs_float_icon svg {
    width: 50%;
    height: 50%;
}

.ccs_abs_float_icon_1 svg {
    fill: #1A75FF;
}

.ccs_abs_float_icon_2 svg {
    fill: #FF7F00;
}

.ccs_abs_float_icon_3 svg {
    fill: #002366;
}

/* Right side content */
.ccs_abs_content {
    width: 50%;
    padding-left: 60px;
    position: relative;
}

.ccs_abs_subtitle {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1A75FF;
    margin-bottom: 15px;
    padding: 5px 15px;
    background: rgba(26, 117, 255, 0.1);
    border-radius: 50px;
    letter-spacing: 1px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.6s forwards 0.3s;
}

.ccs_abs_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #002366 0%, #1A75FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 25px;
    line-height: 1.2;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.6s forwards 0.6s;
}

.ccs_abs_content p {
    font-size: 1.05rem;
    color: #495057;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.6s forwards 0.9s;
}

.ccs_abs_content p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #1A75FF;
}

.ccs_abs_content p:nth-child(even)::before {
    background-color: #FF7F00;
}

.ccs_abs_content strong {
    color: #002366;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.ccs_abs_content strong::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(26, 117, 255, 0.1);
    z-index: -1;
    border-radius: 2px;
}

.ccs_abs_tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #002366;
    margin: 30px 0;
    padding-left: 20px;
    border-left: 4px solid #FF7F00;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.6s forwards 1.2s;
}

.ccs_abs_button_container {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.6s forwards 1.5s;
}

.ccs_abs_button {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: none;
    color: #1A75FF;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.ccs_abs_button_border {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #1A75FF, #FF7F00);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.ccs_abs_button:hover .ccs_abs_button_border {
    transform: scaleX(1);
}

.ccs_abs_button_icon {
    margin-left: 10px;
    background-color: #1A75FF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ccs_abs_button:hover .ccs_abs_button_icon {
    transform: translateX(5px);
    background-color: #FF7F00;
}

.ccs_abs_button_icon svg {
    width: 16px;
    height: 16px;
    fill: white;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .ccs_abs_title {
        font-size: 2.2rem;
    }
    
    .ccs_abs_frame_main {
        width: 280px;
        height: 380px;
    }
    
    .ccs_abs_frame_inner {
        width: 240px;
        height: 340px;
    }
    
    .ccs_abs_frame_top {
        width: 160px;
        height: 160px;
    }
    
    .ccs_abs_frame_bottom {
        width: 200px;
        height: 140px;
    }
}

@media (max-width: 992px) {
    .ccs_abs {
        padding: 80px 0;
    }
    
    .ccs_abs_container {
        flex-direction: column;
    }
    
    .ccs_abs_images {
        width: 100%;
        margin-bottom: 60px;
    }
    
    .ccs_abs_content {
        width: 100%;
        padding-left: 0;
    }
    
    .ccs_abs_blob_1 {
        right: -300px;
    }
    
    .ccs_abs_blob_2 {
        left: -300px;
    }
}

@media (max-width: 768px) {
    .ccs_abs {
        padding: 60px 0;
    }
    
    .ccs_abs_title {
        font-size: 2rem;
    }
    
    .ccs_abs_content p {
        font-size: 1rem;
    }
    
    .ccs_abs_frame_main {
        width: 260px;
        height: 360px;
    }
    
    .ccs_abs_frame_inner {
        width: 220px;
        height: 320px;
    }
    
    .ccs_abs_frame_top {
        width: 140px;
        height: 140px;
    }
    
    .ccs_abs_frame_bottom {
        width: 180px;
        height: 120px;
    }
    
    .ccs_abs_float_icon_1 {
        width: 60px;
        height: 60px;
    }
    
    .ccs_abs_float_icon_2 {
        width: 50px;
        height: 50px;
    }
    
    .ccs_abs_float_icon_3 {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .ccs_abs {
        padding: 50px 0;
    }
    
    .ccs_abs_images {
        min-height: 400px;
    }
    
    .ccs_abs_title {
        font-size: 1.8rem;
    }
    
    .ccs_abs_subtitle {
        font-size: 0.8rem;
    }
    
    .ccs_abs_tagline {
        font-size: 1.1rem;
    }
    
    .ccs_abs_content p {
        font-size: 0.95rem;
        padding-left: 15px;
    }
    
    .ccs_abs_button {
        font-size: 1rem;
    }
    
    .ccs_abs_frame_main {
        width: 240px;
        height: 320px;
    }
    
    .ccs_abs_frame_inner {
        width: 200px;
        height: 280px;
    }
    
    .ccs_abs_frame_top {
        width: 120px;
        height: 120px;
    }
    
    .ccs_abs_frame_bottom {
        width: 150px;
        height: 100px;
    }
}
/* why choose area css */
.ccs_whychooseus {
    position: relative;
    padding: 120px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.ccs_whychooseus_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

/* Background elements */
.ccs_whychooseus_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.05;
}

.ccs_whychooseus_bg_grid {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#1A75FF 1px, transparent 1px), 
                      linear-gradient(90deg, #1A75FF 1px, transparent 1px);
    background-size: 30px 30px;
}

.ccs_whychooseus_bg_circles {
    position: absolute;
    border-radius: 50%;
}

.ccs_whychooseus_bg_circle1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 117, 255, 0.2) 0%, rgba(26, 117, 255, 0) 70%);
    top: -200px;
    right: -200px;
}

.ccs_whychooseus_bg_circle2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 127, 0, 0.15) 0%, rgba(255, 127, 0, 0) 70%);
    bottom: -100px;
    left: -100px;
}

/* Header */
.ccs_whychooseus_header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.ccs_whychooseus_subtitle {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1A75FF;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.ccs_whychooseus_subtitle::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #1A75FF, #FF7F00);
}

.ccs_whychooseus_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #002366;
    margin-bottom: 20px;
    position: relative;

}

.ccs_whychooseus_title_highlight {
    position: relative;
    z-index: 1;
    color: #1A75FF;
}

.ccs_whychooseus_title_highlight::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 127, 0, 0.2);
    z-index: -1;
}

.ccs_whychooseus_description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #495057;
}

/* Features grid */
.ccs_whychooseus_features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    perspective: 1000px;
}

.ccs_whychooseus_feature {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transform: translateZ(0);
    display: flex;
    flex-direction: column;
}

.ccs_whychooseus_feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ccs_whychooseus_feature_number {
    position: absolute;
    right: 20px;
    top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(26, 117, 255, 0.07);
    line-height: 1;
}

.ccs_whychooseus_feature_icon {
    margin-bottom: 25px;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 117, 255, 0.1) 0%, rgba(26, 117, 255, 0.05) 100%);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.ccs_whychooseus_feature:hover .ccs_whychooseus_feature_icon {
    transform: scale(1.1);
}

.ccs_whychooseus_feature_icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 1px solid rgba(26, 117, 255, 0.2);
    z-index: -1;
}

.ccs_whychooseus_feature_icon svg {
    width: 35px;
    height: 35px;
    fill: #1A75FF;
}

.ccs_whychooseus_feature_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #002366;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.ccs_whychooseus_feature_text {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 25px;
    flex-grow: 1;
}

.ccs_whychooseus_feature_link {
    display: inline-flex;
    align-items: center;
    color: #1A75FF;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.ccs_whychooseus_feature_link:hover {
    color: #FF7F00;
}

.ccs_whychooseus_feature_link_icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.ccs_whychooseus_feature_link:hover .ccs_whychooseus_feature_link_icon {
    transform: translateX(5px);
}

/* Feature colorful variants */
.ccs_whychooseus_feature:nth-child(2) .ccs_whychooseus_feature_icon {
    background: linear-gradient(135deg, rgba(255, 127, 0, 0.1) 0%, rgba(255, 127, 0, 0.05) 100%);
}

.ccs_whychooseus_feature:nth-child(2) .ccs_whychooseus_feature_icon::before {
    border-color: rgba(255, 127, 0, 0.2);
}

.ccs_whychooseus_feature:nth-child(2) .ccs_whychooseus_feature_icon svg {
    fill: #FF7F00;
}

.ccs_whychooseus_feature:nth-child(2) .ccs_whychooseus_feature_number {
    color: rgba(255, 127, 0, 0.07);
}

.ccs_whychooseus_feature:nth-child(3) .ccs_whychooseus_feature_icon {
    background: linear-gradient(135deg, rgba(0, 35, 102, 0.1) 0%, rgba(0, 35, 102, 0.05) 100%);
}

.ccs_whychooseus_feature:nth-child(3) .ccs_whychooseus_feature_icon::before {
    border-color: rgba(0, 35, 102, 0.2);
}

.ccs_whychooseus_feature:nth-child(3) .ccs_whychooseus_feature_icon svg {
    fill: #002366;
}

.ccs_whychooseus_feature:nth-child(3) .ccs_whychooseus_feature_number {
    color: rgba(0, 35, 102, 0.07);
}

.ccs_whychooseus_feature:nth-child(4) .ccs_whychooseus_feature_icon {
    background: linear-gradient(135deg, rgba(26, 117, 255, 0.1) 0%, rgba(26, 117, 255, 0.05) 100%);
}

.ccs_whychooseus_feature:nth-child(4) .ccs_whychooseus_feature_icon::before {
    border-color: rgba(26, 117, 255, 0.2);
}

.ccs_whychooseus_feature:nth-child(4) .ccs_whychooseus_feature_icon svg {
    fill: #1A75FF;
}

.ccs_whychooseus_feature:nth-child(5) .ccs_whychooseus_feature_icon {
    background: linear-gradient(135deg, rgba(255, 127, 0, 0.1) 0%, rgba(255, 127, 0, 0.05) 100%);
}

.ccs_whychooseus_feature:nth-child(5) .ccs_whychooseus_feature_icon::before {
    border-color: rgba(255, 127, 0, 0.2);
}

.ccs_whychooseus_feature:nth-child(5) .ccs_whychooseus_feature_icon svg {
    fill: #FF7F00;
}

.ccs_whychooseus_feature:nth-child(5) .ccs_whychooseus_feature_number {
    color: rgba(255, 127, 0, 0.07);
}

.ccs_whychooseus_feature:nth-child(6) .ccs_whychooseus_feature_icon {
    background: linear-gradient(135deg, rgba(0, 35, 102, 0.1) 0%, rgba(0, 35, 102, 0.05) 100%);
}

.ccs_whychooseus_feature:nth-child(6) .ccs_whychooseus_feature_icon::before {
    border-color: rgba(0, 35, 102, 0.2);
}

.ccs_whychooseus_feature:nth-child(6) .ccs_whychooseus_feature_icon svg {
    fill: #002366;
}

.ccs_whychooseus_feature:nth-child(6) .ccs_whychooseus_feature_number {
    color: rgba(0, 35, 102, 0.07);
}

/* Bottom CTA */
.ccs_whychooseus_cta {
    margin-top: 80px;
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, #002366 0%, #1A75FF 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 35, 102, 0.2);
}

.ccs_whychooseus_cta_shape {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.ccs_whychooseus_cta_shape_1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation: rotate 30s linear infinite;
}

.ccs_whychooseus_cta_shape_2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation: rotate 20s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.ccs_whychooseus_cta_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    color: white;
}

.ccs_whychooseus_cta_text {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
    color: whitesmoke;
}

.ccs_whychooseus_cta_button {
    display: inline-flex;
    align-items: center;
    padding: 16px 35px;
    background: #FF7F00;
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 127, 0, 0.3);
}

.ccs_whychooseus_cta_button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 127, 0, 0.4);
}

.ccs_whychooseus_cta_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.ccs_whychooseus_cta_button:hover::before {
    left: 100%;
}

.ccs_whychooseus_cta_button_icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.ccs_whychooseus_cta_button:hover .ccs_whychooseus_cta_button_icon {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .ccs_whychooseus_title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .ccs_whychooseus {
        padding: 80px 0;
    }
    
    .ccs_whychooseus_features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ccs_whychooseus_cta {
        padding: 50px 40px;
    }
    
    .ccs_whychooseus_cta_title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .ccs_whychooseus {
        padding: 60px 0;
    }
    
    .ccs_whychooseus_title {
        font-size: 2rem;
    }
    
    .ccs_whychooseus_description {
        font-size: 1rem;
    }
    
    .ccs_whychooseus_features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ccs_whychooseus_feature {
        padding: 30px 25px;
    }
    
    .ccs_whychooseus_cta {
        margin-top: 60px;
        padding: 40px 30px;
    }
    
    .ccs_whychooseus_cta_title {
        font-size: 1.6rem;
    }
    
    .ccs_whychooseus_cta_text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .ccs_whychooseus {
        padding: 50px 0;
    }
    
    .ccs_whychooseus_title {
        font-size: 1.8rem;
    }
    
    .ccs_whychooseus_subtitle {
        font-size: 0.9rem;
    }
    
    .ccs_whychooseus_cta_button {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
}

/* progress area css */
.ccs_companyprogress {
    position: relative;
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.ccs_companyprogress_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Background elements */
.ccs_companyprogress_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ccs_companyprogress_bg_shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 117, 255, 0.05) 0%, rgba(255, 127, 0, 0.05) 100%);
    opacity: 0.5;
}

.ccs_companyprogress_bg_shape1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -150px;
}

.ccs_companyprogress_bg_shape2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
}

/* Left side with stats */
.ccs_companyprogress_stats {
    width: 50%;
    padding-right: 50px;
}

.ccs_companyprogress_subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1A75FF;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

.ccs_companyprogress_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #002366;
    margin-bottom: 40px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards 0.2s;
}

.ccs_companyprogress_stat_items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ccs_companyprogress_stat_item {
    display: flex;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
}

.ccs_companyprogress_stat_item:nth-child(1) {
    animation: fadeInUp 0.6s forwards 0.4s;
}

.ccs_companyprogress_stat_item:nth-child(2) {
    animation: fadeInUp 0.6s forwards 0.6s;
}

.ccs_companyprogress_stat_number_container {
    position: relative;
    margin-right: 20px;
}

.ccs_companyprogress_stat_number {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #002366;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.ccs_companyprogress_stat_number_bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    z-index: 0;
}

.ccs_companyprogress_stat_item:nth-child(1) .ccs_companyprogress_stat_number_bg {
    background: linear-gradient(135deg, rgba(26, 117, 255, 0.15) 0%, rgba(26, 117, 255, 0) 70%);
    animation: pulse 2s infinite alternate;
}

.ccs_companyprogress_stat_item:nth-child(2) .ccs_companyprogress_stat_number_bg {
    background: linear-gradient(135deg, rgba(255, 127, 0, 0.15) 0%, rgba(255, 127, 0, 0) 70%);
    animation: pulse 2s infinite alternate 1s;
}

.ccs_companyprogress_stat_text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #495057;
    align-self: center;
}

/* Right side with images */
.ccs_companyprogress_visual {
    width: 50%;
    height: 500px;
    position: relative;
}

.ccs_companyprogress_image_container {
    position: absolute;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.ccs_companyprogress_image_container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.ccs_companyprogress_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.ccs_companyprogress_image_container:hover .ccs_companyprogress_image {
    transform: scale(1.05);
}

.ccs_companyprogress_image_container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.ccs_companyprogress_image_1 {
    width: 300px;
    height: 400px;
    top: 0;
    left: 0;
    z-index: 3;
}

.ccs_companyprogress_image_1::after {
    background: linear-gradient(135deg, rgba(26, 117, 255, 0.3) 0%, rgba(26, 117, 255, 0) 100%);
}

.ccs_companyprogress_image_2 {
    width: 250px;
    height: 200px;
    bottom: 30px;
    right: 0;
    z-index: 2;
}

.ccs_companyprogress_image_2::after {
    background: linear-gradient(135deg, rgba(255, 127, 0, 0.3) 0%, rgba(255, 127, 0, 0) 100%);
}

.ccs_companyprogress_image_float {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.ccs_companyprogress_image_float_1 {
    width: 100px;
    height: 100px;
    background-color: rgba(26, 117, 255, 0.2);
    top: 50px;
    right: 50px;
    animation: float 6s ease-in-out infinite;
}

.ccs_companyprogress_image_float_2 {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 127, 0, 0.2);
    bottom: 150px;
    left: 70px;
    animation: float 8s ease-in-out infinite 1s;
}

/* Counter animation */
.ccs_companyprogress_counter {
    display: inline-block;
    position: relative;
}

.ccs_companyprogress_counter::after {
    content: '%';
    position: relative;
    font-size: 0.6em;
    top: -15px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .ccs_companyprogress_title {
        font-size: 2.2rem;
    }
    
    .ccs_companyprogress_stat_number {
        font-size: 3.5rem;
    }
    
    .ccs_companyprogress_image_1 {
        width: 250px;
        height: 350px;
    }
    
    .ccs_companyprogress_image_2 {
        width: 200px;
        height: 160px;
    }
}

@media (max-width: 992px) {
    .ccs_companyprogress {
        padding: 80px 0;
    }
    
    .ccs_companyprogress_container {
        flex-direction: column;
    }
    
    .ccs_companyprogress_stats {
        width: 100%;
        padding-right: 0;
        margin-bottom: 60px;
        text-align: center;
    }
    
    .ccs_companyprogress_visual {
        width: 100%;
        height: 450px;
    }
    
    .ccs_companyprogress_stat_items {
        align-items: center;
    }
    
    .ccs_companyprogress_image_1 {
        left: 50%;
        transform: translateX(-130%);
    }
    
    .ccs_companyprogress_image_2 {
        right: 50%;
        transform: translateX(130%);
    }
    
    .ccs_companyprogress_image_container:hover {
        transform: translateY(-10px) scale(1.02);
    }
}

@media (max-width: 768px) {
    .ccs_companyprogress {
        padding: 60px 0;
    }
    
    .ccs_companyprogress_title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .ccs_companyprogress_stat_items {
        gap: 30px;
    }
    
    .ccs_companyprogress_stat_number {
        font-size: 3rem;
    }
    
    .ccs_companyprogress_stat_text {
        font-size: 1.1rem;
    }
    
    .ccs_companyprogress_visual {
        height: 400px;
    }
    
    .ccs_companyprogress_image_1 {
        width: 220px;
        height: 300px;
        transform: translateX(-110%);
    }
    
    .ccs_companyprogress_image_2 {
        width: 180px;
        height: 140px;
        transform: translateX(110%);
    }
}

@media (max-width: 576px) {
    .ccs_companyprogress {
        padding: 50px 0;
    }
    
    .ccs_companyprogress_title {
        font-size: 1.8rem;
    }
    
    .ccs_companyprogress_subtitle {
        font-size: 0.9rem;
    }
    
    .ccs_companyprogress_stat_number {
        font-size: 2.5rem;
    }
    
    .ccs_companyprogress_stat_text {
        font-size: 1rem;
    }
    
    .ccs_companyprogress_visual {
        height: 350px;
    }
    
    .ccs_companyprogress_stat_item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .ccs_companyprogress_stat_number_container {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .ccs_companyprogress_image_1 {
        width: 180px;
        height: 250px;
        transform: translateX(-100%);
    }
    
    .ccs_companyprogress_image_2 {
        width: 150px;
        height: 120px;
        transform: translateX(100%);
    }
    
    .ccs_companyprogress_image_float {
        display: none;
    }
}
/* contact area css */
.ccs_conpart {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.ccs_conpart_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://source.unsplash.com/random/1920x1080/?finance,office');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.3);
    z-index: 1;
}

.ccs_conpart_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 35, 102, 0.85) 0%, rgba(26, 117, 255, 0.85) 100%);
    z-index: 2;
}

.ccs_conpart_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Left content */
.ccs_conpart_content {
    width: 50%;
    color: white;
    padding-right: 50px;
}

.ccs_conpart_subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #FF7F00;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-left: 15px;
}

.ccs_conpart_subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 20px;
    background-color: #FF7F00;
    border-radius: 3px;
}

.ccs_conpart_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: white;
}

.ccs_conpart_description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: whitesmoke;
}

/* Contact info */
.ccs_conpart_info {
    margin-bottom: 40px;
}

.ccs_conpart_info_item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.ccs_conpart_info_icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.ccs_conpart_info_item:hover .ccs_conpart_info_icon {
    background-color: #FF7F00;
    transform: translateY(-5px);
}

.ccs_conpart_info_icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.ccs_conpart_info_text {
    font-size: 1.05rem;
}

/* Social links */
.ccs_conpart_social {
    display: flex;
    gap: 15px;
}

.ccs_conpart_social_link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.ccs_conpart_social_link:hover {
    background-color: #FF7F00;
    transform: translateY(-5px);
}

.ccs_conpart_social_link svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* Right form */
.ccs_conpart_form_container {
    width: 50%;
}

.ccs_conpart_form {
    background-color: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.ccs_conpart_form_bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: rgba(26, 117, 255, 0.05);
    border-radius: 0 0 0 100%;
    z-index: -1;
}

.ccs_conpart_form_bg2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 127, 0, 0.05);
    border-radius: 0 100% 0 0;
    z-index: -1;
}

.ccs_conpart_form_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #002366;
    margin-bottom: 30px;
    text-align: center;
}

.ccs_conpart_form_group {
    margin-bottom: 25px;
}

.ccs_conpart_form_label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 8px;
}

.ccs_conpart_form_input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.ccs_conpart_form_input:focus {
    outline: none;
    border-color: #1A75FF;
    box-shadow: 0 0 0 3px rgba(26, 117, 255, 0.1);
    background-color: white;
}

.ccs_conpart_form_textarea {
    height: 120px;
    resize: none;
}

.ccs_conpart_form_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(45deg, #1A75FF, #0056D2);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.ccs_conpart_form_button:hover {
    box-shadow: 0 10px 20px rgba(26, 117, 255, 0.3);
    transform: translateY(-3px);
}

.ccs_conpart_form_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.ccs_conpart_form_button:hover::before {
    left: 100%;
}

.ccs_conpart_form_button_icon {
    margin-left: 10px;
}

/* Animation for elements */
.ccs_conpart_anim {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.ccs_conpart_anim.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating elements */
.ccs_conpart_float {
    position: absolute;
    border-radius: 50%;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.ccs_conpart_float_1 {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.ccs_conpart_float_2 {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 127, 0, 0.2);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.ccs_conpart_float_3 {
    width: 80px;
    height: 80px;
    background-color: rgba(26, 117, 255, 0.1);
    bottom: 15%;
    left: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .ccs_conpart_title {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .ccs_conpart {
        padding: 80px 0;
    }
    
    .ccs_conpart_container {
        flex-direction: column;
    }
    
    .ccs_conpart_content {
        width: 100%;
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .ccs_conpart_subtitle {
        padding-left: 0;
    }
    
    .ccs_conpart_subtitle::before {
        display: none;
    }
    
    .ccs_conpart_info_item {
        justify-content: center;
    }
    
    .ccs_conpart_social {
        justify-content: center;
    }
    
    .ccs_conpart_form_container {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .ccs_conpart {
        padding: 60px 0;
    }
    
    .ccs_conpart_title {
        font-size: 2rem;
    }
    
    .ccs_conpart_description {
        font-size: 1rem;
    }
    
    .ccs_conpart_form {
        padding: 30px;
    }
    
    .ccs_conpart_float {
        display: none;
    }
}

@media (max-width: 576px) {
    .ccs_conpart {
        padding: 50px 0;
    }
    
    .ccs_conpart_title {
        font-size: 1.8rem;
    }
    
    .ccs_conpart_subtitle {
        font-size: 0.9rem;
    }
    
    .ccs_conpart_info_icon {
        width: 40px;
        height: 40px;
    }
    
    .ccs_conpart_info_text {
        font-size: 0.95rem;
    }
    
    .ccs_conpart_form_button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
/* home get in touch css */
.conpass {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.conpass_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Background elements */
.conpass_bg_shape {
    position: absolute;
    z-index: 1;
}

.conpass_bg_shape1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(26, 117, 255, 0.1) 0%, rgba(26, 117, 255, 0) 70%);
    border-radius: 62% 38% 46% 54% / 60% 51% 49% 40%;
    top: -200px;
    right: -100px;
    transform: rotate(-15deg);
    animation: morphShape 15s infinite alternate;
}

.conpass_bg_shape2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 127, 0, 0.08) 0%, rgba(255, 127, 0, 0) 70%);
    border-radius: 58% 42% 38% 62% / 42% 55% 45% 58%;
    bottom: -150px;
    left: -100px;
    transform: rotate(20deg);
    animation: morphShape 18s infinite alternate-reverse;
}

@keyframes morphShape {
    0% {
        border-radius: 62% 38% 46% 54% / 60% 51% 49% 40%;
    }
    25% {
        border-radius: 45% 55% 67% 33% / 53% 42% 58% 47%;
    }
    50% {
        border-radius: 35% 65% 58% 42% / 46% 35% 65% 54%;
    }
    75% {
        border-radius: 52% 48% 32% 68% / 38% 52% 48% 62%;
    }
    100% {
        border-radius: 62% 38% 46% 54% / 60% 51% 49% 40%;
    }
}

.conpass_content {
    width: 45%;
    position: relative;
}

.conpass_content_wrapper {
    position: relative;
    z-index: 2;
}

.conpass_subtitle {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1A75FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding: 8px 15px;
    background-color: rgba(26, 117, 255, 0.1);
    border-radius: 30px;
}

.conpass_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #002366;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
}

.conpass_title_highlight {
    position: relative;
    display: inline-block;
    color: #1A75FF;
}

.conpass_title_highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 127, 0, 0.3);
    bottom: 5px;
    left: 0;
    z-index: -1;
}

.conpass_description {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 35px;
}

.conpass_button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #1A75FF, #0056D2);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(26, 117, 255, 0.2);
}

.conpass_button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 117, 255, 0.3);
}

.conpass_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.conpass_button:hover::before {
    left: 100%;
}

.conpass_button_icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.conpass_button:hover .conpass_button_icon {
    transform: translateX(5px);
}

.conpass_shape_accent {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.conpass_shape_accent1 {
    width: 60px;
    height: 60px;
    background-color: rgba(26, 117, 255, 0.1);
    bottom: 40px;
    left: -30px;
    animation: float 6s ease-in-out infinite;
}

.conpass_shape_accent2 {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 127, 0, 0.15);
    top: 40px;
    right: -15px;
    animation: float 7s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.conpass_image {
    width: 50%;
    position: relative;
}

.conpass_image_frame {
    position: relative;
    background-color: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 30px 60px rgba(0, 35, 102, 0.1);
    transform: rotate(-3deg);
    transition: all 0.5s ease;
}

.conpass_image_frame:hover {
    transform: rotate(0deg) translateY(-10px);
}

.conpass_image_inner {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 480px;
    background: linear-gradient(135deg, #1A75FF 0%, #002366 100%);
}

.conpass_image_inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: multiply;
    opacity: 0.9;
    transition: transform 0.5s ease;
}

.conpass_image_frame:hover .conpass_image_inner img {
    transform: scale(1.05);
}

.conpass_decor_dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#FF7F00 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.3;
    border-radius: 50%;
}

.conpass_decor_dots1 {
    top: -30px;
    right: -20px;
    z-index: 3;
}

.conpass_decor_dots2 {
    bottom: -30px;
    left: -20px;
    z-index: 3;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .conpass_title {
        font-size: 36px;
    }
    
    .conpass_image_inner {
        height: 420px;
    }
}

@media (max-width: 992px) {
    .conpass {
        padding: 80px 0;
    }
    
    .conpass_container {
        flex-direction: column;
    }
    
    .conpass_content, 
    .conpass_image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .conpass_content {
        margin-bottom: 60px;
        text-align: center;
    }
    
    .conpass_shape_accent {
        display: none;
    }
    
    .conpass_image_inner {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .conpass {
        padding: 60px 0;
    }
    
    .conpass_title {
        font-size: 28px;
    }
    
    .conpass_description {
        font-size: 15px;
    }
    
    .conpass_button {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .conpass_image_inner {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .conpass {
        padding: 50px 0;
    }
    
    .conpass_subtitle {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .conpass_title {
        font-size: 24px;
    }
    
    .conpass_title_highlight::after {
        height: 6px;
        bottom: 3px;
    }
    
    .conpass_description {
        margin-bottom: 25px;
    }
    
    .conpass_button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .conpass_image_inner {
        height: 320px;
    }
    
    .conpass_decor_dots {
        width: 70px;
        height: 70px;
        background-size: 10px 10px;
    }
}
/* testrimonils area css */
.ccs_testimonials {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.ccs_testimonials_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Background elements */
.ccs_testimonials_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ccs_testimonials_bg_shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.ccs_testimonials_bg_shape1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 117, 255, 0.1) 0%, rgba(26, 117, 255, 0) 70%);
    top: -150px;
    right: -100px;
}

.ccs_testimonials_bg_shape2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 127, 0, 0.1) 0%, rgba(255, 127, 0, 0) 70%);
    bottom: -100px;
    left: -50px;
}

.ccs_testimonials_pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231A75FF' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

/* Header */
.ccs_testimonials_header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.ccs_testimonials_subtitle {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1A75FF;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 15px;
    background-color: rgba(26, 117, 255, 0.1);
    border-radius: 30px;
}

.ccs_testimonials_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #002366;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ccs_testimonials_description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #495057;
}

/* Testimonial slider */
.ccs_testimonials_slider_container {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
    padding: 20px;
}

.ccs_testimonials_slider {
    display: flex;
    transition: transform 0.5s ease;
}

.ccs_testimonials_slide {
    min-width: calc(33.333% - 30px);
    margin: 0 15px;
    transition: all 0.3s ease;
}

.ccs_testimonials_card {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ccs_testimonials_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ccs_testimonials_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #1A75FF, #0056D2);
    z-index: 1;
}

.ccs_testimonials_quote {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 4rem;
    line-height: 1;
    font-family: 'Georgia', serif;
    color: rgba(26, 117, 255, 0.1);
}

.ccs_testimonials_text {
    font-size: 1.05rem;
    color: #495057;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.ccs_testimonials_client {
    display: flex;
    align-items: center;
}

.ccs_testimonials_client_image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid rgba(26, 117, 255, 0.1);
}

.ccs_testimonials_client_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ccs_testimonials_client_info {
    flex: 1;
}

.ccs_testimonials_client_name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #002366;
    margin-bottom: 5px;
}

.ccs_testimonials_client_position {
    font-size: 0.9rem;
    color: #6c757d;
}

.ccs_testimonials_rating {
    display: flex;
    margin-top: 5px;
}

.ccs_testimonials_star {
    color: #FF7F00;
    margin-right: 2px;
}

/* Controls */
.ccs_testimonials_controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.ccs_testimonials_arrows {
    display: flex;
    gap: 15px;
}

.ccs_testimonials_arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1A75FF;
}

.ccs_testimonials_arrow:hover {
    background-color: #1A75FF;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 117, 255, 0.2);
}

.ccs_testimonials_arrow svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.ccs_testimonials_dots {
    display: flex;
    gap: 10px;
    margin: 0 30px;
}

.ccs_testimonials_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ccs_testimonials_dot.active {
    background-color: #1A75FF;
    transform: scale(1.2);
}

/* Animation classes */
.ccs_testimonials_fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.ccs_testimonials_fade.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .ccs_testimonials_title {
        font-size: 2.2rem;
    }
    
    .ccs_testimonials_slide {
        min-width: calc(50% - 30px);
    }
}

@media (max-width: 992px) {
    .ccs_testimonials {
        padding: 80px 0;
    }
    
    .ccs_testimonials_description {
        font-size: 1rem;
    }
    
    .ccs_testimonials_card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .ccs_testimonials {
        padding: 60px 0;
    }
    
    .ccs_testimonials_title {
        font-size: 1.8rem;
    }
    
    .ccs_testimonials_slide {
        min-width: calc(100% - 30px);
    }
    
    .ccs_testimonials_text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .ccs_testimonials {
        padding: 50px 0;
    }
    
    .ccs_testimonials_subtitle {
        font-size: 0.9rem;
    }
    
    .ccs_testimonials_card {
        padding: 25px;
    }
    
    .ccs_testimonials_quote {
        font-size: 3rem;
        top: 20px;
        right: 20px;
    }
    
    .ccs_testimonials_client_image {
        width: 50px;
        height: 50px;
    }
    
    .ccs_testimonials_arrows {
        gap: 10px;
    }
    
    .ccs_testimonials_arrow {
        width: 40px;
        height: 40px;
    }
    
    .ccs_testimonials_dots {
        margin: 0 15px;
    }
}
/* breadcrumb area css */
.ccs_breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, #f8f9fa 0%, #ffffff 100%);
}

.ccs_breadcrumb_inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 300px;
}

/* Left Panel */
.ccs_breadcrumb_left {
    width: 60%;
    padding: 60px 0 60px 8%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ccs_breadcrumb_left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    z-index: -1;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
}

/* Right Panel */
.ccs_breadcrumb_right {
    width: 40%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1A75FF 0%, #0056D2 100%);
}

.ccs_breadcrumb_right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
}

/* Content Elements */
.ccs_breadcrumb_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #002366;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
}

.ccs_breadcrumb_title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #1A75FF, #FF7F00);
    border-radius: 2px;
}

.ccs_breadcrumb_path {
    display: flex;
    align-items: center;
    margin-top: 25px;
    position: relative;
    width: fit-content;
}

.ccs_breadcrumb_path::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
    z-index: 1;
}

.ccs_breadcrumb_item {
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 0 5px;
}

.ccs_breadcrumb_item:first-child {
    padding-left: 0;
}

.ccs_breadcrumb_link {
    color: #1A75FF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.ccs_breadcrumb_link:hover {
    color: #FF7F00;
}

.ccs_breadcrumb_current {
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 500;
    background: #ffffff;
    padding: 0 5px;
}

.ccs_breadcrumb_separator {
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 0 8px;
    color: #adb5bd;
}

/* Image Elements */
.ccs_breadcrumb_image {
    position: absolute;
    bottom: 0;
    right: 8%;
    height: 110%;
    z-index: 2;
    filter: drop-shadow(-5px 10px 15px rgba(0, 0, 0, 0.15));
}

/* Animation and Decorative Elements */
.ccs_breadcrumb_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(26, 117, 255, 0.1);
    border-radius: 50%;
    margin-right: 12px;
}

.ccs_breadcrumb_icon svg {
    width: 20px;
    height: 20px;
    fill: #1A75FF;
}

.ccs_breadcrumb_floating {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.ccs_breadcrumb_floating_1 {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    bottom: 20%;
    left: 10%;
}

.ccs_breadcrumb_floating_2 {
    width: 30px;
    height: 30px;
    background: rgba(255, 127, 0, 0.2);
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.ccs_breadcrumb_3d_effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
    z-index: 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Entrance animations */
.ccs_breadcrumb_animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.ccs_breadcrumb_animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* Business category tag */
.ccs_breadcrumb_tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 127, 0, 0.1);
    color: #FF7F00;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.ccs_breadcrumb_tag_icon {
    margin-right: 8px;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .ccs_breadcrumb_title {
        font-size: 2.2rem;
    }
    
    .ccs_breadcrumb_image {
        height: 105%;
        right: 5%;
    }
}

@media (max-width: 992px) {
    .ccs_breadcrumb_inner {
        flex-direction: column;
        min-height: auto;
    }
    
    .ccs_breadcrumb_left, 
    .ccs_breadcrumb_right {
        width: 100%;
    }
    
    .ccs_breadcrumb_left {
        padding: 60px 8%;
        order: 2;
    }
    
    .ccs_breadcrumb_left::before {
        clip-path: none;
    }
    
    .ccs_breadcrumb_right {
        min-height: 300px;
        order: 1;
    }
    
    .ccs_breadcrumb_image {
        height: 110%;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .ccs_breadcrumb_left {
        padding: 40px 8%;
    }
    
    .ccs_breadcrumb_title {
        font-size: 1.8rem;
    }
    
    .ccs_breadcrumb_right {
        min-height: 250px;
    }
    
    .ccs_breadcrumb_image {
        height: 100%;
    }
}

@media (max-width: 576px) {
    .ccs_breadcrumb_left {
        padding: 30px 5%;
    }
    
    .ccs_breadcrumb_title {
        font-size: 1.5rem;
    }
    
    .ccs_breadcrumb_right {
        min-height: 200px;
    }
    
    .ccs_breadcrumb_link, 
    .ccs_breadcrumb_current {
        font-size: 0.85rem;
    }
    
    .ccs_breadcrumb_icon {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }
    
    .ccs_breadcrumb_icon svg {
        width: 16px;
        height: 16px;
    }
    
    .ccs_breadcrumb_floating {
        display: none;
    }
}
/* mvv area css */
.ccs_mvv {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.ccs_mvv_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Background elements */
.ccs_mvv_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ccs_mvv_bg_shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.ccs_mvv_bg_shape1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 117, 255, 0.1) 0%, rgba(26, 117, 255, 0) 70%);
    top: -150px;
    right: -100px;
}

.ccs_mvv_bg_shape2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 127, 0, 0.1) 0%, rgba(255, 127, 0, 0) 70%);
    bottom: -100px;
    left: -50px;
}

/* Header */
.ccs_mvv_header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.ccs_mvv_subtitle {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1A75FF;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.ccs_mvv_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #002366;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.ccs_mvv_title_highlight {
    position: relative;
    z-index: 1;
}

.ccs_mvv_title_highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 127, 0, 0.2);
    z-index: -1;
}

.ccs_mvv_description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #495057;
}

/* Cards Grid */
.ccs_mvv_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    perspective: 1000px;
}

.ccs_mvv_card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transform-style: preserve-3d;
    transform: translateZ(0);
    transition: all 0.4s ease;
    height: 100%;
}

.ccs_mvv_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ccs_mvv_card_highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    z-index: 2;
}

.ccs_mvv_card:nth-child(1) .ccs_mvv_card_highlight {
    background: linear-gradient(90deg, #1A75FF, #0056D2);
}

.ccs_mvv_card:nth-child(2) .ccs_mvv_card_highlight {
    background: linear-gradient(90deg, #FF7F00, #CC6600);
}

.ccs_mvv_card:nth-child(3) .ccs_mvv_card_highlight {
    background: linear-gradient(90deg, #002366, #001233);
}

.ccs_mvv_card_inner {
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ccs_mvv_card_icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background-color: rgba(26, 117, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.ccs_mvv_card:nth-child(2) .ccs_mvv_card_icon {
    background-color: rgba(255, 127, 0, 0.1);
}

.ccs_mvv_card:nth-child(3) .ccs_mvv_card_icon {
    background-color: rgba(0, 35, 102, 0.1);
}

.ccs_mvv_card:hover .ccs_mvv_card_icon {
    transform: scale(1.1) rotateY(10deg);
}

.ccs_mvv_card_icon svg {
    width: 35px;
    height: 35px;
}

.ccs_mvv_card:nth-child(1) .ccs_mvv_card_icon svg {
    fill: #1A75FF;
}

.ccs_mvv_card:nth-child(2) .ccs_mvv_card_icon svg {
    fill: #FF7F00;
}

.ccs_mvv_card:nth-child(3) .ccs_mvv_card_icon svg {
    fill: #002366;
}

.ccs_mvv_card_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #002366;
    margin-bottom: 15px;
}

.ccs_mvv_card_text {
    font-size: 1.05rem;
    color: #495057;
    margin-bottom: 25px;
    flex-grow: 1;
}

.ccs_mvv_card_list {
    list-style: none;
}

.ccs_mvv_card_list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    position: relative;
    padding-left: 28px;
}

.ccs_mvv_card_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    background-color: rgba(26, 117, 255, 0.1);
    border-radius: 50%;
}

.ccs_mvv_card:nth-child(2) .ccs_mvv_card_list li::before {
    background-color: rgba(255, 127, 0, 0.1);
}

.ccs_mvv_card:nth-child(3) .ccs_mvv_card_list li::before {
    background-color: rgba(0, 35, 102, 0.1);
}

.ccs_mvv_card_list li::after {
    content: "✓";
    position: absolute;
    left: 4px;
    top: 5px;
    font-size: 10px;
    font-weight: bold;
}

.ccs_mvv_card:nth-child(1) .ccs_mvv_card_list li::after {
    color: #1A75FF;
}

.ccs_mvv_card:nth-child(2) .ccs_mvv_card_list li::after {
    color: #FF7F00;
}

.ccs_mvv_card:nth-child(3) .ccs_mvv_card_list li::after {
    color: #002366;
}

/* Animation classes */
.ccs_mvv_animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.ccs_mvv_animation.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .ccs_mvv_title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .ccs_mvv {
        padding: 80px 0;
    }
    
    .ccs_mvv_cards {
        grid-template-columns: repeat(1, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }
    
    .ccs_mvv_header {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .ccs_mvv {
        padding: 60px 0;
    }
    
    .ccs_mvv_title {
        font-size: 1.8rem;
    }
    
    .ccs_mvv_description,
    .ccs_mvv_card_text {
        font-size: 1rem;
    }
    
    .ccs_mvv_card_title {
        font-size: 1.3rem;
    }
    
    .ccs_mvv_card_inner {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .ccs_mvv {
        padding: 50px 0;
    }
    
    .ccs_mvv_title {
        font-size: 1.5rem;
    }
    
    .ccs_mvv_subtitle {
        font-size: 0.9rem;
    }
    
    .ccs_mvv_card_icon {
        width: 60px;
        height: 60px;
    }
    
    .ccs_mvv_card_icon svg {
        width: 30px;
        height: 30px;
    }
}
/* services are css */
.ccs_services {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.ccs_services_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Background elements */
.ccs_services_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ccs_services_bg_dots {
    position: absolute;
    width: 350px;
    height: 350px;
    background-image: radial-gradient(#1A75FF 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
    border-radius: 50%;
}

.ccs_services_bg_dots1 {
    top: 10%;
    right: 5%;
}

.ccs_services_bg_dots2 {
    bottom: 10%;
    left: 5%;
}

.ccs_services_bg_shape {
    position: absolute;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: linear-gradient(135deg, rgba(26, 117, 255, 0.05) 0%, rgba(0, 35, 102, 0.05) 100%);
    animation: morph 15s ease-in-out infinite;
}

.ccs_services_bg_shape1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -150px;
}

.ccs_services_bg_shape2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -150px;
    animation-delay: -5s;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Header */
.ccs_services_header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.ccs_services_header_tag {
    display: inline-flex;
    align-items: center;
    background: rgba(26, 117, 255, 0.1);
    color: #1A75FF;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.ccs_services_header_tag_icon {
    margin-right: 10px;
}

.ccs_services_header_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #002366;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.ccs_services_header_title_highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.ccs_services_header_title_highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 12px;
    background-color: rgba(255, 127, 0, 0.2);
    z-index: -1;
}

.ccs_services_header_subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #495057;
}

/* Services Grid */
.ccs_services_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ccs_services_item {
    position: relative;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ccs_services_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ccs_services_item_header {
    padding: 30px;
    background: linear-gradient(135deg, #1A75FF 0%, #0056D2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.ccs_services_item:nth-child(2n) .ccs_services_item_header {
    background: linear-gradient(135deg, #FF7F00 0%, #CC6600 100%);
}

.ccs_services_item:nth-child(3n) .ccs_services_item_header {
    background: linear-gradient(135deg, #002366 0%, #001233 100%);
}

.ccs_services_item_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    color: white;
}

.ccs_services_item_description {
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    color: whitesmoke;
}

.ccs_services_item_icon {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.1;
    z-index: 1;
    transition: all 0.3s ease;
}

.ccs_services_item:hover .ccs_services_item_icon {
    transform: scale(1.2) rotate(10deg);
}

.ccs_services_item_icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

.ccs_services_item_body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ccs_services_item_features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.ccs_services_item_feature {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #495057;
}

.ccs_services_item_feature:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-color: rgba(26, 117, 255, 0.1);
    border-radius: 50%;
}

.ccs_services_item:nth-child(2n) .ccs_services_item_feature:before {
    background-color: rgba(255, 127, 0, 0.1);
}

.ccs_services_item:nth-child(3n) .ccs_services_item_feature:before {
    background-color: rgba(0, 35, 102, 0.1);
}

.ccs_services_item_feature:after {
    content: "✓";
    position: absolute;
    left: 6px;
    top: 2px;
    font-size: 10px;
    font-weight: bold;
    color: #1A75FF;
}

.ccs_services_item:nth-child(2n) .ccs_services_item_feature:after {
    color: #FF7F00;
}

.ccs_services_item:nth-child(3n) .ccs_services_item_feature:after {
    color: #002366;
}

.ccs_services_item_button {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background-color: rgba(26, 117, 255, 0.1);
    color: #1A75FF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.ccs_services_item:nth-child(2n) .ccs_services_item_button {
    background-color: rgba(255, 127, 0, 0.1);
    color: #FF7F00;
}

.ccs_services_item:nth-child(3n) .ccs_services_item_button {
    background-color: rgba(0, 35, 102, 0.1);
    color: #002366;
}

.ccs_services_item_button:hover {
    background-color: #1A75FF;
    color: white;
    box-shadow: 0 5px 15px rgba(26, 117, 255, 0.3);
    transform: translateY(-2px);
}

.ccs_services_item:nth-child(2n) .ccs_services_item_button:hover {
    background-color: #FF7F00;
    box-shadow: 0 5px 15px rgba(255, 127, 0, 0.3);
}

.ccs_services_item:nth-child(3n) .ccs_services_item_button:hover {
    background-color: #002366;
    box-shadow: 0 5px 15px rgba(0, 35, 102, 0.3);
}

.ccs_services_item_button_icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.ccs_services_item_button:hover .ccs_services_item_button_icon {
    transform: translateX(5px);
}

/* Animation classes */
.ccs_services_anim {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.ccs_services_anim.active {
    opacity: 1;
    transform: translateY(0);
}

/* Bottom CTA */
.ccs_services_cta {
    margin-top: 60px;
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #1A75FF 0%, #0056D2 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.ccs_services_cta_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.ccs_services_cta_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.ccs_services_cta_text {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.ccs_services_cta_button {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background-color: white;
    color: #1A75FF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ccs_services_cta_button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.ccs_services_cta_button_icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.ccs_services_cta_button:hover .ccs_services_cta_button_icon {
    transform: translateX(5px);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .ccs_services_header_title {
        font-size: 2.2rem;
    }
    
    .ccs_services_cta_title {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .ccs_services {
        padding: 80px 0;
    }
    
    .ccs_services_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ccs_services_cta {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .ccs_services {
        padding: 60px 0;
    }
    
    .ccs_services_header_title {
        font-size: 1.8rem;
    }
    
    .ccs_services_header_subtitle {
        font-size: 1rem;
    }
    
    .ccs_services_grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .ccs_services_cta_title {
        font-size: 1.5rem;
    }
    
    .ccs_services_cta_text {
        font-size: 1rem;
    }
    
    .ccs_services_bg_dots {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .ccs_services {
        padding: 50px 0;
    }
    
    .ccs_services_header_tag {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .ccs_services_header_title {
        font-size: 1.5rem;
    }
    
    .ccs_services_item_header {
        padding: 25px;
    }
    
    .ccs_services_item_title {
        font-size: 1.3rem;
    }
    
    .ccs_services_item_body {
        padding: 25px;
    }
    
    .ccs_services_cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .ccs_services_cta_button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* faq area css */
.ccs_faq {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.ccs_faq_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Background elements */
.ccs_faq_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ccs_faq_bg_shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 117, 255, 0.05) 0%, rgba(26, 117, 255, 0) 70%);
}

.ccs_faq_bg_shape1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.ccs_faq_bg_shape2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 127, 0, 0.05) 0%, rgba(255, 127, 0, 0) 70%);
    bottom: -150px;
    left: -150px;
}

.ccs_faq_bg_pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231A75FF' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

/* Header */
.ccs_faq_header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.ccs_faq_subtitle {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1A75FF;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    background-color: rgba(26, 117, 255, 0.1);
    border-radius: 50px;
}

.ccs_faq_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #002366;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.ccs_faq_title_highlight {
    position: relative;
    z-index: 1;
}

.ccs_faq_title_highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 127, 0, 0.2);
    z-index: -1;
}

.ccs_faq_description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #495057;
}

/* FAQ Accordion */
.ccs_faq_accordion {
    margin-bottom: 40px;
}

.ccs_faq_item {
    margin-bottom: 20px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.ccs_faq_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.ccs_faq_question {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #002366;
    user-select: none;
}

.ccs_faq_question::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #1A75FF, #0056D2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ccs_faq_item.active .ccs_faq_question::before,
.ccs_faq_item:hover .ccs_faq_question::before {
    opacity: 1;
}

.ccs_faq_toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.ccs_faq_toggle::before,
.ccs_faq_toggle::after {
    content: "";
    position: absolute;
    background-color: #1A75FF;
    transition: all 0.3s ease;
}

.ccs_faq_toggle::before {
    width: 16px;
    height: 2px;
}

.ccs_faq_toggle::after {
    width: 2px;
    height: 16px;
}

.ccs_faq_item.active .ccs_faq_toggle::after {
    transform: rotate(90deg);
    opacity: 0;
}

.ccs_faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
    font-size: 1rem;
    color: #495057;
}

.ccs_faq_item.active .ccs_faq_answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

/* Search */
.ccs_faq_search {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ccs_faq_search_input {
    width: 100%;
    padding: 18px 30px 18px 60px;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ccs_faq_search_input:focus {
    outline: none;
    border-color: #1A75FF;
    box-shadow: 0 10px 30px rgba(26, 117, 255, 0.1);
}

.ccs_faq_search_icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
}

.ccs_faq_search_icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Bottom CTA */
.ccs_faq_support {
    position: relative;
    background: linear-gradient(135deg, #1A75FF 0%, #0056D2 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
    overflow: hidden;
}

.ccs_faq_support_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ccs_faq_support_content {
    position: relative;
    z-index: 2;
}

.ccs_faq_support_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.ccs_faq_support_text {
    max-width: 600px;
    margin: 0 auto 25px;
    font-size: 1.1rem;
    opacity: 0.9;
    color: whitesmoke;
}

.ccs_faq_support_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ccs_faq_support_button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ccs_faq_support_button.primary {
    background-color: white;
    color: #1A75FF;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ccs_faq_support_button.secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.ccs_faq_support_button:hover {
    transform: translateY(-5px);
}

.ccs_faq_support_button.primary:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.ccs_faq_support_button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.ccs_faq_support_button_icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.ccs_faq_support_button_icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Animation classes */
.ccs_faq_anim {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.ccs_faq_anim.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .ccs_faq_title {
        font-size: 2.2rem;
    }
    
    .ccs_faq_support_title {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .ccs_faq {
        padding: 80px 0;
    }
    
    .ccs_faq_question {
        font-size: 1rem;
        padding: 20px 25px;
    }
}

@media (max-width: 768px) {
    .ccs_faq {
        padding: 60px 0;
    }
    
    .ccs_faq_header {
        margin-bottom: 40px;
    }
    
    .ccs_faq_title {
        font-size: 1.8rem;
    }
    
    .ccs_faq_description {
        font-size: 1rem;
    }
    
    .ccs_faq_support {
        padding: 40px 30px;
    }
    
    .ccs_faq_support_title {
        font-size: 1.4rem;
    }
    
    .ccs_faq_support_text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .ccs_faq {
        padding: 50px 0;
    }
    
    .ccs_faq_subtitle {
        font-size: 0.9rem;
        padding: 6px 15px;
    }
    
    .ccs_faq_title {
        font-size: 1.5rem;
    }
    
    .ccs_faq_search_input {
        padding: 15px 25px 15px 50px;
        font-size: 0.9rem;
    }
    
    .ccs_faq_search_icon {
        left: 20px;
    }
    
    .ccs_faq_question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    
    .ccs_faq_item.active .ccs_faq_answer {
        padding: 0 20px 20px;
    }
    
    .ccs_faq_support {
        padding: 30px 20px;
    }
    
    .ccs_faq_support_button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
/* popup iamges  */
/* Example image that triggers popup */
.trigger-image {
    cursor: pointer;
    max-width: 300px;
    border-radius: 8px;
    margin: 50px;
    transition: transform 0.3s ease;
}

.trigger-image:hover {
    transform: scale(1.05);
}

/* Popup styles */
.ccs_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.ccs_popup.active {
    opacity: 1;
    visibility: visible;
}

.ccs_popup_image {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
}

.ccs_popup_close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ccs_popup_close::before,
.ccs_popup_close::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 2px;
    background-color: black;
}

.ccs_popup_close::before {
    transform: rotate(45deg);
}

.ccs_popup_close::after {
    transform: rotate(-45deg);
}

/* Prevent scrolling when popup is open */
body.popup-open {
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ccs_popup_close {
        top: 15px;
        right: 15px;
    }
}