        .hero {
    position: relative;
    background: linear-gradient(135deg, #F5FFFA 0%, #F6F6F6 50%, #F5FFFA 100%);
    padding: 120px 0 60px 0;
    overflow: hidden;
    
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
    z-index: 1;
}

/* 3D Background Elements */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}


.container {
    position: relative;
    z-index: 10;
}

.hero__content {
    position: relative;
    z-index: 11;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    transform: translateZ(20px);
}

.hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00008B 0%, #04AA6D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
    letter-spacing: -0.5px;
}

.hero__description {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-weight:bold;
}

/* Search form styles */
.search-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 12;
    border: 1px solid #00008B;
    backdrop-filter: blur(10px);
}

.search-form:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 0.95);
}

.search-form input[type="text"] {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    border-radius: 50px;
    outline: none;
    background: transparent;
    color: #2c3e50;
}

.search-form input[type="text"]::placeholder {
    color: #7f8c8d;
}

.search-form button {
    background: linear-gradient(135deg, #00008B 0%, #04AA6D 100%);
    border: none;
    color: white;
    padding: 0 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.search-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}
/* Mobile Responsive Styles for Hero Section */
@media (max-width: 768px) {
    .hero__content {
        padding: 60px 20px;
        transform: translateZ(10px);
    }

    .hero__title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        letter-spacing: -0.3px;
        line-height: 1.2;
        background: linear-gradient(135deg, #00008B 0%, #04AA6D 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero__description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
        padding: 0 10px;
    }

    .search-form {
        max-width: 100%;
        border-radius: 25px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border: 1px solid #00008B;
    }

    .search-form:focus-within {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .search-form input[type="text"] {
        padding: 12px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 25px 25px 0 0;
        text-align: center;
    }

    .search-form button {
        padding: 12px 20px;
        border-radius: 0 0 25px 25px;
        margin: 0;
        box-shadow: none;
    }

    .search-form button:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Small Mobile Devices (Phones) */
@media (max-width: 480px) {
    .hero__content {
        padding: 50px 15px;
    }

    .hero__title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        letter-spacing: -0.2px;
    }

    .hero__description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .search-form {
        border-radius: 20px;
    }

    .search-form input[type="text"] {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 20px 20px 0 0;
    }

    .search-form button {
        padding: 14px 20px;
        border-radius: 0 0 20px 20px;
        font-size: 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero__title {
        font-size: 1.5rem;
    }

    .hero__description {
        font-size: 0.85rem;
    }

    .search-form input[type="text"] {
        padding: 12px 14px;
    }

    .search-form button {
        padding: 12px 16px;
    }
}

/* Tablet Devices */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero__content {
        max-width: 90%;
        padding: 0 30px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__description {
        font-size: 1.1rem;
    }

    .search-form {
        max-width: 450px;
    }
}

/* Landscape Mobile Devices */
@media (max-height: 500px) and (max-width: 768px) {
    .hero__content {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hero__title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero__description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .search-form {
        max-width: 400px;
    }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero__title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .search-form {
        transition: none;
    }
    
    .search-form:focus-within {
        transform: none;
    }
    
    .search-form button:hover {
        transform: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .hero__description {
        color: #bdc3c7;
    }
    
    .search-form {
        background: rgba(45, 45, 45, 0.9);
        border-color: #04AA6D;
    }
    
    .search-form input[type="text"] {
        color: #ecf0f1;
    }
    
    .search-form input[type="text"]::placeholder {
        color: #95a5a6;
    }
}

/* Print styles */
@media print {
    .hero__content {
        transform: none;
        text-align: left;
    }
    
    .hero__title {
        background: none;
        -webkit-text-fill-color: #00008B;
        color: #00008B;
        text-shadow: none;
    }
    
    .search-form {
        display: none;
    }
}
.file-icons-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0.15;
    pointer-events: none;
}

.file-icon {
    position: absolute;
    font-size: 2rem;
    animation: float 16s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
    pointer-events: none;
}

.file-icon.pdf { color: #00008B; top: 25%; left: 12%; animation-delay: 0s; }
.file-icon.image { color: #DC143C; top: 60%; left: 5%; animation-delay: 1s; }
.file-icon.csv { color: #006400; top: 20%; right: 50%; animation-delay: 2s; }
.file-icon.excel { color: #A52A2A; bottom: 20%; left: 25%; animation-delay: 3s; }
.file-icon.word { color: #0000FF; top: 22%; right: 10%; animation-delay: 4s; }
.file-icon.powerpoint { color: #e74c3c; bottom: 30%; right: 5%; animation-delay: 5s; }
.file-icon.html { color: #e67e22; top: 70%; right: 20%; animation-delay: 6s; }
.file-icon.text { color: #9b59b6; bottom: 41%; right: 38%; animation-delay: 7s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__description {
        font-size: 1.1rem;
    }
    
    .file-icon {
        font-size: 1.5rem;
    }
    
    .search-form {
        margin: 0 20px;
    }
    
    .circle {
        display: none;
    }
}

:root {
    --color1: #fff;
    --color2: #fff;
    --color3: #fff;
    --color4: #fff;
    --color5: #fff;
    --color6: #fff;
    --color7: #fff;
    --color8: #fff;
    --color9: #fff;
    --color10: #fff;
    --color11: #fff;
    --color12: #fff;
    --color13: #fff;
    --color14: #fff;
    --color15: #fff;
    --color16: #fff;
    --color17: #fff;
    --pdf-red: #e74c3c;
    --pdf-red-light: #ff6b5b;
}

.tools-section {
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    padding: 20px 40px;
    margin:0 auto;
    width:100%;
    overflow:hidden;
    position:relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
    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(--primary-color);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 1000px;
    margin: 0 auto;
}

.hexagon-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    max-width: 100%;
    margin: 20px auto 0 auto;
    padding: 10px 0;
}

.hexagon-row {
    display: contents;
}

.hexagon-item {
    position: relative;
    width: 100%;
    margin: 0;
    clip-path: none;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    text-align: left;
    padding: 40px 20px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.16);
    background: white;
    overflow: hidden;
    border:1px solid #ECECEC;
}

.hexagon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.hexagon-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hexagon-item:hover {
    transform: translateY(-8px) scale(1.02);
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hexagon-item:hover::before {
    transform: scaleX(1);
}

.hexagon-item:hover::after {
    opacity: 1;
}

.hexagon-content {
    position: relative;
    z-index: 2;
    color: #333;
    width: 100%;
}

.hexagon-icon {
    font-size: 1.3em;
    margin-bottom: 20px;
    margin-top: 0;
    transition: all 0.4s ease;
    color: #fff;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10%;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
    display: flex;
   border:3px solid #fff;
}

.hexagon-item:hover .hexagon-icon {
    transform: scale(1.15) rotate(5deg);
    color: white;
    box-shadow: 0 12px 25px rgba(231, 76, 60, 0.4);
}

.hexagon-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
    line-height: 1.3;
}

.hexagon-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
}

.hexagon-arrow {
    font-size: 1.3rem;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.4s ease;
    color: var(--primary-color);
    position: absolute;
    bottom: -25px;
    left: 5%;
    transform: translateX(-50%) translateX(-15px);
}

.hexagon-item:hover .hexagon-arrow {
    opacity: 1;
    transform: translateX(-50%) translateX(0);
    color: var(--primary-color);
}


/* Responsive Design */
@media (max-width: 1200px) {
    .hexagon-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .hexagon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hexagon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hexagon-item {
        height: 280px;
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hexagon-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .hexagon-item {
        height: 250px;
        padding: 25px 20px;
    }
    
    .hexagon-icon {
        width: 40px;
        height: 40px;
        font-size: 1.8em;
    }
    
    .hexagon-title {
        font-size: 1.2rem;
    }
}



/* Responsive adjustments - Mobile */
@media (max-width: 768px) {
    .hexagon-grid {
        padding: 10px;
    }
    
    .hexagon-row {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 0;
    }
    
    .hexagon-row:nth-child(2) {
        margin-left: 0;
    }
    
    .hexagon-item {
        width: calc(100% - 20px);
        height: 180px;
        margin: 10px;
        clip-path: none;
        border-radius: 12px;
    }
    
    .hexagon-item::before {
        clip-path: none;
        border-radius: 10px;
    }
    
    .hexagon-icon {
        margin-top: 15px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hexagon-item {
        width: calc(100% - 20px);
        max-width: 100%;
        height: 160px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1rem;
        padding: 0 15px;
    }
}

/* Popular Label */
.popular-label {
    position: absolute;
    top: 1px;
    right: 1px;
    background-color: #fff;
    color: blue;
    font-size: 12px;
    font-weight: normal;
    padding: 4px 8px;
    border-radius: 0 0 0 12px;
    z-index: 3;
    animation: pulse 1.5s infinite;
}

/* Pulsing Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Popular Label */
.popular-label {
    position: absolute;
    top: 1px;
    right: 1px;
    background-color: #fff;
    color: blue;
    font-size: 12px;
    font-weight: normal;
    padding: 4px 8px;
    border-radius: 0 0 0 12px;
    z-index: 1;
    animation: pulse 1.5s infinite;
}

/* Pulsing Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}


.features {
    padding: 20px 20px 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.features::before,
.features::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.features::before {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.features::after {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
    bottom: -100px;
    left: -50px;
    animation-delay: -3s;
}

/* Additional 3D shapes */
.features .shape-1 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 20%;
    left: 10%;
    opacity: 0.15;
    animation: morph 8s ease-in-out infinite;
}

.features .shape-2 {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #43e97b 0%, #38f9d7 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    bottom: 20%;
    right: 15%;
    opacity: 0.15;
    animation: rotate 10s linear infinite;
}

.features .shape-3 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 100%);
    transform: rotate(45deg);
    top: 60%;
    left: 5%;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: scale(1) rotate(0deg);
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: scale(1.1) rotate(180deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: rotate(45deg) scale(1.2);
        opacity: 0.15;
    }
}


.section-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.5);
}

.section-subtitle {
    color: #707070;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: white;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
    border: 1px solid #ddd;
    
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.01) 0%, 
        rgba(255, 255, 255, 0) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: 
        translateY(-15px) 
        rotateX(5deg) 
        rotateY(5deg) 
        scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(78, 205, 196, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border-color: rgba(78, 205, 196, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #ff6b6b22, 
        #4ecdc422, 
        #45b7d122, 
        #96ceb422, 
        #ffeaa722);
    border-radius: 22px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: glow 3s ease-in-out infinite;
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.feature-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 0 20px 0 60px;
    top: -2px;
    right: -2px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

.feature-card:hover .feature-corner {
    opacity: 1;
    transform: scale(1);
}

.feature-icon {
    font-size: 1.7rem;
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, #00008B 0%, #04AA6D 100%);
    border-radius: 50px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.6s ease;
}

.feature-card:hover .feature-icon {
    transform: 
        scale(1.15) 
        rotateY(15deg) 
        translateZ(20px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(102, 126, 234, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ff6b6b 0%, #667eea 50%, #764ba2 100%);
}

.feature-card:hover .feature-icon::before {
    left: 100%;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.feature-desc {
    color: #707070;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1rem;
    text-align: center;
    position: relative;
}

/* Individual card color variations */
.feature-card:nth-child(1):hover .feature-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}
.feature-card:nth-child(2):hover .feature-icon {
    background: linear-gradient(135deg, #4ecdc4, #00b894);
}
.feature-card:nth-child(3):hover .feature-icon {
    background: linear-gradient(135deg, #45b7d1, #0984e3);
}
.feature-card:nth-child(4):hover .feature-icon {
    background: linear-gradient(135deg, #96ceb4, #00b894);
}
.feature-card:nth-child(5):hover .feature-icon {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
}
.feature-card:nth-child(6):hover .feature-icon {
    background: linear-gradient(135deg, #dda0dd, #a29bfe);
}
.feature-card:nth-child(7):hover .feature-icon {
    background: linear-gradient(135deg, #fab1a0, #e17055);
}
.feature-card:nth-child(8):hover .feature-icon {
    background: linear-gradient(135deg, #81ecec, #00cec9);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 60px 15px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* Base Styles */
.product-comprehensive {
   padding: 0;
    color: #2c3e50;
    line-height: 1.6;
}

.containerp {
    max-width: 100%;
    margin: 0 auto;
    padding: 50px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding:50px 0 0 0;
}

.section-header h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Section */
.product-hero {
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-card p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Features Section */
.features-tabs {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    flex: 1;
    padding: 18px 20px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #95a5a6;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn.active {
    color: #4A6BFF;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #4A6BFF;
}

.tab-content {
    display: none;
    padding: 30px;
}

.tab-content.active {
    display: block;
}

.feature-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-list h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list h3 i {
    color: #4A6BFF;
}

.feature-list ul {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4A6BFF;
    font-weight: bold;
}

/* Usage Section */
.usage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #4A6BFF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-content p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.7;
}

.usage-video {
    max-width: 800px;
    margin: 0 auto;
    background: #F9FAFC;
    border-radius: 12px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.video-placeholder {
    text-align: center;
    z-index: 2;
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder i:hover {
    transform: scale(1.1);
}

.video-placeholder p {
    font-size: 1.1rem;
}

/* Tech Specs Section */
.tech-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.spec-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.spec-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-card h3 i {
    color: #4A6BFF;
}

.spec-card ul {
    list-style: none;
    padding: 0;
}

.spec-card li {
    margin-bottom: 12px;
    color: #666;
}

.spec-card strong {
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        opacity: 0.2;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: auto;
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .usage-video {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .step {
        flex-direction: column;
        gap: 10px;
    }
    
    .usage-video {
        height: 250px;
    }
}




.faq-section {
    padding: 0 0 60px 0;
    background-color: #CAD5E6;
    position: relative;
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}



.section-header .subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e6ff;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover h3 {
    color: #4a6bff;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f5f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-toggle i {
    color: #4a6bff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    padding: 0 30px;
    margin: 0;
}

/* Active state */
.faq-item.active .faq-question {
    background-color: #f5f7ff;
}

.faq-item.active .faq-toggle {
    background-color: #4a6bff;
    transform: rotate(45deg);
}

.faq-item.active .faq-toggle i {
    color: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    color: #7f8c8d;
}

.faq-cta a {
    color: #4a6bff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-cta a:hover {
    color: #2c3e50;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header .subtitle {
        font-size: 1rem;
    }
}

.cta-section {
    position: relative;
    background: linear-gradient(135deg, #00008B 0%, #764ba2 100%);
    padding: 60px 40px;
    margin:0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: #ff6b6b;
    color: white;
    box-shadow: 0 10px 20px rgba(255,107,107,0.3);
}

.cta-btn.primary:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255,107,107,0.4);
}

.cta-btn.secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 70%;
    animation-delay: 2s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 20%;
    animation-delay: 3s;
}

.shape-5 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

 footer {
        background-color: #F7F7F7;
        padding: 60px 0 20px;
        
        color: var(--secondary-text);
    }
    .footer-logo-container {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
    .footer-brand {
        text-align: center;
        max-width: 600px;
    }
    .footer-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--text-color);
        margin-bottom: 10px;
    }
    .logo-highlight {
        color: #00008B;
        margin-left: 4px;
    }
    .footer-tagline {
        font-size: 1rem;
        margin: 0;
        opacity: 0.8;
    }
    .footer-social-container {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
    .footer-social {
        display: flex;
        gap: 15px;
    }
    .social-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #00008B;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        border: 0px solid #FF1B2D;
        text-decoration: none;
    }
    .social-icon:hover {
        background-color: var(--primary-color);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(74,107,255,0.3);
    }
    .footer-language-container {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }
    .footer-language {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .gtranslate_wrapper {
        width: auto !important;
    }
    /* hide flags */
    .gtranslate_wrapper img {
        display: none !important;
    }
    /* clean dropdown style */
    .gtranslate_wrapper select {
        padding: 11px 15px;
        border: 2px solid #ddd;
        border-radius: 50px;
        font-size: 18px;
        background: #fff;
        color: #860102;
        cursor: pointer;
        font-weight: bold;
        width: 40%;
        margin: 0 auto 30px auto;
    }
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding-top: 30px;
        border-top: 1px dashed #00008B;
    }
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .footer-link {
        color: var(--secondary-text);
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s;
    }
    .footer-link:hover {
        color: var(--primary-color);
    }
    .copyright {
        font-size: 0.9rem;
        opacity: 0.8;
    }
    .copyright a {
        color: var(--text-color);
        text-decoration: none;
        transition: color 0.3s;
    }
    .copyright a:hover {
        color: var(--primary-color);
    }
    @media (max-width: 768px) {
        .footer-bottom {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }
        .footer-links {
            justify-content: center;
        }
        .footer-logo {
            font-size: 1.5rem;
        }
        .footer-language-container {
            margin-bottom: 30px;
        }
        .gtranslate_wrapper select {
            width: 80%;
        }
    }
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  font-size: 22px;
  background-color: #00008B;
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 9999;
  display: none;
  transition: all 0.3s ease;
}

#backToTop:hover {
  background-color: #005ec4;
  transform: scale(1.1);
}

  /* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
    background: #fff;
}

.section__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 30px;
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.blog-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card__content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.4;
    font-weight: 600;
}

.blog-card__meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.blog-card__excerpt {
    color: #5d6d7e;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card__link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.blog-card__link:hover {
    color: #2980b9;
}

/* Section Actions */
.section__actions {
    text-align: center;
    margin-top: 40px;
}

.btnb {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn--primary {
    background: #04AA6D;
    color: white;
}

.btn--primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-preview {
        padding: 60px 0;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .grid--3 {
        grid-template-columns: 1fr;
    }
    
    .blog-card__content {
        padding: 20px;
    }
}