* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #2E3192;
    --secondary-color: #00AEEF;
    --accent-color: #4A90D9;
    --dark-blue: #1A1C5B;
    --light-blue: #E8F4FD;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #fff;
    --bg-gradient: linear-gradient(135deg, #2E3192 0%, #00AEEF 100%);
    --bg-gradient-dark: linear-gradient(135deg, #1A1C5B 0%, #2E3192 100%);
}

header {
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(46, 49, 146, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 50px;
    height: 50px;
    margin-right: 12px;
}

.logo span {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.header-carousel {
    position: relative;
    width: 100%;
    margin-top: 70px;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 800;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: var(--primary-color);
    font-size: 28px;
    padding: 15px 22px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.3);
    border-color: var(--secondary-color);
}

.dot:hover {
    background: var(--secondary-color);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    background: rgba(0,0,0,0.3);
}

.carousel-content {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    text-align: left;
    color: white;
    z-index: 15;
    max-width: 500px;
}

.carousel-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.carousel-content p {
    font-size: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    opacity: 0.95;
}

.about {
    padding: 80px 20px;
    background: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--bg-gradient);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    font-size: 16px;
    margin-top: 20px;
}

.about-content {
    align-items: center;
    background-color: var(--light-blue);
}

.about-text {
    color: var(--text-dark);
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-text p {
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-light);
}

.about-text strong {
    color: var(--text-dark);
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(46, 49, 146, 0.15);
}

/* Security Section Styles */
.security-section {
    padding: 80px 20px;
    background: var(--white);
}

.security-container {
    max-width: 1200px;
    margin: 0 auto;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.security-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 30px rgba(46, 49, 146, 0.08);
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(46, 49, 146, 0.12);
}

.security-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 15px 45px rgba(46, 49, 146, 0.18);
}

.security-card-inner {
    display: flex;
    flex-direction: column;
}

.security-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.security-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.security-card:hover .security-image img {
    transform: scale(1.05);
}

.security-content {
    padding: 30px;
    position: relative;
}

.security-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
}

.security-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.security-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.security-features {
    list-style: none;
    margin-bottom: 25px;
}

.security-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
    font-size: 14px;
}

.check-icon {
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 16px;
}

.security-btn {
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.security-btn:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .security-grid {
        grid-template-columns: 1fr;
    }
}

.features {
    padding: 80px 20px;
    background: var(--white);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 49, 146, 0.1);
}

.feature-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(46, 49, 146, 0.15);
}

.card-left .feature-content {
    flex: 1;
    padding: 40px;
    order: 1;
}

.card-left .feature-image {
    flex: 1;
    order: 2;
}

.card-right .feature-content {
    flex: 1;
    padding: 40px;
    order: 2;
}

.card-right .feature-image {
    flex: 1;
    order: 1;
}

.feature-image {
    height: 280px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content h3 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    font-size: 14px;
}

.feature-list .check-icon {
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 16px;
}





@media (max-width: 992px) {
    .feature-card {
        flex-direction: column;
    }
    
    .card-left .feature-content,
    .card-left .feature-image,
    .card-right .feature-content,
    .card-right .feature-image {
        order: unset;
        width: 100%;
    }
    
    .feature-image {
        height: 200px;
    }
    
}

.process {
    padding: 80px 20px;
    background: var(--white);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-step {
    background: var(--light-blue);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(46, 49, 146, 0.12);
}

.process-image {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.faq {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 800;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.faq-container {
    max-width: 800px;
    width: 90%;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 32px;
    color: var(--white);
    font-weight: 700;
    margin: 0;
}

.faq-list {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(46, 49, 146, 0.15);
    width: 100%;
    max-width: 700px;
}

.faq-item {
    border-bottom: 1px solid rgba(46, 49, 146, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-question:hover {
    background: rgba(46, 49, 146, 0.03);
}

.faq-item.active .faq-question {
    background: rgba(46, 49, 146, 0.05);
}

.faq-number {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
    margin-right: 15px;
}

.faq-text {
    flex: 1;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.faq-arrow {
    color: var(--primary-color);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 30px;
    background: rgba(46, 49, 146, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 24px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    margin: 15px 0 0 30px;
}

.faq-answer p:first-child {
    margin-top: 0;
}

.faq-footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-btn {
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.faq-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 70px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 55px;
    height: 55px;
    margin-right: 15px;
}

.footer-logo span {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
}

.footer-about p {
    color: #aaa;
    line-height: 1.8;
    font-size: 15px;
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 18px;
    color: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-contact h4 {
    margin-bottom: 25px;
    font-size: 18px;
    color: var(--secondary-color);
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 15px;
}

.footer-contact p strong {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 35px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    
    nav ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li a {
        font-size: 14px;
    }
    
    .header-carousel {
        height: 350px;
        margin-top: 120px;
    }
    
    .carousel-content h2 {
        font-size: 28px;
    }
    
    .carousel-content p {
        font-size: 16px;
    }
    
    .carousel-btn {
        font-size: 20px;
        padding: 10px 15px;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
  
    .features-grid,
    .why-grid,
    .process-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .about-text h3 {
        font-size: 24px;
    }
    
    .feature-card,
    .why-item,
    .process-step {
        padding: 30px 25px;
    }
    
    .footer-content {
        gap: 40px;
    }
}


