/*===========

//////////////////////////////////////////////////////
Author Start
//////////////////////////////////////////////////////
@ Mohammad Aminul Islam
//////////////////////////////////////////////////////
Author End
//////////////////////////////////////////////////////

===========*/


/* ---------- Global Styles Start ---------- */
    :root {
        --primary-color: #c733ff;
        --bg-color: #ffffff;
        --text-color: #333;
        --text-muted: #666;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Arial', sans-serif;
    }

    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        background-color: var(--bg-color);
        color: var(--text-color);
        overflow-x: hidden;
    }
/* ---------- Global Styles End ---------- */

/* ---------- Loader Box Start ---------- */
    .loader-box {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #252439;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
        visibility: visible;
        opacity: 1;
        transition: opacity 0.5s ease-out;
    }

    .loader-box.hidden {
        opacity: 0;
        visibility: hidden;
    }
/* ---------- Loader Box End ---------- */


/* ---------- Navbar Styles Start ---------- */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #c733ff;
        color: #FFFFFF;
        padding: 15px 20px;
    }

    .logo {
        font-size: 24px;
        font-weight: bold;
    }

/* ----------- Navigation Menu Buttons Start ---------- */
    /* Navigation Links */
    .nav-links {
        list-style: none;
        display: flex;
        align-items: center;
        padding: 0;
    }

    .nav-links li {
        padding: 10px;
    }

    .nav-links a {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
        padding: 8px 15px;
        transition: 0.1s;
    }

    .nav-links a:hover {
        background-color: #a626d3; 
        border-radius: 15px;
    }

    /* Dropdown Menu */
    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        background:  #c733ff;
        list-style: none;
        padding: 0;
        margin: 0;
        top: 35px;
        left: 0;
        width: 150px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    }

    .dropdown-menu li {
        padding: 4px;
    }

    .dropdown-menu a {
        display: block;
        color: #FFFFFF;
        padding: 10px;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-li-divider {
        border: none;
        border-top: 1px solid #ddd;
        margin: 8px auto; 
        width: 80%; 
    }

    /* Navigation Search Icon */
    .search-icon {
        cursor: pointer;
        font-size: 18px;
        padding: 10px;
        color: white;
        transition: color 0.3s ease-in-out;
    }

    .search-icon:hover {
        color: #ddd;
    }

    /* Login-Btn Start */
    .login-btn {
        background-color: white;
        color: #c733ff;
        padding: 6px 12px;
        font-size: 14px;
        text-decoration: none;
        border: 2px solid #c733ff;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 4px 10px rgba(199, 51, 255, 0.2);
        letter-spacing: 1px;
        outline: none;
    }
    .login-btn:hover {
        background-color: #f0e1f9;
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(199, 51, 255, 0.4);
    }

    /* Hamburger Menu (Mobile) */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        z-index: 9999;
    }

    .hamburger.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 7.5px);
    }

    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
        transform: translateX(-100%);
    }

    .hamburger.toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -7.5px);
    }

    .hamburger span {
        background: #FFFFFF;
        height: 3px;
        width: 25px;
        margin: 4px;
        transition: all 0.3s ease;
        transform-origin: center;
    }


    /* Responsive Styles for Tablets */
    @media (min-width: 768px) and (max-width: 1023px) {
        .nav-links {
            display: none;
            flex-direction: column;
            position: absolute;
            background: #c733ff;
            top: 60px;
            left: 0;
            width: 100%;
            text-align: center;
        }

        .nav-links li {
            padding: 15px;
        }

        .hamburger {
            display: flex;
        }

        .nav-active {
            display: flex;
        }

        .dropdown-menu {
            display: none;
            position: absolute; 
            background-color: #c733ff; 
            list-style: none;
            padding: 0;
            margin: 0;
            top: 35px;
            left: 0;
            width: 150px;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4); 
            z-index: 1000; 
        }

        .dropdown-menu li {
            padding: 4px;
        }

        .dropdown-menu a {
            display: block;
            color: #FFFFFF;
            padding: 10px;
            text-decoration: none;
            background-color: #c733ff; 
            border-radius: 10px;
        }

        .dropdown-menu a:hover {
            background-color: #a626d3; 
        }

        .dropdown:hover .dropdown-menu {
            display: block;
        }

        .dropdown-li-divider {
            border: none;
            border-top: 1px solid #ddd;
            margin: 8px auto; 
            width: 80%; 
        }
        }


    /* Responsive Styles for Mobiles Short Screen Start */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
            flex-direction: column;
            position: absolute;
            background: #c733ff;
            top: 60px;
            left: 0;
            width: 100%;
            text-align: center;
        }

        /* Responsive Styles for Mobiles Full Screen */
        /* @media (max-width: 768px) {
        .nav-links {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: fixed; 
            background: #c733ff;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh; 
            z-index: 999; 
        }

        .nav-active {
            display: flex;
        }
        } */

        .nav-links li {
            padding: 15px;
        }

        .hamburger {
            display: flex;
        }

        .nav-active {
            display: flex;
        }
        
        .dropdown-menu {
            display: none;
            position: absolute; 
            background-color: #c733ff; 
            list-style: none;
            padding: 0;
            margin: 0;
            top: 35px;
            left: 0;
            width: 150px;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4); 
            z-index: 1000; 
        }

        .dropdown-menu li {
            padding: 4px;
        }

        .dropdown-menu a {
            display: block;
            color: #FFFFFF;
            padding: 10px;
            text-decoration: none;
            background-color: #c733ff; 
            border-radius: 10px;
        }

        .dropdown-menu a:hover {
            background-color: #a626d3; 
        }

        .dropdown:hover .dropdown-menu {
            display: block;
        }

        .dropdown-li-divider {
            border: none;
            border-top: 1px solid #ddd;
            margin: 8px auto; 
            width: 80%; 
        }
        }
        /* Responsive Styles for Mobiles Short Screen End */
/* ----------- Navigation Menu Buttons End ---------- */


/* ---------- Fullscreen Responsive Search Popup Start ---------- */
    .search-popup {
        display: none; 
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(200, 137, 223, 0.9); 
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        z-index: 1000;
        opacity: 0; 
        visibility: hidden; 
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    /* Show popup when active */
    .search-popup.active {
        opacity: 1;
        visibility: visible;
    }

    /* Search Container */
    .search-container {
        position: relative;
        width: 100%;
        max-width: 500px;
        background: white;
        border-radius: 30px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    /* Search Input */
    .search-container input {
        width: 100%;
        height: 20px;
        padding: 15px 50px 15px 20px;
        font-size: 18px;
        border: none;
        outline: none;
        border-radius: 30px;
        color: #333;
    }

    /* Search Button */
    .search-container button {
        background: #c5a5d0;
        border: none;
        padding: 12px 15px;
        border-radius: 30px 30px;
        color: white;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .search-container button:hover {
        background: #c733ff;
    }

    /* Close Button for Popup */
    .close-search {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 28px;
        color: white;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .close-search:hover {
        color: #ddd;
    }

    /* Clear (X) Button Inside Input */
    .clear-search {
        position: absolute;
        right: 50px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 16px;
        color: #999;
        cursor: pointer;
        display: none;
    }

    .clear-search:hover {
        color: #c733ff;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .search-container {
            width: 85%;
        }
        .search-container input {
            font-size: 16px;
            padding: 12px 20px;
        }
    }

    @media (max-width: 480px) {
        .search-container {
            width: 95%;
        }
        .search-container input {
            font-size: 14px;
            padding: 10px 15px;
        }
    }
/* ---------- Fullscreen Responsive Search Popup End ---------- */
/* -------------------- Navbar Styles End ----------------------*/


/* -------------- Common Buttons Start -------------- */
/* Primary Button (Light Background) */
    .btn-primary {
        background-color: white;
        color: #c733ff;
        padding: 8px 16px;
        font-size: 16px;
        text-decoration: none;
        border: 2px solid #c733ff;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 4px 10px rgba(199, 51, 255, 0.2);
        font-weight: bold;
        letter-spacing: 1px;
        outline: none;
    }
    .btn-primary:hover {
        background-color: #f0e1f9;
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(199, 51, 255, 0.4);
    }
    .btn-primary:active {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(199, 51, 255, 0.2);
    }


    /* Secondary Button */
    .btn-secondary {
        background-color: #c5a5d0;
        color: #c733ff;
        padding: 8px 16px;
        font-size: 16px;
        text-decoration: none;
        border: 2px solid #c733ff;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 4px 10px rgba(199, 51, 255, 0.2);
        font-weight: bold;
        letter-spacing: 1px;
        outline: none;
    }
    .btn-secondary:hover {
        background-color: #f0e1f9;
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(199, 51, 255, 0.4);
    }
    .btn-secondary:active {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(199, 51, 255, 0.2);
    }

    .read-more-btn {
        display: inline-block;
        font-size: 14px;
        font-weight: bold;
        color: var(--primary-color);
        text-decoration: none;
        margin-top: 10px;
        transition: color 0.3s ease;
        position: relative;
        z-index: 10;
    }
    
    .read-more-btn:hover {
        color: #CCCCCC;
        text-decoration: underline;
    } 

    .text-url {
        text-decoration: none;
        color: var(--primary-color);
    }
    
    .text-url:hover {
        color: #CCCCCC;
        text-decoration: underline;
    }
/* --------------- Common Buttons End --------------- */


/*----------------- Common Banner Start ---------------------*/
    .Common-Banner-Background {
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
        background: #000;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 45vh;
        overflow: hidden;
    }

    .Common-Banner {
        width: 100%;
        text-align: center;
        padding: 50px 20px;
        background: radial-gradient(circle, #5e1572, #2e0a3a);
        overflow: hidden;
        box-shadow: 0 0 20px rgba(199, 51, 255, 0.5);
        border-radius: 10px;
    }

    .Common-Banner h1 {
        font-size: 48px;
        font-weight: bold;
        letter-spacing: 2px;
        text-shadow: 0 0 15px #c733ff;
    }

    .typing-text {
        font-size: 24px;
        font-weight: bold;
        color: #c733ff;
        height: 30px;
    }

    .cursor {
        color: #c733ff;
        font-size: 24px;
        animation: blink 0.7s infinite;
    }

    @keyframes blink {
        50% { opacity: 0; }
    }

    .floating-binary {
        position: absolute;
        color: rgba(199, 51, 255, 0.6);
        font-size: 20px;
        animation: 
            float 5s linear infinite,  
            blink 1s infinite alternate;  
    }

    @keyframes float {
        from {
            transform: translateY(45vh);
        }
        to {
            transform: translateY(-45vh);
        }
    }
/*----------------- Common Banner End ---------------------*/


/* -------- Common Video Section From Youtube Start -------- */
    .video-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 40px;
        max-width: 1200px;
        margin: 60px auto;
        padding: 40px 20px;
        background: var(--card-bg);
        border-left: 5px solid var(--primary-color);
        border-radius: 20px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        animation: fadeSlideIn 1s ease-out forwards;
        opacity: 0;
        transform: translateY(40px);
    }

    .video-section.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .video-box {
        position: relative;
        width: 100%;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .video-box video {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 15px;
    }

    .video-text-content {
        color: var(--text-color);
    }

    .video-text-content h2 {
        color: var(--primary-color);
        font-size: 26px;
        margin-bottom: 15px;
    }

    .video-text-content p {
        font-size: 16px;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .video-text-content .btn-primary {
        margin-top: 10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .video-section {
            grid-template-columns: 1fr;
            text-align: center;
            padding: 30px 15px;
        }

        .video-text-content {
            text-align: center;
        }
    }
/* -------- Common Video Section From Youtube End -------- */
    

/* ---------- Common Text & Image Section Start ---------- */
    .image-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 40px;
        max-width: 1200px;
        margin: 60px auto;
        padding: 40px 20px;
        background: var(--card-bg);
        border-left: 5px solid var(--primary-color);
        border-radius: 20px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        animation: fadeSlideIn 1s ease-out forwards;
        opacity: 0;
        transform: translateY(40px);
    }

    .image-section.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .image-text-content {
        color: var(--text-color);
    }

    .image-text-content h2 {
        color: var(--primary-color);
        font-size: 26px;
        margin-bottom: 15px;
    }

    .image-text-content p {
        font-size: 16px;
        text-align: justify;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .image-text-content .btn-primary {
        margin-top: 10px;
    }

    .image-box {
        position: relative;
        width: 100%;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .image-box img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 15px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .image-section {
            grid-template-columns: 1fr;
            text-align: center;
            padding: 30px 15px;
        }

        .image-text-content {
            text-align: center;
        }
    }
/* ---------- Common Text & Image Section End ---------- */


/* ----------------- Contain Section Start --------------- */
    .contain-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin: 60px auto 20px auto;
        max-width: 1200px;
        width: 100%;
    }

    .contain-box {
        display: flex;
        flex-direction: column;
        text-align: justify;
        padding: 30px;
        border-radius: 20px;
        background: var(--card-bg);
        color: var(--text-color);
        border-left: 5px solid var(--primary-color);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }


    .contain-box h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .contain-box p {
        color: var(--text-muted);
        font-size: 16px;
    }

    .action-to-call a {
        margin-top: 5px;
        text-decoration: none;
        display: inline-block; 
        font-size: 16px;
        font-weight: 700;
        color: #c733ff;
        position: relative;
        z-index: 10;
    }

    .action-to-call a:hover {
        color: #CCCCCC;
    }
/* -------------------- Contain Section End ------------------- */


/*-------- Cybersecurity & SEO Check Tools Section Start --------*/
.tools-container {
    font-family: Arial, sans-serif;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    margin: 40px auto;
    border-radius: 20px;
    padding: 40px;
    gap: 20px;
    color: var(--text-color);
    background: var(--card-bg);
    box-shadow: var(--shadow);
    --shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-color);
    }
    h2 { color: var(--primary-color); }
    .tools-box { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
    .tools-section {
        width: 45%;
        text-align: left;
        background: var(--card-bg);
        padding: 20px;
        border-radius: 20px;
        box-shadow: var(--shadow);
        border-left: 5px solid var(--primary-color);
    }
    @media (max-width: 768px) { .tools-section { width: 100%; } }
    input {
        width: 90%;
        font-size: 16px;
        padding: 10px;
        margin: 10px 0;
        border: 2px solid var(--primary-color);
        border-radius: var(--border-radius);
        outline: none;    
    }
    .button-tools-box { display: flex; gap: 10px; margin-top: 10px; }
    button {
        background-color: #c5a5d0;
        color: #ffffff;
        padding: 8px 16px;
        font-size: 16px;
        font-weight: bold;
        letter-spacing: 1px;
        outline: none;
        text-decoration: none;
        border: 2px solid #c733ff;
        border-radius: 8px;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(199, 51, 255, 0.2);
        transition: all 0.3s ease-in-out;     
    }
    button:hover {
        background-color: #f0e1f9;
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(199, 51, 255, 0.4);
    }
    button:active {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(199, 51, 255, 0.2);
    }

    #securityResult, #seoResult {
        margin-top: 15px;
        padding: 10px;
        background: #fff;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        font-size: 14px;
    }
    
    .secure {
        background: #e6f4ea;
        color: #2e7d32;
        padding: 10px;
        border-left: 4px solid #2e7d32;
        margin: 10px 0;
        border-radius: 5px;
    }
    
    .warning {
        background: #fdecea;
        color: #c62828;
        padding: 10px;
        border-left: 4px solid #c62828;
        margin: 10px 0;
        border-radius: 5px;
    }    
/*-------- Cybersecurity & SEO Check Tools Section End --------*/


/*-------- Highlight Section Full Start --------*/
    .highlight-card-wrapper {
        max-width: 1200px;
        width: 100%;
        margin: 40px auto;
        padding: 100px 20px;
        border-radius: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
        background: linear-gradient(145deg, #f9f5ff, #ffffff);
    }

    .highlight-card {
        position: relative;
        max-width: 1200px;
        width: 100%;
        padding: 50px 40px;
        background: var(--card-bg, #fff);
        border-left: 5px solid var(--primary-color);
        border-radius: 20px;
        text-align: center;
        z-index: 1;

        /* Animate entrance and glowing shadow */
        transform: translateY(50px);
        opacity: 0;
        animation: fadeSlideIn 1.2s ease-out forwards, shadowPulse 4s ease-in-out infinite;
    }

    /* Entrance animation */
    @keyframes fadeSlideIn {
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Animated wide horizontal shadow glow */
    @keyframes shadowPulse {
        0% {
            box-shadow: 0 10px 30px 20px rgba(199, 51, 255, 0.15);
        }
        50% {
            box-shadow: 0 10px 100px 60px rgba(199, 51, 255, 0.3); /* wider + softer */
        }
        100% {
            box-shadow: 0 10px 30px 20px rgba(199, 51, 255, 0.15);
        }
    }

    /* Optional: light streak background */
    .highlight-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(120deg, rgba(199, 51, 255, 0.1) 0%, rgba(255,255,255,0.5) 100%);
        transform: rotate(10deg);
        animation: streakMove 5s linear infinite;
        z-index: 0;
        pointer-events: none;
    }

    @keyframes streakMove {
        0% {
            transform: translateX(-50%) rotate(90deg);
        }
        100% {
            transform: translateX(50%) rotate(90deg);
        }
    }

    .highlight-card h2 {
        font-size: 26px;
        color: var(--primary-color);
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
    }

    .highlight-card p {
        font-size: 16px;
        color: var(--text-muted);
        margin-bottom: 30px;
        line-height: 1.6;
        position: relative;
        z-index: 2;
    }

    @media (max-width: 1024px) {
    .highlight-card-wrapper {
        padding: 80px 20px;
    }

    .highlight-card {
        padding: 40px 30px;
    }

    .highlight-card h2 {
        font-size: 24px;
    }

    .highlight-card p {
        font-size: 15px;
    }
    }

    @media (max-width: 768px) {
    .highlight-card-wrapper {
        padding: 60px 15px;
    }

    .highlight-card {
        padding: 30px 20px;
    }

    .highlight-card h2 {
        font-size: 22px;
    }

    .highlight-card p {
        font-size: 14px;
    }

    .highlight-card a.btn-primary {
        font-size: 14px;
        padding: 10px 18px;
    }
    }

    @media (max-width: 480px) {
    .highlight-card h2 {
        font-size: 20px;
    }

    .highlight-card p {
        font-size: 13px;
        line-height: 1.5;
    }

    .highlight-card-wrapper {
        padding: 40px 10px;
    }

    .highlight-card {
        padding: 25px 15px;
    }
    }
/*-------- Highlight Section Full End --------*/



/* ----------------- Offer Section Full Start --------------- */
    .offer-section-full {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        margin: 10px auto;
        max-width: 1200px;
        width: 100%;
    }

    .offer-box-full {
        text-align: center;
        padding: 30px;
        border-radius: 10px;
        color: var(--text-color);
        background: var(--card-bg);
        border-left: 5px solid var(--primary-color);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .offer-box-full h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .offer-box-full p {
        color: var(--text-muted);
        font-size: 16px;
        margin-bottom: 15px;
    }
/* ----------------- Offer Section Full End --------------- */



/* ----------------- Offer Section Start --------------- */
    .offer-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin: 40px auto;
        max-width: 1200px;
        width: 100%;
    }

    .offer-box {
        text-align: justify;
        padding: 30px;
        border-radius: 10px;
        color: var(--text-color);
        background: var(--card-bg);
        border-left: 5px solid var(--primary-color);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .offer-box:hover {
        transform: translateY(-5px);
    }

    .offer-box h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .offer-box p {
        color: var(--text-muted);
        font-size: 16px;
        margin-bottom: 10px;
    }

    .more-text {
        display: none;
        color: #333 !important; 
        font-size: 14px;
        margin-top: 5px;
    }

    .more-text:hover {
        color: #333 !important; 
    }

    .toggle-text {
        color: #c733ff !important; 
        cursor: pointer;
        font-size: 14px;
    }

    .toggle-text:hover {
        color: #333 !important; 
    }
/* ------------------- Offer Section End ------------------ */


/* ---------------- Service Offer Section Start ------------- */
    .service-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 50px 20px;
        margin: 40px auto;
        border-radius: 20px;
        gap: 20px;
        max-width: 1200px;
        width: 100%;
        background: var(--card-bg);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-left: 5px solid var(--primary-color);
        }

    .service-grid {
        display: grid;
        gap: 20px;
        max-width: 1200px;
        width: 100%;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

    .service-container h1 {
        color: var(--primary-color);
        font-size: 26px;
        margin-bottom: 20px;
        }

    .service-box {
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        cursor: pointer;
        background: var(--box-bg);
        border-left: 5px solid var(--primary-color);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

    .service-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .service-box h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .service-box p {
        color: var(--text-muted);
        font-size: 16px;
        margin-bottom: 15px;
    }
/* ---------------- Service Offer Section End --------------- */



/* ---------- Cybersecurity Project Section Start ---------- */
    .project-container {
        max-width: 1200px;
        margin: 20px auto;
        padding: 20px 20px;
    }

    .project-title {
        text-align: center;
        margin-bottom: 40px;
        color: var(--primary-color);
        font-size: 2rem;
    }

    .project-grid {
        display: grid;
        gap: 30px;
        grid-template-columns: repeat(4, 1fr);
    }

    .project-card {
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
        background: var(--card-bg);
        padding: 30px;
        border-radius: 20px;
        border-left: 5px solid var(--primary-color);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .project-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    }

    .project-card h3 {
        text-align: start;
        font-size: 18px;
        margin-bottom: 10px;
        color: #111;
    }

    .project-card p {
        color: var(--text-muted);
        font-size: 14px;
    }

    .project-icon {
        font-size: 26px;
        /* color: var(--primary-color); */
        margin-bottom: 10px;
    }
    .project-link {
        display: inline-block;
        margin-top: 1rem;
        color: var(--primary-color);
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
        }

        .project-link:hover {
            color: #CCCCCC;
            transform: scale(1.03);
        }

    /* Responsive Grid */
    @media (max-width: 1024px) {
        .project-grid {
        grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .project-grid {
        grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .project-grid {
        grid-template-columns: 1fr;
        }
    }

    /*For Smaller Screens */
    @media (max-width: 768px) {
        .project-title {
        font-size: 1.6rem;
        }

        .project-card h3 {
        font-size: 16px;
        }

        .project-card p {
        font-size: 13px;
        }

        .project-icon {
        font-size: 22px;
        }
    }
    /*For Mobile Screens */
    @media (max-width: 480px) {
        .project-container {
            padding: 20px 15px;
        }
    
        .project-card {
            padding: 20px;
        }
    
        .project-card p {
            line-height: 1.5;
        }
    }    
/* ---------- Cybersecurity Project Section End ---------- */


/* ------- My Site Cybersecurity Audit Section Start ------- */
    .aminbiography-com-OWASP-Compliance {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .aminbiography-com-OWASP-Sections {
        margin: 10px 0px;
        font-size: 1rem;
    }
    
    .aminbiography-com-OWASP-Sub-Sections li {
        list-style-type: none;
        padding-left: 5px;
    }
    
    .aminbiography-com-OWASP-Sub-Sections li span {
        line-height: 1.7;
        display: inline;
    }
    
    .aminbiography-com-OWASP-Sub-Sections li i {
        margin-right: 10px;
        flex-shrink: 0;
        margin-top: 2px;
    }
  
/* Progress Bar Styles */
  .owasp-compliance-progress {
    margin: 20px 0;
    font-weight: bold;
    font-size: 14px;
  }
  
  .progress-bar {
    width: 100%;
    background-color: #eee;
    border-radius: 30px;
    overflow: hidden;
    height: 20px;
    margin-top: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  .progress-fill {
    height: 100%;
    width: 0;
    background-color: #0ee347;
    text-align: center;
    line-height: 20px;
    color: #000;
    border-radius: 30px;
    font-size: 13px;
    transition: width 2s ease-in-out;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .aminbiography-com-OWASP-Compliance {
      padding: 0 10px;
    }
  
    .owasp-compliance-progress {
      font-size: 13px;
    }
  
    .progress-fill {
      font-size: 12px;
    }
  
    .aminbiography-com-OWASP-Sub-Sections li {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .aminbiography-com-OWASP-Sub-Sections li i {
      margin-bottom: 5px;
    }
  }
/* ------- My Site Cybersecurity Audit Section End ------- */


/* ------- My Site SEO Audit Section Start ------- */
.aminbiography-com-SEO-Audit {
    margin-bottom: 40px;
    padding: 0 20px;
}

.aminbiography-com-SEO-Audit-Sections {
    margin: 10px 0px;
    font-size: 1rem;
}

.aminbiography-com-SEO-Audit-Sub-Sections li {
    list-style-type: none;
    padding-left: 5px;
}

.aminbiography-com-SEO-Audit-Sub-Sections li span {
    line-height: 1.7;
    display: inline;
}

.aminbiography-com-SEO-Audit-Sub-Sections li i {
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Progress Bar Styles */
.seo-audit-progress {
    margin: 20px 0;
    font-weight: bold;
    font-size: 14px;
}

.seo-progress-bar {
    width: 100%;
    background-color: #eee;
    border-radius: 30px;
    overflow: hidden;
    height: 20px;
    margin-top: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.seo-progress-fill {
    height: 100%;
    width: 0;
    background-color: #0ee347;
    text-align: center;
    line-height: 20px;
    color: #000;
    border-radius: 30px;
    font-size: 13px;
    transition: width 2s ease-in-out;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .aminbiography-com-SEO-Audit {
        padding: 0 10px;
    }

    .seo-audit-progress {
        font-size: 13px;
    }

    .seo-progress-fill {
        font-size: 12px;
    }

    .aminbiography-com-SEO-Audit-Sub-Sections li {
        flex-direction: column;
        align-items: flex-start;
    }

    .aminbiography-com-SEO-Audit-Sub-Sections li i {
        margin-bottom: 5px;
    }
}
/* ------- My Site SEO Audit Section End ------- */

  

/* -------- What Tools & Technology I Use Section Start -------- */ 
    .my-tools-section {
        padding: 80px 40px;
        background: var(--card-bg, #ffffff);
        border-left: 5px solid var(--primary-color, #c733ff);
        border-radius: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        max-width: 1200px;
        width: 100%;
        margin: 60px auto;
    }
    
    .my-tools-wrapper {
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
    }
    
    .my-tools-title {
        font-size: 2.5rem;
        font-weight: bold;
        color: var(--primary-color, #c733ff);
        margin-bottom: 50px;
    }
    
    .my-tools-cards {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
        justify-content: center;
        align-items: stretch;
    }
    
    .my-tools-card {
        background: var(--card-bg, #ffffff);
        padding: 30px 20px;
        border-radius: 20px;
        border-left: 5px solid var(--primary-color, #c733ff);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        text-align: center;
        opacity: 0;
        transform: translateY(40px);
        animation: fadeUp 1s forwards;
    }
    
    .my-tools-card:nth-child(n) {
        animation-delay: calc(0.1s * var(--i));
    }
    
    .my-tools-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }
    
    .my-tools-icon {
        font-size: 50px;
        color: var(--primary-color, #c733ff);
        margin-bottom: 20px;
        animation: bounceIcon 2s infinite;
    }
    
    .my-tools-card h3 {
        font-size: 22px;
        color: var(--primary-color, #c733ff);
        margin-bottom: 15px;
    }
    
    .my-tools-card p {
        font-size: 16px;
        color: var(--text-muted, #666666);
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    /* Used Tools Badge */
    .my-tools-real {
        margin-top: 10px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .tool-used {
        background: #f0e1f9;
        color: var(--primary-color);
        padding: 6px 12px;
        font-size: 14px;
        border-radius: 30px;
        font-weight: 600;
        box-shadow: 0 2px 5px rgba(199, 51, 255, 0.2);
    }
    
    .my-tools-link {
        display: inline-block;
        margin-top: 15px;
        padding: 10px 20px;
        font-weight: bold;
        color: #c733ff;
        border: 2px solid #c733ff;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
    }
    
    .my-tools-link:hover {
        background-color: #f0e1f9;
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(199, 51, 255, 0.4);
    }
    
    /* Animations */
    @keyframes fadeUp {
        to {
        opacity: 1;
        transform: translateY(0);
        }
    }
    
    @keyframes bounceIcon {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .my-tools-title {
        font-size: 2rem;
        }
        .my-tools-cards {
        grid-template-columns: 1fr;
        }
    }
/* ---------- What Tools & Technology I Use Section End ---------- */  



/* -------------------- FAQ Section Start ------------------- */
    .faq-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        max-width: 1200px;
        width: 100%;
        padding: 20px;
        margin: 40px auto 20px auto;
        border-radius: 20px;
        gap: 20px;
        color: var(--text-color);
        background: var(--card-bg);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        border-left: 5px solid var(--primary-color);  
        }

    .faq-section {
        display: flex;
        flex-wrap: wrap;
        max-width: 1000px;
        width: 100%;
        gap: 20px;
        }

    .faq-column {
        flex: 1;
        min-width: 300px;
    }

    .faq-item {
        margin-bottom: 12px;
        overflow: hidden;
        background: var(--bg-color);
        border: 2px solid var(--primary-color);
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(199, 51, 255, 0.2);
        transition: all 0.3s ease-in-out;
    }

    .faq-item.active {
        box-shadow: 0 6px 15px rgba(199, 51, 255, 0.4);
    }

    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
        letter-spacing: 1px;
        color: var(--primary-color);
        background-color: white;
        padding: 12px 16px;
        border-bottom: 2px solid var(--primary-color);
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

    .faq-question:hover {
        background-color: #f0e1f9;
        transform: scale(1.03);
        box-shadow: 0 6px 15px rgba(199, 51, 255, 0.4);
    }

    .faq-question:active {
        transform: scale(0.98);
    }

    .faq-answer {
        text-align: justify;
        padding: 15px;
        font-size: 16px;
        color: var(--text-muted);
        display: none;
    }

    .faq-item.active .faq-answer {
        display: block;
    }
    /* Responsive for Mobile */
    @media (max-width: 768px) {
        .faq-container {
            flex-direction: column;
        }
    }
/* -------------------- FAQ Section End -------------------- */



/* --------------- Client Review Section Start --------------- */
    .client-review-section {
        max-width: 1200px;
        width: 100%;
        text-align: center;
        padding: 60px 20px;
        margin: 40px auto;
        border-radius: 20px;
        gap: 20px;
        position: relative;
        overflow: hidden;
        background: var(--card-bg);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        border-left: 5px solid var(--primary-color);
        }

    .client-review-section h2 {
        font-size: 32px;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    /* Review Container */
    .review-container {
        background: var(--card-bg);
        position: relative;
        max-width: 700px;
        margin: auto;
        overflow: hidden;
        }

    /* Individual Review Box */
    .review-box {
        display: none;
        background: white;
        background: var(--card-bg);
        padding: 30px;
        border-radius: 10px;
        animation: fadeIn 1s ease-in-out;
        }

    .review-box.active {
        display: block;
        }

    /* Review Text */
    .review-text {
        font-size: 18px;
        color: var(--text-muted);
        font-style: italic;
        margin-bottom: 15px;
        opacity: 0;
        animation: fadeInText 1s forwards 0.3s;
        }

    /* Author Name */
    .review-author {
        font-size: 16px;
        font-weight: bold;
        color: var(--primary-color);
        }

    /* Dots Navigation */
    .navigation-dots {
        display: flex;
        justify-content: center;
        margin-top: 15px;
        }

    .dot {
        width: 12px;
        height: 12px;
        background: #ddd;
        margin: 0 5px;
        border-radius: 50%;
        cursor: pointer;
        transition: background 0.3s ease;
        }

    .dot.active {
        background: var(--primary-color);
        }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInText {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .client-review-section h2 {
            font-size: 26px;
        }
        .review-box {
            padding: 20px;
        }
        .review-text {
            font-size: 16px;
        }
        .review-author {
            font-size: 14px;
        }
    }
/* ---------------- Client Review Section End ---------------- */


/* ------------------ Footer Section Start- --------------- */
    footer {
        background: var(--bg-color);
        color: var(--text-color);
        border-top: 5px solid var(--primary-color);
        border-radius: 30px;
        padding: 40px 10%;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .footer-section h3 {
        margin-bottom: 15px;
        font-size: 20px;
        border-bottom: 2px solid var(--primary-color);
        display: inline-block;
        padding-bottom: 5px;
    }

    .footer-section p {
        color: var(--text-muted);
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-section ul {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, auto);
    }

    .footer-section ul li {
        margin: 5px 0;
    }

    .footer-section ul li a {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-section ul li a:hover {
        color: var(--primary-color);
    }

    /* ---------- WhatsApp Start ---------- */
    .whatsapp-contact {
        text-align: center;
    }

    .whatsapp-contact h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .whatsapp-contact p {
        font-size: 22px;
        color: #333;
        margin-bottom: 10px;
    }

    .whatsapp-icon {
        font-size: 48px;
        color: #25D366;
        transition: transform 0.3s ease, color 0.3s ease;
        display: inline-block;
    }

    .whatsapp-icon:hover {
        color: #1ebe5d;
        transform: scale(1.2);
    }
    /* ---------- WhatsApp End ---------- */

    /* *****Social-media***** Section Start */
    .social-icons-section {
        margin-top: 15px;
        text-align: center;
    }

    .social-icons span {
        font-weight: bold;
        font-size: 20px;
    }

    /* Social media's default color */
    .social-icons a {
        display: inline-block;
        text-decoration: none;
        margin: 0 8px;
        font-size: 20px;
        transition: transform 0.3s ease;
    }

    .social-icons a i {
        transition: transform 0.3s ease;
    }

    /* Social Media default brand colors */
    .social-icons a[href*="github.com"] i {
        color: #181717; 
    }
    .social-icons a[href*="linkedin.com"] i {
        color: #0077B5; 
    }
    .social-icons a[href*="facebook.com"] i {
        color: #1877F2; 
    }

    .social-icons a[href*="twitter.com"] i {
        color: #1DA1F2; 
    }

    .social-icons a[href*="instagram.com"] i {
        color: #E4405F; 
    }

    .social-icons a i.fa-threads {
        color: #000000; 
    }

    .social-icons a i.fa-reddit {
        color: #FF4500; 
    }

    .social-icons a i.fa-pinterest {
        color: #E60023; 
    }

    .social-icons a i.fa-tiktok {
        color: #000000; 
    }

    .social-icons a i.fa-medium {
        color: #12100E; 
    }

    .social-icons a i.fa-quora {
        color: #A82400; 
    }

    .social-icons a[href*="youtube.com"] i {
        color: #FF0000; 
    }

    /* On hover, only transform */
    .social-icons a:hover i {
        transform: scale(1.2);
    }
    /* *****Social-media****** Section End */


    .footer-bottom {
        text-align: center;
        margin-top: 20px;
        border-top: 1px solid var(--text-muted);
        padding-top: 15px;
        font-size: 14px;
        color: var(--text-muted);
    }

    /* Chat Messenger Section Start */
    .chat-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: var(--primary-color);
        color: white;
        border: none;
        padding: 12px 18px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 20px;
        transition: background 0.3s;
        z-index: 9999;
    }

    .chat-button:hover {
        background: #CCCCCC;
    }

    .chat-popup {
        display: none;
        position: fixed;
        bottom: 80px;
        right: 20px;
        width: 300px;
        background: var(--bg-color);
        color: var(--text-color);
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        z-index: 99999;
    }

    .chat-header {
        background: var(--primary-color);
        padding: 10px;
        text-align: center;
        font-weight: bold;
        color: white;
        position: relative;
    }

    /* Refresh Button */
    .refresh-chat {
        position: absolute;
        left: 10px;
        top: 5px;
        font-size: 18px;
        cursor: pointer;
        color: white;
    }

    .refresh-chat:hover {
        color: #CCCCCC;
    }

    /* Close Button */
    .close-chat {
        position: absolute;
        right: 10px;
        top: 5px;
        font-size: 18px;
        cursor: pointer;
        color: white;
    }

    .close-chat:hover {
        color: #CCCCCC;
    }

    .chat-body {
        padding: 10px;
        height: 250px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .chat-input {
        display: flex;
        border-top: 1px solid var(--text-muted);
    }

    .chat-input input {
        flex: 1;
        padding: 5px;
        border: none;
        font-size: 14px;
    }

    .chat-input button {
        background: var(--primary-color);
        border: none;
        padding: 10px;
        cursor: pointer;
        color: white;
    }

    .chat-input button:hover {
        background: #CCCCCC;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            text-align: center;
        }
    }
    /* Chat Messenger Section End */
/* ------------------- Footer Section End -------------------- */


/* ------------------- About Page Start ------------------- */
/* Resume & LinkedIn Section Start */
    .welcome-speech-about-me {
        margin: 10px 0px;
    }

    .contain-box img {
    width: 100%;
    height: auto;
    max-width: 100%;
    /* border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    }

    @media (max-width: 768px) {
    .contain-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contain-box img {
        max-width: 400px;
        margin: 0 auto;
    }
    }

    .contain-resume-linkedIn {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin: 40px auto;
        max-width: 1200px;
        width: 100%;
    }

    /* Section Box Styling */
    .resume-box, .linkedin-box {
        display: flex;
        flex-direction: column;
        text-align: justify;
        color: var(--text-color);
        padding: 30px;
        border-radius: 20px;
        background: var(--card-bg);
        border-left: 5px solid var(--primary-color);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        }

    /* Section Titles */
    .resume-box h2, .linkedin-box h2 {
        font-size: 22px;
        margin-bottom: 15px;
        color: var(--primary-color);
    }

    /* Section Paragraphs */
    .resume-box p, .linkedin-box p {
        font-size: 16px;
        color: var(--text-muted);
        margin-bottom: 30px;
        padding: 0 10px;
    }
    /* Responsive: Stack sections on smaller screens */
    @media (max-width: 768px) {
        .contain-resume-linkedIn {
            grid-template-columns: 1fr; 
        }
    }
    /* Resume & LinkedIn Section End */

    /* Description Section Full Start */
    .description-section-full {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        background: var(--card-bg);
        margin: 20px auto;
        border-radius: 20px;
        max-width: 1200px;
        width: 100%;
        border-left: 5px solid var(--primary-color);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .description-box-full {
        text-align: center;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .description-box-full h1 {
        color: var(--primary-color);
        font-size: 28px;
        margin-bottom: 30px;
    }

    .description-box-full h2 {
        font-family: 'Dancing Script', cursive;
        color: var(--primary-color);
        font-size: 22px;
        margin-bottom: 5px;
        text-align: start;
    }

    .description-box-full h3 {
        color: var(--primary-color);
        font-size: 18px;
        margin-bottom: 15px;
        text-align: start;
    }

    .description-box-full h4 {
        color: var(--primary-color);
        font-size: 18px;
        margin: 20px auto 0px auto;
        text-align: start;
    }

    .description-box-full p {
        color: var(--text-muted);
        font-size: 16px;
        margin-bottom: 10px;
        text-align: justify;
    }
    /* Description Section Full End */
/* ------------------- About Page End ------------------- */


/* ----------- Cybersecurity Service Offer Page Start ----------- */
/* Cybersecurity Service Offer Card Start */
    .animated-card-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 60px auto;
        padding: 0 20px;
    }

    .animated-card {
        background: var(--card-bg, #fff);
        border-left: 5px solid var(--primary-color);
        padding: 30px 25px;
        border-radius: 20px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        opacity: 0;
        transform: translateY(50px);
        animation: fadeSlideUp 0.8s forwards;
    }

    .animated-card:nth-child(1) { animation-delay: 0.2s; }
    .animated-card:nth-child(2) { animation-delay: 0.4s; }
    .animated-card:nth-child(3) { animation-delay: 0.6s; }
    .animated-card:nth-child(4) { animation-delay: 0.8s; }

    .animated-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .animated-card .card-icon {
        font-size: 40px;
        color: var(--primary-color);
        margin-bottom: 15px;
        animation: bounceIcon 2s infinite;
    }

    .animated-card h3 {
        text-align: center;
        font-size: 20px;
        margin-bottom: 10px;
        color: var(--primary-color);
    }

    .animated-card h5 {
        text-align: start;
        font-size: 18px;
        color: var(--text-muted);
    }

    .animated-card p {
        text-align: start;
        font-size: 16px;
        color: var(--text-muted);
        margin: 5px 0px;
    }

    .animated-card ul {
        list-style: none;
        padding-left: 0; 
    }

    .animated-card li {
        text-align: start;
        text-decoration: none;
    }

    @keyframes fadeSlideUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes bounceIcon {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-6px); }
    }

    /* Mobile: stack cards 1 column */
    @media (max-width: 768px) {
        .animated-card-section {
            grid-template-columns: 1fr;
            padding: 0 10px;
        }
    }
/* Cybersecurity Service Offer Card End */



/* --------------- SEO Service Offer Page Start --------------- */
    .service-offer-container {
        text-align: center;
        margin: 60px auto;
        color: var(--primary-color);
    }

    .offer-section-full {
        display: flex;
        flex-direction: column;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .service-offer-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        gap: 30px;
    }

    .service-offer-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        background: var(--card-bg);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-left: 5px solid var(--primary-color);
    }

    .service-offer-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: var(--card-bg);
        padding: 30px;
        border-radius: 20px;
        border-left: 5px solid var(--primary-color);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .service-offer-box h2 {
        text-align: start;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .service-offer-box p {
        margin: 5px auto;
        text-align: start;
        font-size: 15px;
        color: var(--text-muted);
        margin-bottom: 8px;
    }

    .service-offer-box ul {
        color: #555555;
        list-style: none;
        padding-left: 0; 
    }

    .service-offer-box li {
        text-align: start;
        text-decoration: none;
    }

    .service-offer-highlight {
        text-align: center;
        color: var(--primary-color);
        font-weight: bold;
        margin-top: 40px;
    }

    @media (max-width: 768px) {
        .service-offer-row {
        grid-template-columns: 1fr;
        }
        .service-offer-img {
        height: auto;
        }
    }

    @keyframes fadeInLeft {
        from { opacity: 0; transform: translateX(-50px); }
        to { opacity: 1; transform: translateX(0); }
    }
    
    @keyframes fadeInRight {
        from { opacity: 0; transform: translateX(50px); }
        to { opacity: 1; transform: translateX(0); }
    }
    
    .fade-in-left, .fade-in-right {
        opacity: 0;
    }
    
    .fade-in-left.visible {
        animation: fadeInLeft 1s ease forwards;
    }
    
    .fade-in-right.visible {
        animation: fadeInRight 1s ease forwards;
    }
/* --------------- SEO Service Offer Page End --------------- */



/* --------------- Consulting Service Page Start   --------------- */
    .shine-card-section {
        display: flex;
        flex-direction: column;
        gap: 30px;
        max-width: 1200px;
        margin: 60px auto;
        padding: 0 20px;
    }

    .card-row {
        display: grid;
        gap: 30px;
    }

    .card-row:not(.full-width) {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-row.full-width {
        grid-template-columns: 1fr;
    }

    .animated-card {
        background: var(--card-bg, #fff);
        border-left: 5px solid var(--primary-color);
        padding: 30px 25px;
        border-radius: 20px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        opacity: 0;
        transform: translateY(40px);
        animation: fadeUp 0.8s ease-out forwards;
    }

    .animated-card.delay { animation-delay: 0.3s; }
    .animated-card.delay-2 { animation-delay: 0.6s; }

    /* New Icon Style */
    .shiny-icon {
        font-size: 44px;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
        color: var(--primary-color);
        background: linear-gradient(90deg, #c733ff, #fff, #c733ff);
        background-size: 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: background-position 1s ease;
    }

    .animated-card:hover .shiny-icon {
        background-position: 200% center;
    }

    /* Text Styling */
    .animated-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: var(--primary-color);
    }

    .animated-card h5 {
        margin: 5px auto;
        text-align: center;
        color: var(--text-muted);
    }

    .animated-card p {
        margin: 5px auto;
        text-align: center;
        font-size: 16px;
        color: var(--text-muted);
        margin-bottom: 8px;
    }

    .animated-card ul {
        color: #555555;
        list-style: none;
        padding-left: 0; 
    }

    .animated-card li {
        text-align: center;
        text-decoration: none;
        font-weight: bold;
    }

    /* Animations */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .card-row {
            grid-template-columns: 1fr !important;
        }
    }
/* ---------------- Consulting Service Page End   ---------------- */


/* ----------- Blogs Cybersecurity Page Start ------------ */
    .blogs-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        width: 100%;
        margin: 60px auto;
        padding: 0 20px;
    }

    .blogs-card {
        background: var(--card-bg, #fff);
        border-left: 5px solid var(--primary-color, #c733ff);
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        color: var(--text-color, #333);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        opacity: 0;
        transform: translateY(40px);
        animation: slideInUp 0.6s forwards;
    }

    .blogs-card:nth-child(odd) {
        animation-delay: 0.2s;
    }

    .blogs-card:nth-child(even) {
        animation-delay: 0.4s;
    }

    .blogs-card img.service-offer-img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 15px;
    }

    .blogs-card h3 {
        font-size: 20px;
        color: var(--primary-color, #c733ff);
        margin-bottom: 10px;
    }

    .blogs-card p {
        font-size: 16px;
        color: var(--text-muted, #666);
        margin-bottom: 10px;
        text-align: justify;
    }

    .blogs-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .blogs-wrapper {
            grid-template-columns: 1fr;
        }
    }
/* ----------- Blogs Cybersecurity Page End ------------ */


/* ----------- Blog SEO Page Start ------------ */
    .blog-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 30px;
        max-width: 1200px;
        width: 100%;
        margin: 60px auto;
        padding: 0 20px;
    }

    .blog-card {
        background: var(--card-bg, #fff);
        border-left: 5px solid var(--primary-color, #c733ff);
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        color: var(--text-color, #333);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        opacity: 0;
        transform: translateY(40px);
        animation: slideInUp 0.6s forwards;
    }

    .blog-card:nth-child(odd) { animation-delay: 0.2s; }
    .blog-card:nth-child(even) { animation-delay: 0.4s; }

    .blog-card img.service-offer-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 15px;
    }

    .blog-card h3 {
        font-size: 20px;
        color: var(--primary-color, #c733ff);
        margin-bottom: 10px;
    }

    .blog-card p {
        font-size: 16px;
        color: var(--text-muted, #666);
        margin-bottom: 10px;
        text-align: justify;
    }

    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .blog-wrapper {
            grid-template-columns: 1fr;
        }
    }
/* ----------- Blog SEO Page End ------------ */


/* ---------------- My Library Page Start ---------------- */
    .repository {
        max-width: 1200px;
        margin: 20px auto;
        padding: 20px;
        background: #111;
        border-radius: 8px;
        box-shadow: 4px 8px 80px var(--primary-color, #c733ff);
    }

    .repository-header {
        color: #FFFFFF;
        text-align: center;
        margin-bottom: 40px;
    }

    .repository-header h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .repository-header small {
        font-size: 1rem;
        color: #ccc;
    }

    .repository-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 30px;
    }

    .repository-col {
        flex: 1 1 25%;
        min-width: 250px;
        padding: 15px;
        margin: 10px;
        border-radius: 6px;
        background: rgba(51, 51, 54, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .repository-col:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .repository-col h3 {
        color: #FFFFFF;
        text-align: center;
        margin-bottom: 15px;
        font-size: 1.5rem;
    }

    .repository-hr {
        width: 0;
        height: 1px;
        margin: 10px auto;
        background-color: #eee;
        border: none;
        transition: width 0.5s ease;
    }

    .repository-col:hover .repository-hr {
        width: 30%;
    }

    .repository-ul {
        list-style: none;
        padding: 0;
    }

    .repository-li {
        margin: 10px 0;
        text-align: center;
    }

    .repository-li a {
        color: #eee;
        text-decoration: none;
        transition: color 0.3s, text-decoration 0.3s;
    }

    .repository-li a:hover {
        color: #B2BEB5;
        text-decoration: underline;
    }

    .repository-flex-ul {
        list-style: none;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .repository-flex-li {
        flex: 1 1 45%;
        max-width: 45%;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        padding: 10px;
        border-radius: 8px;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .repository-flex-li:hover {
        transform: scale(1.05);
        background-color: rgba(179, 136, 255, 0.2);
    }

    .repository-flex-li a {
        color: #FFFFFF;
        text-decoration: none;
        display: inline-block;
        width: 100%;
        transition: color 0.3s;
    }

    .repository-flex-li a:hover {
        color: #00FFFF;
        text-decoration: underline;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .repository-col {
        flex: 1 1 45%;
        }
        .repository-flex-li {
        max-width: 100%;
        }
    }

    @media (max-width: 600px) {
        .repository-col {
        flex: 1 1 100%;
        }
        .repository-flex-ul {
        flex-direction: column;
        align-items: center;
        }
        .repository-flex-li {
        max-width: 90%;
        }
    }
/* ---------------- My Library Page End ---------------- */



/* ---------------- Contact Page Start ---------------- */
    .contact-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
        max-width: 1200px;
        width: 100%;
        margin: 60px auto 0px auto;
        padding: 0 15px; 
    }

    .contact-box {
        flex: 1 1 48%;
        min-width: 320px;
        padding: 30px;
        border-radius: 20px;
        background: var(--card-bg);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-left: 5px solid var(--primary-color);
    }

    .contact-box h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .contact-info p {
        margin-bottom: 10px;
        font-size: 16px;
        color: var(--text-muted);
    }

    /* Virtual Meeting Link Start */
    .contact-virtual-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .contact-virtual-link i {
        font-size: 20px;
        color: var(--primary-color);
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .contact-virtual-link:hover {
        color: var(--primary-color);
    }

    .contact-virtual-link:hover i {
        transform: scale(1.2);
    }
    /* Virtual Meeting Link End */

    /* Contact Email Start */
    .contact-email-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .contact-email-link i {
        font-size: 20px;
        color: #1A73E8;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .contact-email-link:hover {
        color: #EA4335;
    }

    .contact-email-link:hover i {
        color: #EA4335;
        transform: scale(1.2);
    }
    /* Contact Email End */

    /* Contact WhatsApp/Phone Link Start */
    .contact-whatsapp-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .contact-whatsapp-link i {
        font-size: 20px;
        color: #25D366;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .contact-whatsapp-link:hover {
        color: #25D366;
    }

    .contact-whatsapp-link:hover i {
        transform: scale(1.2);
    }
    /* Contact WhatsApp/Phone Link End */
    
    /* Contact Address Link Start */
    .contact-location-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .contact-location-link i {
        font-size: 20px;
        color: var(--primary-color);
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .contact-location-link:hover {
        color: var(--primary-color);
    }

    .contact-location-link:hover i {
        transform: scale(1.2);
    }
    /* Contact Address Link End */

    /* Contact Hours Start */
    .contact-hours-header {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contact-hours-header i {
        font-size: 20px;
        color: var(--primary-color);
    }

    .contact-hours-grid p {
        display: flex;
        justify-content: space-between;
        max-width: 300px;
        margin: 2px 0;
        font-size: 15px;
    }

    .contact-hours-grid span {
        color: #555;
    }
    /* Contact Hours End */


    /* Contact Form Start */
    /* Contact Form Popup Massage For Home Tools CTA Start */
    .popup-message {
        background-color: #c733ff;
        color: white;
        cursor: pointer;
        font-size: 16px;
        padding: 15px 25px;
        margin-bottom: 20px;
        border-radius: 10px;
        text-align: center;
        animation: fadeIn 0.6s ease-in-out;
    }
    
    .hidden {
        display: none;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }    
    /* Contact Form Popup Massage For Home Tools CTA End */
    /*Form Input Start */
    form {
        display: grid;
        gap: 16px;
    }
    
    form input,
    form textarea {
        padding: 20px 12px 6px; 
        border: 1px solid #ccc;
        border-radius: 6px;
        background: white;
        width: 100%;
        font-size: 16px;
    }
    
    form label {
        position: absolute;
        top: 20px;
        left: 12px;
        font-size: 14px;
        color: #666;
        transition: 0.2s;
        background: #f8f8f8;
        padding: 0 4px;
        pointer-events: none;
    }
    
    form input:focus + label,
    form input:not(:placeholder-shown) + label,
    form textarea:focus + label,
    form textarea:not(:placeholder-shown) + label {
        top: -10px;
        left: 8px;
        font-size: 12px;
        color: var(--primary-color);
        background: #fff;
    }
    
    form button {
        padding: 10px;
        background-color: var(--primary-color);
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    form button:hover {
        background-color: #CCCCCC;
    }
    /*Form Input End*/
    /* Contact Form End */

    iframe {
        width: 100%;
        height: 90%;
        border: none;
        border-radius: 10px;
        min-height: 400px;
    }

    .earth-container {
        position: relative;
        height: 400px;
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
    }

    .earth-container iframe {
        width: 100%;
        height: 100%;
    }

    @media (max-width: 768px) {
        .contact-row {
        flex-direction: column;
        padding: 0 20px;
        }

        .contact-box {
        width: 100%;
        }
    }
/* ------------------- Contact Page End ------------------- */

/* ------------------- Login Page Start --------------------*/
    .login-section {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 4rem 1rem;
        width: 100%;
    }

    .login-container {
        width: 100%;
        max-width: 500px;
        padding: 3rem 2rem;
        border-radius: 1.5rem;
        background: var(--card-bg);
        border-left: 5px solid var(--primary-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
    }

    #login-form-title {
        text-align: center;
        color: var(--primary-color);
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .login-form {
        display: grid;
        gap: 20px;
    }

    .login-field {
        position: relative;
    }

    .login-field input {
        padding: 20px 12px 6px;
        border: 1px solid #ccc;
        border-radius: 6px;
        background: white;
        width: 100%;
        font-size: 16px;
    }

    .login-field label {
        position: absolute;
        top: 20px;
        left: 12px;
        font-size: 14px;
        color: var(--text-muted);
        transition: 0.2s;
        background: #f8f8f8;
        padding: 0 4px;
        pointer-events: none;
    }

    .login-field input:focus + label,
    .login-field input:not(:placeholder-shown) + label {
        top: -10px;
        left: 8px;
        font-size: 12px;
        color: var(--primary-color);
        background: #fff;
    }

    .login-error {
        color: red;
        font-size: 0.85rem;
        margin-top: 4px;
    }

    .login-form-actions {
        text-align: center;
    }

    .login-form-actions button {
        background-color: white;
        color: #c733ff;
        padding: 8px 30px;
        font-size: 14px;
        text-decoration: none;
        border: 2px solid #c733ff;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 4px 10px rgba(199, 51, 255, 0.2);
        letter-spacing: 1px;
        outline: none;
    }

    .login-form-actions button:hover {
        background-color: #f0e1f9;
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(199, 51, 255, 0.4);
    }

    .login-toggle {
        text-align: center;
        margin-top: 1.5rem;
        color: var(--text-muted);
        cursor: pointer;
    }

    .login-toggle:hover {
        color: var(--primary-color);
    }

    .hidden {
        display: none;
    }

    @media (max-width: 600px) {
        .login-container {
        padding: 2rem 1rem;
        }

        #login-form-title {
        font-size: 1.6rem;
        }

        .login-form-actions button {
        width: 100%;
        }
    }
/* -------------------- Login Page End ---------------------*/  






