It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: https://oficly.com

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.  <meta charset="UTF-8">
  5.  <meta name="viewport" content="width=device-width, initial-scale=1">
  6.  <title>Oficly - Strategic Content Marketing Platform</title>
  7.  <meta name="description" content="Premium content marketing and digital PR solutions to amplify your brand's online presence through strategic publishing">
  8.  <link rel="icon" type="image/x-icon" href="https://www.oficly.com/assets/images/oficly-icon.png" id="favicon">
  9.  
  10.  <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
  11.  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.5.2/css/all.min.css">
  12.  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap" rel="stylesheet">
  13.  
  14.  <!-- Updated Meta Tags for Content Marketing Focus -->
  15.  <meta property="og:title" content="Oficly - Strategic Content Marketing Platform">
  16.  <meta property="og:description" content="Amplify your brand through our premium content marketing and digital PR solutions">
  17.  <meta name="keywords" content="content marketing, digital PR, brand publishing, content distribution, editorial placements">
  18.  
  19.  <!-- Google tag (gtag.js) -->
  20.  <script async src="https://www.googletagmanager.com/gtag/js?id=G-K6ZWWZ7L7J"></script>
  21.  <script>
  22.    window.dataLayer = window.dataLayer || [];
  23.    function gtag(){dataLayer.push(arguments);}
  24.    gtag('js', new Date());
  25.    gtag('config', 'G-K6ZWWZ7L7J');
  26.  </script>
  27.   <style>
  28.    :root {
  29.      --primary: #3b82f6;
  30.      --secondary: #8b5cf6;
  31.      --text-primary: #1e293b;
  32.      --text-secondary: #475569;
  33.      --bg-primary: #ffffff;
  34.      --bg-secondary: #f8fafc;
  35.      --border-color: #e2e8f0;
  36.    }
  37.  
  38.    .dark {
  39.      --primary: #60a5fa;
  40.      --secondary: #a78bfa;
  41.      --text-primary: #f1f5f9;
  42.      --text-secondary: #94a3b8;
  43.      --bg-primary: #0f172a;
  44.      --bg-secondary: #1e293b;
  45.      --border-color: #334155;
  46.    }
  47.  
  48.    body {
  49.      font-family: 'Inter', sans-serif;
  50.      background-color: var(--bg-primary);
  51.      color: var(--text-primary);
  52.      line-height: 1.6;
  53.      transition: background-color 0.3s, color 0.3s;
  54.      overflow-x: hidden;
  55.      padding-top: 80px; /* Added to account for fixed header */
  56.    }
  57.  
  58.    /* Apply base styles directly, use .dark for overrides */
  59.    body {
  60.        background-color: var(--bg-primary);
  61.        color: var(--text-primary);
  62.    }
  63.  
  64.    /* Removed smooth scroll behavior */
  65.    html {
  66.      scroll-behavior: auto;
  67.    }
  68.  
  69.    .glass {
  70.      background: rgba(246, 247, 255, 0.83); /* Light mode default */
  71.      box-shadow: 0 8px 32px 0 rgba(40,60,110,0.08);
  72.      border: 1.5px solid rgba(120, 150, 255, 0.10);
  73.      backdrop-filter: blur(12px);
  74.      border-radius: 24px;
  75.      transition: background 0.5s, box-shadow 0.5s, border-color 0.5s;
  76.    }
  77.    .dark .glass { /* Dark mode override */
  78.      background: rgba(32, 36, 58, 0.54);
  79.      box-shadow: 0 8px 32px 0 rgba(18, 21, 40, 0.12);
  80.      border: 1.5px solid rgba(120, 150, 255, 0.08);
  81.    }
  82.  
  83.    /* Simplified blob styles */
  84.    .blob {
  85.        position: absolute;
  86.        filter: blur(40px);
  87.        z-index: 0;
  88.        pointer-events: none;
  89.        animation: float 8s ease-in-out infinite;
  90.        transition: opacity 0.5s, background 0.5s;
  91.    }
  92.    .blob1 { top: 2rem; left: -4rem; width: 350px; height: 350px; background: linear-gradient(90deg, #86e7ff 0%, #fff9fa 100%); opacity: 0.22; }
  93.    .blob2 { top: 340px; right: -2rem; width: 240px; height: 240px; background: linear-gradient(135deg, #ffe3f1 0%, #f9e8a3 100%); opacity: 0.19; }
  94.    .blob3 { bottom: -6rem; left: 45vw; width: 300px; height: 250px; background: linear-gradient(120deg, #ece4ff 0%, #a2f9ec 100%); opacity: 0.14; }
  95.  
  96.    .dark .blob1 { background: linear-gradient(90deg, #46caff, #9155ff); opacity: 0.38; }
  97.    .dark .blob2 { background: linear-gradient(135deg, #ff85a3, #f9ce34); opacity: 0.38; }
  98.    .dark .blob3 { background: linear-gradient(120deg, #1fcfad, #46caff); opacity: 0.38; }
  99.  
  100.    @keyframes float {
  101.      0%,100% { transform: translateY(0) scale(1);}
  102.      50% { transform: translateY(-30px) scale(1.1);}
  103.    }
  104.  
  105.    /* Section title styles */
  106.    .section-title {
  107.      font-size: 2.5rem;
  108.      line-height: 1.2;
  109.      font-weight: 900;
  110.      margin-bottom: 1.6rem;
  111.      letter-spacing: -0.01em;
  112.      text-align: center;
  113.      color: #1e213b; /* Light mode default */
  114.      border-bottom: 4px solid #7c47fd; /* Light mode default */
  115.      text-shadow: 0 2px 16px rgba(170,150,255,0.07), 0 1px 0px #f6f8fc;
  116.      background: none !important;
  117.      -webkit-background-clip: initial !important;
  118.      -webkit-text-fill-color: initial !important;
  119.      padding: .25em 0;
  120.      display: inline-block;
  121.      border-radius: 2px;
  122.      max-width: 100%;
  123.      word-break: break-word;
  124.    }
  125.    .dark .section-title { /* Dark mode override */
  126.      color: #fff;
  127.      border-bottom: 4px solid #4f84ff;
  128.      text-shadow: 0 2px 24px rgba(51,98,160,0.13), 0 1px 0px #25294d;
  129.    }
  130.  
  131.    /* Micro-float */
  132.     .micro-float {
  133.       transition: transform 0.22s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.22s;
  134.     }
  135.     .micro-float:hover {
  136.       transform: translateY(-6px) scale(1.04) rotate(-1deg);
  137.       box-shadow: 0 10px 32px 0 rgba(80, 100, 170, 0.09); /* Light default */
  138.       z-index: 2;
  139.     }
  140.    .dark .micro-float:hover {
  141.        box-shadow: 0 10px 32px 0 rgba(81, 146, 255, 0.13);
  142.    }
  143.  
  144.    button:focus { outline: none;}
  145.    ::-webkit-scrollbar { width: 8px; background: transparent; }
  146.    ::-webkit-scrollbar-thumb { background: rgba(100,123,255,0.18); border-radius: 8px;}
  147.  
  148.    /* Light Mode Specific Text/BG Overrides within .glass */
  149.     body.light .glass .text-gray-50,
  150.     body.light .glass .text-gray-100,
  151.     body.light .glass .text-gray-200,
  152.     body.light .glass .text-gray-300,
  153.     body.light .glass .text-gray-400 { color: #222845 !important; }
  154.     body.light .glass .text-blue-200 { color: #37517e !important; }
  155.     body.light .glass .text-pink-200 { color: #a7265f !important; }
  156.     body.light .glass .text-cyan-200 { color: #105676 !important; }
  157.     body.light .glass .text-yellow-200 { color: #b78601 !important; }
  158.     body.light .glass .text-green-200 { color: #22713b !important; }
  159.     body.light .glass .text-purple-200 { color: #773ec7 !important; }
  160.     body.light .glass .text-blue-300 { color: #2563eb !important; }
  161.     body.light .glass .text-cyan-300 { color: #0891b2 !important; }
  162.     body.light .glass .text-blue-400 { color: #3b82f6 !important; }
  163.     body.light .glass .text-cyan-400 { color: #2dd4bf !important; }
  164.     body.light .glass .text-purple-300 { color: #a78bfa !important; }
  165.     body.light .glass .text-yellow-300 { color: #fde047 !important; }
  166.     body.light .glass .text-pink-300 { color: #f472b6 !important; }
  167.     body.light .glass .text-green-300 { color: #4ade80 !important; }
  168.     body.light .glass .bg-gray-800,
  169.     body.light .glass .bg-gray-900 { background: #f6f8fc !important; }
  170.     body.light .glass .text-gray-900 { color: #232335 !important; }
  171.     body.light input,
  172.     body.light textarea { background: #f8fafc !important; color: #1a202c !important; }
  173.     body.light .glass .bg-gradient-to-r  { color: #232335 !important; }
  174.     body.light .glass {
  175.       border: 1.5px solid rgba(85,95,140,0.09);
  176.     }
  177.     body.light .bg-gradient-to-r,
  178.     body.light .bg-gradient-to-tr,
  179.     body.light .bg-gradient-to-br,
  180.     body.light .bg-gradient-to-l { color: #28243c !important; }
  181.  
  182.    /* Navigation Bar Styles */
  183.    nav {
  184.      transition: background 0.5s, border-color 0.5s;
  185.      background: rgba(250,251,255,0.96) !important; /* Light default */
  186.      border-color: #eee !important; /* Light default */
  187.    }
  188.    .dark nav { /* Dark mode override */
  189.      background: rgba(32, 36, 58, 0.54) !important; /* Use glass background from dark mode */
  190.      border-color: var(--border-color) !important; /* Use dark border color */
  191.    }
  192.  
  193.     .testimonial-img {
  194.       border-width: 2.5px !important;
  195.       box-shadow: 0 2px 8px 0 rgba(41, 102, 180, 0.07);
  196.     }
  197.     .btn-gradient {
  198.       background-image: linear-gradient(90deg, #418dff 0%, #9155ff 100%);
  199.       color: #fff !important; /* Ensure text is white on gradient */
  200.       font-weight: bold;
  201.       border: none;
  202.     }
  203.  
  204.    /* Headings inside cards */
  205.    .glass h3 {
  206.        color: #1e213b; /* Light default */
  207.        text-shadow: 0 1px 2px rgba(155,120,255,0.06), 0 1px 0px #f6f8fc;
  208.    }
  209.    .dark .glass h3 { /* Dark override */
  210.        color: #fff;
  211.        text-shadow: 0 2px 24px rgba(51,98,160,0.13), 0 1px 0px #25294d;
  212.    }
  213.  
  214.     h2.section-title {margin-top:0;}
  215.     h2.section-title:after {display:none;}
  216.  
  217.     /* Ensure default text colors are set correctly based on theme */
  218.    .text-gray-900 { color: var(--text-primary) !important; }
  219.    .text-white { color: var(--text-primary) !important; }
  220.    .dark .text-white { color: #fff !important; }
  221.    .dark .text-gray-100 { color: #f1f5f9 !important; }
  222.    .dark .text-gray-300 { color: #94a3b8 !important; }
  223.    .dark .text-gray-400 { color: #64748b !important; }
  224.    .dark .text-gray-500 { color: #475569 !important; }
  225.  
  226.     /* PDF Export Styles - Keep as is */
  227.     .glass [class*="bg-gradient-"] {background-image:none !important;}
  228.     body.light .glass [class*="bg-gradient-"] {background-image:none !important;}
  229.     .glass,.blob{border-radius:24px;}
  230.     @media (max-width: 480px) {
  231.       .section-title {font-size:1.45rem;}
  232.     }
  233.  
  234.     /* Header styles */
  235.     header {
  236.       position: fixed;
  237.       top: 0;
  238.       left: 0;
  239.       right: 0;
  240.       z-index: 50;
  241.       background-color: var(--bg-secondary);
  242.       border-bottom: 1px solid var(--border-color);
  243.       transition: background-color 0.3s, border-color 0.3s;
  244.       backdrop-filter: blur(12px);
  245.       height: 80px;
  246.     }
  247.  
  248.     .theme-toggle {
  249.       background: linear-gradient(90deg, var(--primary), var(--secondary));
  250.       color: white;
  251.     }
  252.  
  253.     /* Logo switching for dark/light mode */
  254.     .logo-img, .icon-img {
  255.       transition: opacity 0.3s ease-in-out;
  256.     }
  257.  
  258.     /* Default (Light Mode): Show light, hide dark */
  259.     .light-logo, .light-icon { display: block; }
  260.     .dark-logo, .dark-icon { display: none; }
  261.  
  262.     /* Dark Mode: Show dark, hide light */
  263.     .dark .dark-logo, .dark .dark-icon { display: block; }
  264.     .dark .light-logo, .dark .light-icon { display: none; }
  265.  
  266.     @media (max-width: 768px) {
  267.       header .nav-links {
  268.         display: none;
  269.       }
  270.     }
  271.  </style>
  272. </head>
  273. <body class="relative overflow-x-hidden">
  274.  <div class="blob blob1"></div>
  275.  <div class="blob blob2"></div>
  276.  <div class="blob blob3"></div>
  277.  
  278.   <header>
  279.    <nav class="max-w-7xl mx-auto flex items-center justify-between px-4 py-4">
  280.      <div class="flex items-center space-x-2">
  281.        <a href="/" class="flex items-center">
  282.          <img src="https://www.oficly.com/assets/images/oficly-logo.png" alt="Oficly Logo Light" class="h-8 light-logo logo-img">
  283.          <img src="https://www.oficly.com/assets/images/oficly-logo-white.png" alt="Oficly Logo Dark" class="h-8 dark-logo logo-img">
  284.        </a>
  285.        <span class="text-sm font-medium hidden md:block" style="color: var(--text-secondary);">Content Marketing Solutions</span>
  286.      </div>
  287.      <div class="hidden md:flex space-x-8 text-base font-medium nav-links">
  288.        <a href="#solutions" class="hover:text-blue-300 transition" style="color: var(--text-secondary);">Solutions</a>
  289.        <a href="#network" class="hover:text-blue-300 transition" style="color: var(--text-secondary);">Our Network</a>
  290.        <a href="#pricing" class="hover:text-blue-300 transition" style="color: var(--text-secondary);">Pricing</a>
  291.        <a href="#contact" class="hover:text-blue-300 transition" style="color: var(--text-secondary);">Contact</a>
  292.      </div>
  293.      <div class="flex items-center space-x-4">
  294.        <button id="themeToggle" class="theme-toggle w-10 h-10 rounded-full flex items-center justify-center focus:outline-none">
  295.          <i class="fas fa-sun" id="lightIcon"></i>
  296.          <i class="fas fa-moon hidden" id="darkIcon"></i>
  297.        </button>
  298.        <!-- Currency Dropdown START -->
  299.        <div class="relative">
  300.          <select id="currencySelector" class="h-10 px-3 bg-gray-100 dark:bg-gray-700 border border-gray-300 dark:border-gray-600 text-gray-900 dark:text-white text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-28">
  301.            <option value="USD" selected>USD $</option>
  302.            <option value="INR">INR ₹</option>
  303.          </select>
  304.        </div>
  305.        <!-- Currency Dropdown END -->
  306.        <a href="login.php" class="bg-gradient-to-tr from-blue-500 via-cyan-400 to-purple-400 rounded-xl px-4 py-2 font-bold text-white hover:from-purple-400 hover:to-blue-500 transition whitespace-nowrap">Login/Register</a>
  307.      </div>
  308.    </nav>
  309.  </header>
  310.  
  311.  <section class="relative pt-32 md:pt-40 pb-20 z-20">
  312.    <div class="max-w-6xl mx-auto px-4 flex flex-col items-center text-center">
  313.      <div class="w-full flex flex-col items-center glass p-10 pb-12 md:p-16 mb-8 shadow-xl relative" style="overflow: visible;">
  314.        <div class="absolute -top-10 right-10 hidden md:block pointer-events-none">
  315.          <svg width="80" height="80" viewBox="0 0 80 80" class="animate-spin-slow"><circle cx="40" cy="40" r="30" fill="#54E5FF" opacity="0.09"/></svg>
  316.        </div>
  317.        <h1 class="text-4xl sm:text-5xl font-extrabold leading-tight mb-4 tracking-tight" style="color: var(--text-primary);">
  318.          Strategic Content Marketing Platform<br>
  319.          <span class="bg-clip-text text-transparent bg-gradient-to-r from-blue-400 via-cyan-300 to-purple-400">Amplify Your Brand Authority</span>
  320.        </h1>
  321.        <p class="text-lg sm:text-xl max-w-2xl mx-auto mb-7" style="color: var(--text-secondary);">
  322.          Our premium publishing network helps brands establish thought leadership through strategic content placement in authoritative digital publications.
  323.        </p>
  324.        <div class="flex space-x-4 justify-center mb-2">
  325.          <a href="#network" class="micro-float px-6 py-3 font-bold rounded-2xl btn-gradient shadow-xl transition transform-gpu">Explore Network</a>
  326.          <a href="#solutions" class="micro-float px-6 py-3 font-bold rounded-2xl border-2 hover:text-white transition" style="border-color: var(--primary); color: var(--primary); background-color: var(--bg-secondary);">Our Solutions</a>
  327.        </div>
  328.        <div class="relative mt-8 flex flex-wrap justify-center gap-6">
  329.          <div class="w-40 h-44 glass border border-purple-400/20 shadow-2xl transform rotate-3 hover:scale-105 transition micro-float flex flex-col items-center justify-center">
  330.            <i class="fa-brands fa-medium fa-2x mb-2" style="color: var(--secondary);"></i>
  331.            <span class="text-lg font-bold" style="color: var(--text-primary);">Premium Digital Publications</span>
  332.            <span class="text-xs mt-1" style="color: var(--text-secondary);">Editorial Standards</span>
  333.          </div>
  334.          <div class="w-40 h-44 glass border border-blue-400/20 shadow-2xl transform -rotate-2 hover:scale-105 transition micro-float flex flex-col items-center justify-center">
  335.            <i class="fa-regular fa-newspaper fa-2x mb-2" style="color: var(--primary);"></i>
  336.            <span class="text-lg font-bold" style="color: var(--text-primary);">Strategic Content Placement</span>
  337.            <span class="text-xs mt-1" style="color: var(--text-secondary);">Targeted Audiences</span>
  338.          </div>
  339.          <div class="w-40 h-44 glass border border-yellow-400/15 shadow-2xl hover:scale-105 transition micro-float flex flex-col items-center justify-center">
  340.            <i class="fa-solid fa-chart-line fa-2x text-yellow-300 mb-2"></i>
  341.            <span class="text-lg font-bold" style="color: var(--text-primary);">Performance Analytics</span>
  342.            <span class="text-xs mt-1" style="color: var(--text-secondary);">ROI Tracking</span>
  343.          </div>
  344.        </div>
  345.      </div>
  346.    </div>
  347.  </section>
  348.  
  349.  <section id="solutions" class="max-w-6xl mx-auto px-4 pb-20 z-20">
  350.    <h2 class="section-title text-center">Our Content Marketing Solutions</h2>
  351.    <div class="w-full mt-8 grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-10">
  352.      <div class="glass p-8 transition micro-float group flex flex-col items-center text-center relative">
  353.        <i class="fa-solid fa-pen-nib fa-2x text-cyan-300 mb-3"></i>
  354.        <h3 class="text-xl font-bold mb-1">Editorial Guest Contributions</h3>
  355.        <p class="text-sm" style="color: var(--text-secondary);">Place thought leadership content in premium digital publications to build brand authority.</p>
  356.      </div>
  357.      <div class="glass p-8 transition micro-float group flex flex-col items-center text-center relative">
  358.        <i class="fa-solid fa-shield-halved fa-2x text-purple-300 mb-3"></i>
  359.        <h3 class="text-xl font-bold mb-1">Secure Content Distribution</h3>
  360.        <p class="text-sm" style="color: var(--text-secondary);">Our escrow system ensures your content is published as agreed before payment is released.</p>
  361.      </div>
  362.      <div class="glass p-8 transition micro-float group flex flex-col items-center text-center">
  363.        <i class="fa-solid fa-magnifying-glass-chart fa-2x text-blue-300 mb-3"></i>
  364.        <h3 class="text-xl font-bold mb-1">Audience Targeting</h3>
  365.        <p class="text-sm" style="color: var(--text-secondary);">Match your content with publications that reach your ideal customer demographics.</p>
  366.      </div>
  367.      <div class="glass p-8 transition micro-float group flex flex-col items-center text-center">
  368.        <i class="fa-solid fa-bullseye fa-2x text-yellow-300 mb-3"></i>
  369.        <h3 class="text-xl font-bold mb-1">Niche Publication Access</h3>
  370.        <p class="text-sm" style="color: var(--text-secondary);">Specialized platforms in tech, business, health and other verticals.</p>
  371.      </div>
  372.      <div class="glass p-8 transition micro-float group flex flex-col items-center text-center">
  373.        <i class="fa-solid fa-file-circle-check fa-2x text-pink-300 mb-3"></i>
  374.        <h3 class="text-xl font-bold mb-1">Content Approval System</h3>
  375.        <p class="text-sm" style="color: var(--text-secondary);">Streamlined workflow from submission to publication with real-time updates.</p>
  376.      </div>
  377.      <div class="glass p-8 transition micro-float group flex flex-col items-center text-center">
  378.        <i class="fa-solid fa-chart-pie fa-2x text-green-300 mb-3"></i>
  379.        <h3 class="text-xl font-bold mb-1">Performance Reporting</h3>
  380.        <p class="text-sm" style="color: var(--text-secondary);">Track engagement metrics and referral traffic from each publication.</p>
  381.      </div>
  382.    </div>
  383.  </section>
  384.  
  385.  
  386.  <section id="network" class="relative max-w-6xl mx-auto px-4 py-12 z-20">
  387.    <h2 class="section-title text-center">Featured Publishing Partners</h2>
  388.    <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 mt-8">
  389.      <div class="glass p-6 flex flex-col space-y-4 micro-float" style="border-color: rgba(59, 130, 246, 0.2);">
  390.        <div class="flex items-center space-x-2">
  391.          <span class="px-3 py-1 rounded-2xl bg-blue-500/20 text-blue-200 font-semibold text-xs"><i class="fa-solid fa-earth-americas"></i> Business</span>
  392.          <span class="px-2 py-1 rounded-full bg-cyan-500/20 text-cyan-200 text-xs">Est. 2015</span>
  393.        </div>
  394.        <span class="font-bold text-lg" style="color: var(--text-primary);">Business Innovation Journal</span>
  395.        <span class="text-xs" style="color: var(--text-secondary);">Technology, Leadership, Market Trends</span>
  396.        <span class="font-extrabold text-2xl price-value" style="color: var(--primary);" data-price-usd="400">$400</span>
  397.        <button class="btn-gradient font-bold px-5 py-2 rounded-xl micro-float mt-2 transition">Publish Content</button>
  398.      </div>
  399.      
  400.      <div class="glass p-6 flex flex-col space-y-4 micro-float" style="border-color: rgba(236, 72, 153, 0.2);">
  401.        <div class="flex items-center space-x-2">
  402.          <span class="px-3 py-1 rounded-2xl bg-pink-500/20 text-pink-200 font-semibold text-xs"><i class="fa-solid fa-heart"></i> Lifestyle</span>
  403.          <span class="px-2 py-1 rounded-full bg-yellow-400/20 text-yellow-200 text-xs">500K Readers</span>
  404.        </div>
  405.        <span class="font-bold text-lg" style="color: var(--text-primary);">Modern Living Digest</span>
  406.        <span class="text-xs" style="color: var(--text-secondary);">Wellness, Home, Sustainable Living</span>
  407.        <span class="font-extrabold text-2xl text-pink-300 price-value" data-price-usd="350">$350</span>
  408.        <button class="btn-gradient font-bold px-5 py-2 rounded-xl micro-float mt-2 transition">Publish Content</button>
  409.      </div>
  410.  
  411.      <div class="glass p-6 flex flex-col space-y-4 micro-float" style="border-color: rgba(251, 191, 36, 0.2);">
  412.        <div class="flex items-center space-x-2">
  413.          <span class="px-3 py-1 rounded-2xl bg-yellow-500/20 text-yellow-200 font-semibold text-xs"><i class="fa-solid fa-utensils"></i> Food</span>
  414.          <span class="px-2 py-1 rounded-full bg-purple-400/20 text-purple-200 text-xs">Industry Leader</span>
  415.        </div>
  416.        <span class="font-bold text-lg" style="color: var(--text-primary);">Culinary Trends Magazine</span>
  417.        <span class="text-xs" style="color: var(--text-secondary);">Gastronomy, Food Tech, Sustainability</span>
  418.        <span class="font-extrabold text-2xl text-yellow-300 price-value" data-price-usd="450">$450</span>
  419.        <button class="btn-gradient font-bold px-5 py-2 rounded-xl micro-float mt-2 transition">Publish Content</button>
  420.      </div>
  421.  
  422.    </div>
  423.  </section>
  424.  
  425.  <section id="pricing" class="max-w-6xl mx-auto px-4 py-16 z-10">
  426.     <h2 class="section-title text-center">High Quality Sites</h2>
  427.     <div class="flex flex-wrap items-center justify-center gap-8 mt-8">
  428.       <div class="glass p-10 max-w-xs w-full flex flex-col items-center micro-float" style="border-color: rgba(59, 130, 246, 0.2);">
  429.         <div class="flex flex-col items-center mb-6">
  430.           <span class="text-xl font-bold" style="color: var(--primary);">Troozer.com</span>
  431.           <span class="text-3xl font-extrabold mt-2 mb-2 price-value" style="color: var(--text-primary);" data-price-usd="40">$40</span>
  432.           <span style="color: var(--text-secondary);">Each Post</span>
  433.         </div>
  434.         <ul class="list-none text-sm space-y-2 mb-6" style="color: var(--text-secondary);">
  435.           <li><i class="fa-solid fa-check text-green-400 mr-1"></i> Ahrefs Traffic : 22.3k</li>
  436.           <li><i class="fa-solid fa-check text-green-400 mr-1"></i> Domain Rating : 39</li>
  437.           <li><i class="fa-solid fa-check text-green-400 mr-1"></i> Domain Authority : 57</li>
  438.         </ul>
  439.         <button class="btn-gradient px-7 py-2 rounded-xl micro-float"><a href="https://www.oficly.com/buy_post.php?site_id=12" class="text-white">Buy Post</a></button>
  440.       </div>
  441.       <div class="glass p-10 max-w-xs w-full flex flex-col items-center micro-float relative" style="border-color: rgba(6, 182, 212, 0.2);"> <div class="absolute top-0 left-1/2 transform -translate-x-1/2 -translate-y-1/2 px-6 py-1 rounded-full bg-purple-400 text-sm font-bold text-white shadow-xl">Most Popular</div>
  442.         <div class="flex flex-col items-center mb-6 mt-6">
  443.           <span class="text-xl font-bold text-cyan-300">Viloggers.com</span>
  444.           <span class="text-3xl font-extrabold mt-2 mb-2" style="color: var(--text-primary);"><span class="price-value" data-price-usd="15">$15</span> <span class="text-lg" style="color: var(--text-secondary);"></span></span>
  445.           <span style="color: var(--text-secondary);">Each Post</span>
  446.         </div>
  447.         <ul class="list-none text-sm space-y-2 mb-6" style="color: var(--text-secondary);">
  448.           <li><i class="fa-solid fa-check text-green-400 mr-1"></i> Ahrefs Traffic : 1.3k</li>
  449.           <li><i class="fa-solid fa-check text-green-400 mr-1"></i> Domain Rating : 72</li>
  450.           <li><i class="fa-solid fa-check text-green-400 mr-1"></i> Domain Authority : 50</li>
  451.         </ul>
  452.         <button class="btn-gradient px-7 py-2 rounded-xl micro-float">Buy Post</button>
  453.       </div>
  454.       <div class="glass p-10 max-w-xs w-full flex flex-col items-center micro-float" style="border-color: rgba(139, 92, 246, 0.2);"> <div class="flex flex-col items-center mb-6">
  455.           <span class="text-xl font-bold" style="color: var(--secondary);">Crackstube.com</span>
  456.           <span class="text-3xl font-extrabold mt-2 mb-2" style="color: var(--text-primary);"><span class="price-value" data-price-usd="40">$40</span> <span class="text-lg" style="color: var(--text-secondary);"></span></span>
  457.           <span style="color: var(--text-secondary);">Each Post</span>
  458.         </div>
  459.         <ul class="list-none text-sm space-y-2 mb-6" style="color: var(--text-secondary);">
  460.           <li><i class="fa-solid fa-check text-green-400 mr-1"></i> Ahrefs Traffic : 8.3k</li>
  461.           <li><i class="fa-solid fa-check text-green-400 mr-1"></i> Domain Rating : 38</li>
  462.           <li><i class="fa-solid fa-check text-green-400 mr-1"></i> Domain Authority : 50</li>
  463.         </ul>
  464.         <button class="btn-gradient px-7 py-2 rounded-xl micro-float">Buy Post</button>
  465.       </div>
  466.     </div>
  467.   </section>
  468.  
  469.   <section id="testimonials" class="max-w-6xl mx-auto px-4 py-16">
  470.     <h2 class="section-title text-center">What Our Users Say</h2>
  471.     <div class="mt-10 flex flex-col md:flex-row items-start justify-center gap-8">
  472.       <div class="glass max-w-md p-8 micro-float" style="border-color: rgba(59, 130, 246, 0.2);">
  473.         <div class="flex items-center gap-3 mb-4">
  474.           <img src="https://randomuser.me/api/portraits/men/11.jpg" alt="User" class="w-12 h-12 rounded-full border-2 object-cover testimonial-img" style="border-color: var(--primary);">
  475.           <div>
  476.             <span class="font-bold" style="color: var(--primary);">James R.</span><br>
  477.             <span class="text-xs" style="color: var(--text-secondary);">SEO Agency Owner</span>
  478.           </div>
  479.         </div>
  480.         <p class="italic" style="color: var(--text-secondary);">"oficly's slick interface and curated network have taken our outreach game to a new level. Love the direct communication feature and transparent pricing!"</p> </div>
  481.       <div class="glass max-w-md p-8 micro-float" style="border-color: rgba(6, 182, 212, 0.2);">
  482.         <div class="flex items-center gap-3 mb-4">
  483.           <img src="https://randomuser.me/api/portraits/women/21.jpg" alt="User" class="w-12 h-12 rounded-full border-2 border-cyan-400 object-cover testimonial-img">
  484.           <div>
  485.             <span class="font-bold text-cyan-300">Aishwarya S.</span><br>
  486.             <span class="text-xs" style="color: var(--text-secondary);">Blogger</span>
  487.           </div>
  488.         </div>
  489.         <p class="italic" style="color: var(--text-secondary);">"Publishing guest posts was confusing before this platform. The oficly Wallets process made me feel totally safe and the workflow was so easy!"</p>
  490.       </div>
  491.        <div class="glass max-w-md p-8 micro-float" style="border-color: rgba(139, 92, 246, 0.2);">
  492.         <div class="flex items-center gap-3 mb-4">
  493.           <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="User" class="w-12 h-12 rounded-full border-2 object-cover testimonial-img" style="border-color: var(--secondary);">
  494.           <div>
  495.             <span class="font-bold" style="color: var(--secondary);">Michael H.</span><br>
  496.             <span class="text-xs" style="color: var(--text-secondary);">Digital Marketer</span>
  497.           </div>
  498.         </div>
  499.         <p class="italic" style="color: var(--text-secondary);">"Cutting-edge design, robust filters, and premium Sites. I got published on high-authority sites in Instant not weeks."</p>
  500.       </div>
  501.     </div>
  502.   </section>
  503.  
  504.    <section id="contact" class="max-w-4xl mx-auto px-4 py-16">
  505.     <h2 class="section-title text-center">Get in Touch</h2>
  506.     <div class="glass max-w-2xl mx-auto mt-7 p-10 flex flex-col">
  507.       <!-- Added address and contact information -->
  508.       <div class="mb-8 text-center">
  509.         <h3 class="text-xl font-bold mb-4" style="color: var(--primary);">Our Office</h3>
  510.         <p class="mb-2" style="color: var(--text-primary);">
  511.           <i class="fas fa-map-marker-alt mr-2"></i> 92, Pragati Vihar, Khora Colony, Gali No. 12
  512.         </p>
  513.         <p class="mb-2" style="color: var(--text-primary);">
  514.           Ghaziabad, Uttar Pradesh, India - 201001
  515.         </p>
  516.         <p class="mt-4" style="color: var(--text-primary);">
  517.           <i class="fas fa-person-alt mr-2"></i> <a href="#">Contact Person : Ajeet Gupta</a>
  518.         </p>
  519.       </div>
  520.      
  521.       <form class="space-y-7">
  522.         <div class="flex flex-col md:flex-row gap-6">
  523.           <div class="flex-1">
  524.              <label class="block text-sm mb-2 font-bold" style="color: var(--text-secondary);">Your Name</label>
  525.              <input type="text" class="w-full p-3 rounded-xl border focus:border-blue-400 transition" style="background-color: var(--bg-primary); border-color: var(--border-color); color: var(--text-primary);" placeholder="Full name" required>
  526.           </div>
  527.           <div class="flex-1">
  528.             <label class="block text-sm mb-2 font-bold" style="color: var(--text-secondary);">Email Address</label>
  529.             <input type="email" class="w-full p-3 rounded-xl border focus:border-purple-400 transition" style="background-color: var(--bg-primary); border-color: var(--border-color); color: var(--text-primary);" placeholder="you@email.com" required>
  530.           </div>
  531.         </div>
  532.         <div>
  533.           <label class="block text-sm mb-2 font-bold" style="color: var(--text-secondary);">Your Message</label>
  534.           <textarea class="w-full p-3 rounded-xl border h-28 focus:border-cyan-400 transition" style="background-color: var(--bg-primary); border-color: var(--border-color); color: var(--text-primary);" placeholder="How can we help you?" required></textarea>
  535.         </div>
  536.         <button type="submit" class="btn-gradient px-8 py-3 rounded-xl micro-float shadow-xl transition">Send Message</button>
  537.       </form>
  538.     </div>
  539.   </section>
  540.  
  541.   <footer class="w-full pb-8 pt-16 px-4 flex flex-col items-center justify-center text-center relative z-20" style="color: var(--text-secondary);">
  542.     <div class="flex space-x-6 mb-4">
  543.        <a href="#" class="hover:text-blue-400" style="color: var(--text-secondary);"><i class="fa-brands fa-x-twitter fa-lg"></i></a>
  544.       <a href="#" class="hover:text-blue-400" style="color: var(--text-secondary);"><i class="fa-brands fa-linkedin fa-lg"></i></a>
  545.       <a href="#" class="hover:text-blue-400" style="color: var(--text-secondary);"><i class="fa-brands fa-facebook fa-lg"></i></a>
  546.       <a href="#" class="hover:text-blue-400" style="color: var(--text-secondary);"><i class="fa-brands fa-discord fa-lg"></i></a>
  547.     </div>
  548.     <div class="text-sm">© 2025 oficly.com. All Right Reserved.</div><br>
  549.     <div class="text-sm">
  550.        <a href="privacy-policy.php" class="hover:text-blue-400 mx-2" style="color: var(--text-secondary);">Privacy Policy</a> |
  551.       <a href="terms-and-conditions.php" class="hover:text-blue-400 mx-2" style="color: var(--text-secondary);">Terms & Conditions</a> |
  552.       <a href="disclaimer.php" class="hover:text-blue-400 mx-2" style="color: var(--text-secondary);">Disclaimer</a> |
  553.       <a href="refund-policy.php" class="hover:text-blue-400 mx-2" style="color: var(--text-secondary);">Refund Policy</a>
  554.      </div>
  555.   </footer>
  556.  
  557.   <script>
  558.      // Hero SVG Animation (Keep existing)
  559.      document.querySelectorAll('.animate-spin-slow').forEach(el => {
  560.        el.animate(
  561.          [{ transform: 'rotate(0deg)' }, { transform: 'rotate(360deg)' }],
  562.          { duration: 12000, iterations: Infinity }
  563.        );
  564.      });
  565.  
  566.      // --- Corrected Theme Toggle Logic ---
  567.      const themeToggle = document.getElementById('themeToggle');
  568.      const lightIconEl = document.getElementById('lightIcon');
  569.      const darkIconEl = document.getElementById('darkIcon');  
  570.      const body = document.body;
  571.      const favicon = document.getElementById('favicon');
  572.      const lightFavicon = 'https://www.oficly.com/assets/images/oficly-icon.png'; // Updated favicon path
  573.      const darkFavicon = 'https://www.oficly.com/assets/images/oficly-icon-white.png'; // Updated dark favicon path
  574.  
  575.      const applyTheme = (theme) => {
  576.        body.classList.remove('dark', 'light');
  577.  
  578.        if (theme === 'dark') {
  579.          body.classList.add('dark');
  580.          if(lightIconEl) lightIconEl.classList.add('hidden');
  581.          if(darkIconEl) darkIconEl.classList.remove('hidden');
  582.          if(favicon) favicon.href = darkFavicon;
  583.          localStorage.setItem('theme', 'dark');
  584.        } else {
  585.          body.classList.add('light');
  586.          if(lightIconEl) lightIconEl.classList.remove('hidden');
  587.          if(darkIconEl) darkIconEl.classList.add('hidden');
  588.          if(favicon) favicon.href = lightFavicon;
  589.          localStorage.setItem('theme', 'light');
  590.        }
  591.      };
  592.  
  593.      let initialTheme = localStorage.getItem('theme');
  594.      if (!initialTheme) {
  595.        initialTheme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
  596.      }
  597.      applyTheme(initialTheme);
  598.  
  599.  
  600.      if(themeToggle){
  601.        themeToggle.addEventListener('click', () => {
  602.          const newTheme = body.classList.contains('dark') ? 'light' : 'dark';
  603.          applyTheme(newTheme);
  604.        });
  605.      }
  606.      
  607.      // --- Currency Conversion Logic START ---
  608.      const INR_EXCHANGE_RATE = 83.50; // Aap yahan current exchange rate daal sakte hain
  609.      const currencySelector = document.getElementById('currencySelector');
  610.      const priceElements = document.querySelectorAll('.price-value');
  611.  
  612.      function updatePrices() {
  613.          const selectedCurrency = currencySelector.value;
  614.  
  615.          priceElements.forEach(el => {
  616.              const usdPriceText = el.dataset.priceUsd;
  617.              if (usdPriceText === undefined) {
  618.                  console.warn("Element missing data-price-usd:", el);
  619.                  return;
  620.              }
  621.              const usdPrice = parseFloat(usdPriceText);
  622.              
  623.              if (isNaN(usdPrice)) {
  624.                  console.warn("Invalid data-price-usd value:", usdPriceText, "for element:", el);
  625.                  return;
  626.              }
  627.  
  628.              if (selectedCurrency === 'INR') {
  629.                  const inrPrice = Math.round(usdPrice * INR_EXCHANGE_RATE);
  630.                  el.textContent = `₹${inrPrice}`;
  631.              } else { // USD
  632.                  el.textContent = `$${usdPrice}`;
  633.              }
  634.          });
  635.      }
  636.  
  637.      if (currencySelector) {
  638.          currencySelector.addEventListener('change', updatePrices);
  639.          // Default is USD as per HTML, so no initial call to updatePrices is strictly needed
  640.          // unless you want to ensure it runs or if default could be INR from localStorage, etc.
  641.      }
  642.      // --- Currency Conversion Logic END ---
  643.   </script>
  644.  
  645. </body>
  646. </html>
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda