:root {
            --primary: #6F00FF;
            --primary-dark: #2E3A59;
            --primary-light: #818cf8;
            --dark: #1e293b;
            --secondary: #6c757d;
            --success: #28a745;
            --warning: #ffc107;
            --danger: #dc3545;
            --light: #f8f9fa;
            --gray: #f9f9f9;
            --border-radius: 8px;
            --card-bg: #ffffff;
            --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            --radius: 6px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
          
        }
        .elementor-kit-15 a:hover {
            font-family: inherit;
        }

        .custom-widget.cta-style h2 {
            text-align: center;
            color: #fff;
            line-height: normal;
            font-size: 36px;
            margin: 0px 0px 8px;
        }
        
        .custom-widget.cta-style p {
            text-align: center;
            color: #fff;
            font-size: 18px;
            line-height: normal;
            margin: 0px auto;
            max-width: 900px;
        }
          .container {
            margin: 0px auto;
            padding-left: 15px;
            padding-right: 15px;
            clear: both;
        }
        .ast-page-builder-template .site-content > .ast-container {
            max-width: 100%;
            padding: 0;
            flex-wrap: wrap;
        }

        .subtitle {
            color: var(--secondary);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .card {
            background: white;
            border-radius: var(--border-radius);
            box-shadow:none;
            padding: 0px;
            margin-bottom: 20px;
        }

        .password-display {
            display: flex;
            margin-bottom: 25px;
            border: 1px solid #e0e0e0;
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        #password {
            flex: 1;
            padding: 15px;
            font-size: 1.2rem;
            border: none;
            outline: none;
            background-color: #f9f9f9;
        }

        #copy-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            cursor: pointer;
            border-radius: 0px;
            transition: var(--transition);
        }

        #copy-btn:hover {
            background: var(--primary-dark);
        }

        .settings {
            margin-bottom: 25px;
        }

        .setting-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }

        .length-control {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        #length-slider {
            flex: 1;
            height: 8px;
            -webkit-appearance: none;
            background: #e0e0e0;
            border-radius: 4px;
            outline: none;
        }

        #length-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            background: var(--primary);
            border-radius: 50%;
            cursor: pointer;
        }

        #length-value {
            font-weight: bold;
            min-width: 30px;
            text-align: center;
        }

        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 10px;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .checkbox-item input {
            width: 18px;
            height: 18px;
        }

        .strength-meter {
            margin-bottom: 25px;
        }

        .strength-display {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .strength-text {
            font-weight: 600;
            margin-right: 10px;
        }

        .strength-bar {
            height: 10px;
            flex: 1;
            background: #e0e0e0;
            border-radius: 5px;
            overflow: hidden;
        }

        .strength-fill {
            height: 100%;
            width: 0%;
            border-radius: 5px;
            transition: var(--transition);
        }

        .weak {
            background-color: var(--danger);
            width: 33%;
        }

        .medium {
            background-color: var(--warning);
            width: 66%;
        }

        .strong {
            background-color: var(--success);
            width: 100%;
        }

        .actions {
            display: flex;
            gap: 15px;
        }

        button {
            padding: 12px 20px;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
        }

        #generate-btn {
            flex: 1;
            background: var(--primary);
            color: white;
        }

        #generate-btn:hover {
            background: var(--primary-dark);
        }

        #reset-btn {
            background: #f0f0f0;
            color: var(--dark);
        }

        #reset-btn:hover {
            background: #e0e0e0;
        }

        .tips {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: none;
            padding: 0px;
            margin-top: 20px;
        }

        .tips h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        .tips ul {
            padding-left: 20px;
        }

        .tips li {
            margin-bottom: 8px;
        }

        .toast {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--dark);
            color: white;
            padding: 10px 20px;
            border-radius: var(--border-radius);
            transition: var(--transition);
            opacity: 0;
            z-index: 1000;
        }

        .toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        @media (max-width: 600px) {
            .card {
                padding: 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .checkbox-group {
                grid-template-columns: 1fr;
            }
            
            .actions {
                flex-direction: column;
            }
        }
        
    /*-- unit convertor css --*/
    .copy-btn {
            transition: all 0.2s ease;
        }
        .copy-btn:hover {
            transform: scale(1.05);
        }
        .copy-btn.copied {
            background-color: #10b981 !important;
        }
        .unit-card {
            transition: transform 0.2s ease;
        }
        .unit-card:hover {
            transform: translateY(-2px);
        }
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        .dark ::-webkit-scrollbar-track {
            background: #1f2937;
        }
        ::-webkit-scrollbar-thumb {
            background: #c5c5c5;
            border-radius: 4px;
        }
        .dark ::-webkit-scrollbar-thumb {
            background: #4b5563;
        }
        .hidden { display:none;}
        
        
/*-- website speed checker css--*/

 
        .input-section {
            padding: 0px;
            border-bottom: 1px solid #eee;
        }
        
        .input-section .input-group {
            display: flex;
            margin-bottom: 20px;
        }
        
        .input-section .input-group input {
            flex: 1;
            padding: 15px;
            height: auto;
            border: 1px solid #ddd;
            border-radius: 8px 0 0 8px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s;
        }
        
        .input-section .input-group input:focus {
            border-color: #4a6cf7;
        }
        
        .input-section .input-group button {
            background: #4a6cf7;
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: background 0.3s;
        }
        
        .input-section .input-group button:hover {
            background: #3a5cd8;
        }
        
        .input-section .examples {
            font-size: 14px;
            color: #666;
            margin-top: 10px;
        }
        
        .results-section {
            padding: 15px 0px;
        }
        
        .results-section .metrics {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .results-section .metric-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }
        
        .results-section .metric-title {
            font-size: 16px;
            color: #555;
            margin-bottom: 10px;
        }
        
        .results-section .metric-value {
            font-size: 28px;
            font-weight: 700;
            color: #4a6cf7;
        }
        
        .results-section .recommendations {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
        }
        
        .results-section .recommendations h3 {
            margin-bottom: 15px;
            color: #333;
            font-size: 20px;
        }
        
        .results-section .recommendation-list {
            list-style-type: none;
        }
        
        .results-section .recommendation-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .results-section .recommendation-list li:last-child {
            border-bottom: none;
        }
        
        .results-section .recommendation-list li::before {
            content: "•";
            color: #4a6cf7;
            font-weight: bold;
            display: inline-block;
            width: 20px;
            font-size: 20px;
        }
        
        .loading {
            text-align: center;
            padding: 30px;
            display: none;
        }
        
        .spinner {
            border: 4px solid rgba(0, 0, 0, 0.1);
            border-left: 4px solid #4a6cf7;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .results-section .grade {
            font-size: 18px;
            font-weight: 600;
            margin-top: 10px;
            padding: 5px 15px;
            border-radius: 20px;
            display: inline-block;
        }
        
        .results-section .grade-a {
            background: #e6f7ee;
            color: #00a65a;
        }
        
        .results-section .grade-b {
            background: #fff4e6;
            color: #f39c12;
        }
        
        .results-section .grade-c {
            background: #ffe6e6;
            color: #e74c3c;
        }
        
        @media (max-width: 600px) {
            .results-section .metrics {
                grid-template-columns: 1fr;
            }
            
            .input-section .input-group {
                flex-direction: column;
            }
            
            .input-section input {
                border-radius: 8px;
                margin-bottom: 10px;
            }
            
            .input-section  button {
                border-radius: 8px;
            }
        }
        
        /**-- LANDING HOME PAGE CSS--*/
        
        .home-wrapper .card {
            background:transparent!important;
            padding: 15px;
            width: 100%;
            max-width: 100%;
            margin-bottom: 30px;
            text-align: center;
        }

        .home-wrapper .upload-area {
            margin-bottom: 25px;
            cursor: pointer;
            position: relative;
            background: linear-gradient(135deg, rgba(255,255,255,0.75), rgba(255,255,255,0.4));
              backdrop-filter: blur(12px);
              border: 2px dashed #7c3aed;
              border-radius: 18px;
              padding: 40px 20px;
              text-align: center;
              transition: all 0.35s ease;
              box-shadow: 0 10px 35px rgba(124,58,237,0.15);
        }

        .home-wrapper .upload-area:hover, .home-wrapper .upload-area.dragover {
            border-color: var(--primary);
            background-color: rgba(99, 102, 241, 0.05);
             transform: translateY(-4px) scale(1.01);
              box-shadow: 0 18px 50px rgba(124,58,237,0.35);
              border-color: #5b21b6;
        }

        .home-wrapper .upload-area.dragover::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(99, 102, 241, 0.1);
            border-radius: var(--radius);
            z-index: 1;
        }

        .home-wrapper .upload-area.dragover::after {
            content: 'Drop your image here';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--primary);
            z-index: 2;
        }

        .home-wrapper .upload-area i {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 15px;
            position: relative;
            z-index: 3;
        }

        .home-wrapper .upload-text {
            margin-bottom: 15px;
            position: relative;
            z-index: 3;
        }

        .formats-list {
            font-size: 0.8rem;
            color: var(--secondary);
            margin-top: 10px;
        }

        .home-wrapper .btn {
            margin-top: 0px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(99, 102, 241, 0.3);
             background: linear-gradient(135deg, #7c3aed, #5b21b6);
              color: #fff;
              border: none;
              padding: 12px 28px;
              border-radius: 999px;
              font-weight: 600;
              cursor: pointer;
              transition: 0.3s;
        }

        .home-wrapper .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(99, 102, 241, 0.4);
            box-shadow: 0 10px 25px rgba(124,58,237,0.6);
  transform: scale(1.05);
        }

        .home-wrapper .btn:active {
            transform: translateY(0);
        }

        .home-wrapper .btn:disabled {
            background: var(--secondary);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .home-wrapper .form-group {
            margin-bottom: 20px;
        }

        .home-wrapper label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .home-wrapper select {
            width: 100%;
            height: 54px;
            background-color: var(--light);
            appearance: none;
            background-image:  url("../images/down-arrow.svg");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 16px;
            width: 100%;
          padding: 14px 18px;
          border-radius: 14px;
          border: 2px solid rgba(124,58,237,0.3);
          font-size: 16px;
          transition: 0.3s ease;
          box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .home-wrapper select:focus {
          outline: none;
          border-color: #7c3aed;
          box-shadow: 0 0 0 4px rgba(124,58,237,0.25);
        }

        .home-wrapper .preview-container {
            display: none;
            text-align: center;
            margin-top: 25px;
        }
        .elementor-element.elementor-element-cfdabef.e-con-full.blue_cta_bar {
            box-shadow: 0 5px 20px rgba(0, 0, 0, .05), 0 5px 20px rgba(0, 0, 0, .05);
        }

        .home-wrapper .preview-title {
            margin-bottom: 15px;
            font-weight: 500;
        }

        .home-wrapper .image-preview {
            max-width: 100%;
            margin: 0px auto;
            max-height: 300px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        .home-wrapper .loading {
            display: none;
            text-align: center;
            margin: 30px 0;
        }

        .home-wrapper .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(99, 102, 241, 0.2);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .home-wrapper .file-info {
            background-color: #f1f5f9;
            padding: 10px 15px;
            border-radius: 8px;
            margin-top: 15px;
            display: none;
        }

        .home-wrapper .file-info i {
            margin-right: 8px;
            color: var(--primary);
        }

        

        @media (max-width: 600px) {
            .home-wrapper .card {
                padding: 10px;
            }
            
            .home-wrapper h1 {
                font-size: 2rem;
            }
            
            .home-wrapper .upload-area {
                padding: 10px 15px;
            }
        }
        
        ul.mega-sub-menu ul.menu li.menu-item > a.menu-link {
            border-bottom: 1px #ddd solid;
            display: block;
            padding: 4px 5px;
        }
         
       
       
        
        #mega-menu-wrap-primary #mega-menu-primary li#mega-menu-item-1197 >a {
            color: #fff;
            border-radius: 4px;
            font-weight: 600;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 21px;
            padding: 0px 24px !important;
        }
        /* #mega-menu-wrap-primary #mega-menu-primary li#mega-menu-item-1197:hover {*/
        /*    background: #2E3A59;*/
        /*}*/
        /* #mega-menu-wrap-primary #mega-menu-primary li#mega-menu-item-1197 >a:hover {*/
        /*     color:#fff;*/
        /*     background: #2E3A59;*/
        /* }*/
              
        ul.mega-sub-menu ul.menu li.menu-item > a.menu-link:hover {
            background: #f9f9f9;
        }
        
        form.e-search-form svg.e-font-icon-svg.e-fas-search {
            margin-top: 4px;
        }
        
        
        h1.entry-title {
    display: none;
}
h1.elementor-heading-title.elementor-size-default {
    font-size: 34px !important;
}
.elementor-kit-15 a:hover {
    font-family: inherit;
}
.elementor-nav-menu--dropdown {
	background: transparent;
}
div#ast-scroll-top {
    width: 30px;
    height: 30px;
}
#ast-scroll-top .ast-icon.icon-arrow svg {
        width: 18px!important;
        margin: 6px auto 0px!important;
    }
.elementor-nav-menu.sm-vertical {
    padding: 0px !important;
    margin: 0px !important;
}
.elementor-element.white-panel .e-con-inner {
    background: #fff;
}
@media only screen and (max-width: 767px) {
	.elementor-element.header-section >.e-con-inner {
    flex-wrap: nowrap;
}

}
/*.elementor-element.box_grid .elementor-element.elementor-shape-circle {*/
/*    min-height: 130px;*/
/*}*/

/*.elementor-element.box_grid:hover .elementor-element.elementor-shape-circle {*/
/*	transform: translateY(-10px;);*/
/*	transform: all 0.3s;*/
/*}*/
/*.elementor-element.box_grid .elementor-element.animated.fadeIn{*/
/*    box-shadow: 0 5px 5px rgba(0, 0, 0, .05), 0 5px 5px rgba(0, 0, 0, .05);*/
/*}*/

/*.elementor-element.box_grid:hover .elementor-element.animated.fadeIn {*/
/*    transform: translateY(-10px);*/
/*    box-shadow: 0 5px 20px rgba(0, 0, 0, .05), 0 5px 20px rgba(0, 0, 0, .05);*/
/*}*/


.showdow-bg:before {
    content: "";
    position: absolute;
    top: -4rem;
    left: -18rem;
    right: 0;
	z-index:-1;
    bottom: 0;
    max-height: 54rem;
    max-width: 75rem;
    background: radial-gradient(50% 50% at center center, rgb(10 149 231 / .12) 0, #fff0 100%);
}
.bg-styleaniminate {
    background: url(/wp-content/uploads/2026/01/eniminate-bg.png);
    background-repeat: repeat-x;
    background-position: top left;
    background-size: COVER;
	animation: bgZoom 15s ease-in-out infinite alternate;
}
@keyframes bgZoom {
  0% {
    background-size: 110%;
  }
  100% {
    background-size: 120%;
  }
}

.grid.showdow-bg.frontpage {
    background-image: url(/wp-content/uploads/2026/01/Hero-Banner-img.png);
    background-position: center;
    background-size: 100% 100%!important;
    background-repeat: repeat;
	animation: bgZoom4 15s ease-in-out infinite alternate;
}
@keyframes bgZoom4 {
  0% {
    background-size: 100%;
  }
  100% {
    background-size: 120%;
  }
}

/*-- slick slider--*/
 .grid_box {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 18px;
    overflow-x: auto;
    padding: 18px;
    scroll-snap-type: x mandatory;
}
    .grid_box::-webkit-scrollbar{height:10px}
    .grid_box::-webkit-scrollbar-thumb{background:rgba(15,23,42,.15);border-radius:999px}
    .grid_box::-webkit-scrollbar-track{background:transparent}

    .topslider .card{
      background: var(--card);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow:hidden;
      min-width: 220px;
      margin-bottom: 0px;
      padding: 0px;
      scroll-snap-align: start;
      border: 1px solid rgba(15,23,42,.06);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .topslider .card:hover{
      transform: translateY(-4px);
      box-shadow: 0 10px 16px rgba(15,23,42,.14);
    }

    .top{
      padding: 18px 18px 16px;
      color:#fff;
      position:relative;
      min-height: 118px;
    }
    .top::after{
      content:"";
      position:absolute;
      left:0;right:0;bottom:-1px;
      height: 36px;
      background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.22) 100%);
      pointer-events:none;
    }

    .row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom: 12px;
    }

    .icon{
      width:38px;height:38px;
      border-radius: 999px;
      background: rgba(255,255,255,.18);
      display:grid;
      place-items:center;
      backdrop-filter: blur(8px);
    }
    .icon svg{width:18px;height:18px; opacity:.95}

    .pill{
      font-size:12px;
      font-weight:700;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.22);
      border: 1px solid rgba(255,255,255,.22);
      white-space:nowrap;
    }

    .topslider .title{
      font-size:18px;
      font-weight:900;
      margin:0;
      color:#fff;
      letter-spacing:-.01em;
    }

    .topslider .subtitle{
      margin:4px 0 0;
      font-size:12.5px;
      color: #fff;
      opacity:.92;
      font-weight:600;
    }

    .arrow{
      position:absolute;
      right:16px;
      top: 66px;
      width:30px;height:30px;
      border-radius: 999px;
      display:grid;
      place-items:center;
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.18);
      transition: transform .18s ease;
    }
    .card:hover .arrow{ transform: translateX(2px); }
    .arrow svg{width:16px;height:16px;fill:#fff}

    .bottom {
        padding: 9px 8px 9px;
        background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    }

    .featured{
      display:flex;
      align-items:center;
      justify-content: center;
      /*justify-content:space-between;*/
      gap:0px;
      background: #f2f5fb;
      border: 1px solid rgba(15,23,42,.06);
      border-radius: 12px;
      padding: 6px 9px;
    }
    .featured span{
      font-size:12px;
      color: var(--muted);
      font-weight:700;
      white-space:nowrap;
    }
    .chip{
      font-size:12px;
      font-weight:900;
      padding: 6px 20px;
      border-radius: 999px;
      background:#ffffff;
      border: 1px solid rgba(15,23,42,.06);
      white-space:nowrap;
    }

    /* gradients per card */
    .g-purple{ background: linear-gradient(135deg,#6d5efc 0%, #7b66ff 50%, #6f75ff 100%); }
    .g-orange{ background: linear-gradient(135deg,#ff7a18 0%, #ff5f3b 55%, #ff4d4d 100%); }
    .g-pink{   background: linear-gradient(135deg,#ff2d6f 0%, #ff2d55 50%, #ff4b2b 100%); }
    .g-blue{   background: linear-gradient(135deg,#2b7cff 0%, #2f6fff 55%, #3a5cff 100%); }
    .g-teal{   background: linear-gradient(135deg,#1aa6a6 0%, #197e89 55%, #146b7a 100%); }
    .g-purplbox {background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);}
    .g-cyan{    background: linear-gradient(135deg, #0b4c85 0%, #b30a85 100%);}
    /* chip accent colors (optional to match screenshot) */
    .chip.purple{ color:#5b5cff; }
    .chip.orange{ color:#ff6a00; }
    .chip.pink{   color:#ff2d6f; }
    .chip.blue{   color:#2f6fff; }
    .chip.teal{   color:#197e89; }
    .slick-prev:before, .slick-next:before {
        color: #f2994a;
    }

    @media (max-width: 1150px){
      .grid{grid-template-columns: repeat(5, minmax(240px, 1fr));}
    }
    @media (max-width: 520px){
      .title{font-size:17px}
      .top{min-height:112px}
    }
.tools-slider{
  visibility: hidden;
}

.slick-initialized{
  visibility: visible;
}



/*-- slider word --*/
.hero-heading{
      margin:0;
      font-size: clamp(28px, 4.2vw, 56px);
      font-weight: 900;
      color: var(--text);
      line-height: 1.05;
      letter-spacing: -0.02em;
    }

    .sub{
      margin:14px 0 0;
      font-size: clamp(14px, 1.4vw, 18px);
      color:#4b5563;
      line-height:1.5;
      max-width: 720px;
    }

    /* slider */
    .word-slider{
      position: relative;
      display: inline-block;
      width: 282px;             /* same width for all words */
      height: 1.29em;
      overflow: hidden;
      vertical-align: middle;
      margin: 0 .12em;
          background: linear-gradient(135deg, #ff2d6f 0%, #ff2d55 50%, #ff4b2b 100%);
    }

    .word{
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      text-align: center;
      color: #fff;
      padding: 3px 14px;
      border-radius: 10px;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;

      /* start state (below) */
      transform: translateY(110%);
      opacity: 0;

      /* smooth slide (GPU-friendly) */
      transition: transform 650ms cubic-bezier(.2,.8,.2,1), opacity 650ms cubic-bezier(.2,.8,.2,1);
      will-change: transform;
      white-space: nowrap;
    }
    .grid.frontpage h1 {
        font-family: 'DM Sans';
        font-weight: 900;
    }

    .word.active{
      transform: translateY(0%);
      opacity: 1;
    }

    .word.exit{
      transform: translateY(-110%);
      opacity: 0;
    }
    
    /* Parent grid ko allow karo sticky ke liye */
.frontpage > .mx-auto > .grid {
  align-items: start; /* important in grid layout */
}

/* Right sidebar sticky */
.frontpage .col-span-1.border-gray-300{
  position: sticky;
  top: 110px;              /* header height ke hisaab se adjust */
  align-self: start;       /* grid me sticky ko support */
  height: fit-content;     /* sidebar apni height le */
}

    /* small screens */
    @media (max-width:480px){
      .wrap{padding:28px 18px}
      .word-slider{width: 180px; border-radius: 32px; height: 36px;}
      .word{padding:6px 10px;border-radius:8px;}
    }

/* ===== Search UI (pill style) ===== */
form.search-form{
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 999px;
  padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 920px;
  width: 100%;
}

/* label full width */
form.search-form label{
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
}

/* input field */
form.search-form input.search-field{
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  width: 100%;
  font-size: 16px;
  padding: 10px 6px;
}

/* hide screen reader text if showing */
form.search-form .screen-reader-text{
  display: none !important;
}

/* search icon button (Elementor/Theme sometimes adds) */
form.search-form button.search-submit{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: transparent;
  padding: 0;
  display: grid;
  box-shadow: none;
  place-items: center;
  cursor: pointer;
  order: -1; /* icon left */
}
form.search-form button.search-submit i { font-size: 28px;}

/* icon look */
/*form.search-form button.search-submit::before{*/
/*  font-size: 18px;*/
/*  line-height: 1;*/
/*}*/

/* ===== Right blue "Search" button (input type submit) ===== */
form.search-form input.search-submit{
  border: none !important;
  padding: 12px 26px !important;
  border-radius: 999px !important;
  background: #1677ff !important;
  color: #fff !important;
  font-weight: 600 !important;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(22,119,255,0.28);
  transition: transform .15s ease, box-shadow .15s ease;
}

form.search-form input.search-submit:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(22,119,255,0.35);
}

/* remove extra margins some themes add */
form.search-form *{
  margin: 0 !important;
}

/* mobile */
@media (max-width: 767px){
  form.search-form{
    padding: 10px 12px;
  }
  form.search-form input.search-submit{
    padding: 10px 18px !important;
  }
}





  .table-container {
    overflow-x: auto;
  }

  .table-container table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
  }

  .table-container table th, td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
  }

  .table-container table th {
    background-color: #f4f4f4;
    font-weight: bold;
  }

  .table-container table tr:nth-child(even) {
    background-color: #fafafa;
  }

  @media (max-width: 600px) {
   .table-container table th, td {
      padding: 10px;
      font-size: 14px;
    }
  }

