Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
11070b00ef |
@ -1,25 +1,28 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>{% block title %}Knowledge Base{% endblock %}</title>
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
{% if project_description %}
|
<title>{% block title %}Raghupati Sahu - Vedic Astrologer{% endblock %}</title>
|
||||||
<meta name="description" content="{{ project_description }}">
|
|
||||||
<meta property="og:description" content="{{ project_description }}">
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||||
<meta property="twitter:description" content="{{ project_description }}">
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
{% endif %}
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
{% if project_image_url %}
|
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Inter:wght@400;500&display=swap" rel="stylesheet">
|
||||||
<meta property="og:image" content="{{ project_image_url }}">
|
|
||||||
<meta property="twitter:image" content="{{ project_image_url }}">
|
{% load static %}
|
||||||
{% endif %}
|
<link rel="stylesheet" href="{% static 'css/custom.css' %}">
|
||||||
{% load static %}
|
|
||||||
<link rel="stylesheet" href="{% static 'css/custom.css' %}?v={{ deployment_timestamp }}">
|
{% block meta_seo %}{% endblock %}
|
||||||
{% block head %}{% endblock %}
|
|
||||||
</head>
|
</head>
|
||||||
|
<body class="d-flex flex-column">
|
||||||
|
|
||||||
<body>
|
<main id="main-container" class="flex-grow-1">
|
||||||
{% block content %}{% endblock %}
|
{% block content %}{% endblock %}
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
|
||||||
|
|
||||||
|
{% block javascript %}{% endblock %}
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
@ -1,145 +1,77 @@
|
|||||||
{% extends "base.html" %}
|
{% extends 'base.html' %}
|
||||||
|
{% load static %}
|
||||||
|
|
||||||
{% block title %}{{ project_name }}{% endblock %}
|
{% block title %}Raghupati Sahu - Cosmic Journey{% endblock %}
|
||||||
|
|
||||||
{% block head %}
|
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
|
|
||||||
<style>
|
|
||||||
:root {
|
|
||||||
--bg-color-start: #6a11cb;
|
|
||||||
--bg-color-end: #2575fc;
|
|
||||||
--text-color: #ffffff;
|
|
||||||
--card-bg-color: rgba(255, 255, 255, 0.01);
|
|
||||||
--card-border-color: rgba(255, 255, 255, 0.1);
|
|
||||||
}
|
|
||||||
|
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
font-family: 'Inter', sans-serif;
|
|
||||||
background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end));
|
|
||||||
color: var(--text-color);
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
min-height: 100vh;
|
|
||||||
text-align: center;
|
|
||||||
overflow: hidden;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
body::before {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
inset: 0;
|
|
||||||
background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><path d='M-10 10L110 10M10 -10L10 110' stroke-width='1' stroke='rgba(255,255,255,0.05)'/></svg>");
|
|
||||||
animation: bg-pan 20s linear infinite;
|
|
||||||
z-index: -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes bg-pan {
|
|
||||||
0% {
|
|
||||||
background-position: 0% 0%;
|
|
||||||
}
|
|
||||||
|
|
||||||
100% {
|
|
||||||
background-position: 100% 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
main {
|
|
||||||
padding: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card {
|
|
||||||
background: var(--card-bg-color);
|
|
||||||
border: 1px solid var(--card-border-color);
|
|
||||||
border-radius: 16px;
|
|
||||||
padding: 2.5rem 2rem;
|
|
||||||
backdrop-filter: blur(20px);
|
|
||||||
-webkit-backdrop-filter: blur(20px);
|
|
||||||
box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: clamp(2.2rem, 3vw + 1.2rem, 3.2rem);
|
|
||||||
font-weight: 700;
|
|
||||||
margin: 0 0 1.2rem;
|
|
||||||
letter-spacing: -0.02em;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin: 0.5rem 0;
|
|
||||||
font-size: 1.1rem;
|
|
||||||
opacity: 0.92;
|
|
||||||
}
|
|
||||||
|
|
||||||
.loader {
|
|
||||||
margin: 1.5rem auto;
|
|
||||||
width: 56px;
|
|
||||||
height: 56px;
|
|
||||||
border: 4px solid rgba(255, 255, 255, 0.25);
|
|
||||||
border-top-color: #fff;
|
|
||||||
border-radius: 50%;
|
|
||||||
animation: spin 1s linear infinite;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes spin {
|
|
||||||
to {
|
|
||||||
transform: rotate(360deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.runtime code {
|
|
||||||
background: rgba(0, 0, 0, 0.25);
|
|
||||||
padding: 0.15rem 0.45rem;
|
|
||||||
border-radius: 4px;
|
|
||||||
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sr-only {
|
|
||||||
position: absolute;
|
|
||||||
width: 1px;
|
|
||||||
height: 1px;
|
|
||||||
padding: 0;
|
|
||||||
margin: -1px;
|
|
||||||
overflow: hidden;
|
|
||||||
clip: rect(0, 0, 0, 0);
|
|
||||||
border: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 1rem;
|
|
||||||
width: 100%;
|
|
||||||
text-align: center;
|
|
||||||
font-size: 0.85rem;
|
|
||||||
opacity: 0.75;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<main>
|
<div class="container-fluid p-0">
|
||||||
<div class="card">
|
|
||||||
<h1>Analyzing your requirements and generating your app…</h1>
|
<!-- Scene 1: The Hero Section (The Cosmos) -->
|
||||||
<div class="loader" role="status" aria-live="polite" aria-label="Applying initial changes">
|
<section class="hero-section">
|
||||||
<span class="sr-only">Loading…</span>
|
<h1 class="hero-title">RAGHUPATI SAHU</h1>
|
||||||
</div>
|
<p class="hero-subtitle">Vedic Wisdom for the Modern Age</p>
|
||||||
<p class="hint">AppWizzy AI is collecting your requirements and applying the first changes.</p>
|
</section>
|
||||||
<p class="hint">This page will refresh automatically as the plan is implemented.</p>
|
|
||||||
<p class="runtime">
|
<!-- Scene 2 & 3: The Service Constellations -->
|
||||||
Runtime: Django <code>{{ django_version }}</code> · Python <code>{{ python_version }}</code>
|
<section class="service-section" id="services">
|
||||||
— UTC <code>{{ current_time|date:"Y-m-d H:i:s" }}</code>
|
<div class="container">
|
||||||
</p>
|
<h2 class="section-title">Chart Your Destiny</h2>
|
||||||
</div>
|
<div class="row g-4">
|
||||||
</main>
|
<!-- Service A -->
|
||||||
<footer>
|
<div class="col-lg-4 col-md-6">
|
||||||
Page updated: {{ current_time|date:"Y-m-d H:i:s" }} (UTC)
|
<div class="service-card">
|
||||||
</footer>
|
<h3>Career & Business</h3>
|
||||||
|
<p>Job timing, promotion reading, business suitability.</p>
|
||||||
|
<div class="price">Price: ₹500</div>
|
||||||
|
<a href="https://wa.me/917381375018?text=Hello, I'm interested in the Career & Business consultation." target="_blank" class="btn btn-whatsapp">Book via WhatsApp</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- Service B -->
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
<div class="service-card">
|
||||||
|
<h3>Marriage & Matchmaking</h3>
|
||||||
|
<p>Kundli Milan, compatibility, relationship analysis.</p>
|
||||||
|
<div class="price">Price: ₹500</div>
|
||||||
|
<a href="https://wa.me/917381375018?text=Hello, I'm interested in the Marriage & Matchmaking consultation." target="_blank" class="btn btn-whatsapp">Book via WhatsApp</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- Service C -->
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
<div class="service-card">
|
||||||
|
<h3>Health & Children</h3>
|
||||||
|
<p>Health predictions, Child Birth consultation, Gemstones.</p>
|
||||||
|
<div class="price">Price: ₹300 - ₹500</div>
|
||||||
|
<a href="https://wa.me/917381375018?text=Hello, I'm interested in the Health & Children consultation." target="_blank" class="btn btn-whatsapp">Book via WhatsApp</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Scene 4: The Vastu Blueprint -->
|
||||||
|
<section class="vastu-section" id="vastu">
|
||||||
|
<div class="container">
|
||||||
|
<h2 class="section-title">Vastu Shastra: Harmonize Your Space</h2>
|
||||||
|
<div class="row align-items-center">
|
||||||
|
<div class="col-lg-12 text-center">
|
||||||
|
<p class="lead">Home & Office Vastu, Layout Correction, Energy Balancing.</p>
|
||||||
|
<div class="price fs-4 my-3">Complete Vastu Consultation: ₹3000</div>
|
||||||
|
<a href="https://wa.me/917381375018?text=Hello, I'm interested in a Complete Vastu Consultation." target="_blank" class="btn btn-whatsapp">Schedule Site Visit / Call</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Scene 5: The Grounding (Contact Section) -->
|
||||||
|
<footer class="contact-section" id="contact">
|
||||||
|
<div class="container">
|
||||||
|
<h2>Raghupati Sahu - Vedic Astrologer</h2>
|
||||||
|
<p>Burla, Sambalpur, Odisha</p>
|
||||||
|
<a href="https://wa.me/917381375018" class="whatsapp-link" target="_blank">
|
||||||
|
Contact on WhatsApp: +91 73813 75018
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
@ -1,4 +1,136 @@
|
|||||||
/* Custom styles for the application */
|
:root {
|
||||||
body {
|
--space-dark: #0c0c1d;
|
||||||
font-family: system-ui, -apple-system, sans-serif;
|
--space-light: #1d1135;
|
||||||
|
--accent-gold: #ffc700;
|
||||||
|
--accent-cyan: #00f2ea;
|
||||||
|
--text-cream: #f0f0f0;
|
||||||
|
--font-headings: 'Cinzel', serif;
|
||||||
|
--font-body: 'Inter', sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background: linear-gradient(135deg, var(--space-dark), var(--space-light));
|
||||||
|
color: var(--text-cream);
|
||||||
|
font-family: var(--font-body);
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
font-family: var(--font-headings);
|
||||||
|
color: var(--accent-gold);
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero-section {
|
||||||
|
height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
text-align: center;
|
||||||
|
background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero-title {
|
||||||
|
font-size: 5rem;
|
||||||
|
font-weight: 700;
|
||||||
|
text-shadow: 0 0 15px var(--accent-gold);
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero-subtitle {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
color: var(--text-cream);
|
||||||
|
}
|
||||||
|
|
||||||
|
.service-section, .vastu-section, .contact-section {
|
||||||
|
padding: 100px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-title {
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 60px;
|
||||||
|
font-size: 3rem;
|
||||||
|
text-shadow: 0 0 10px var(--accent-cyan);
|
||||||
|
}
|
||||||
|
|
||||||
|
.service-card {
|
||||||
|
background: rgba(255, 255, 255, 0.05);
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
|
border-radius: 15px;
|
||||||
|
padding: 30px;
|
||||||
|
-webkit-backdrop-filter: blur(10px);
|
||||||
|
backdrop-filter: blur(10px);
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.service-card:hover {
|
||||||
|
transform: translateY(-10px);
|
||||||
|
border-color: var(--accent-cyan);
|
||||||
|
}
|
||||||
|
|
||||||
|
.service-card h3 {
|
||||||
|
color: var(--accent-cyan);
|
||||||
|
}
|
||||||
|
|
||||||
|
.service-card .price {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
font-weight: 500;
|
||||||
|
color: var(--accent-gold);
|
||||||
|
margin: 15px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-whatsapp {
|
||||||
|
background-color: var(--accent-gold);
|
||||||
|
color: var(--space-dark);
|
||||||
|
border-radius: 50px;
|
||||||
|
padding: 10px 30px;
|
||||||
|
font-weight: 500;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
border: none;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-whatsapp:hover {
|
||||||
|
background-color: var(--accent-cyan);
|
||||||
|
color: var(--space-dark);
|
||||||
|
transform: scale(1.05);
|
||||||
|
box-shadow: 0 0 15px var(--accent-cyan);
|
||||||
|
}
|
||||||
|
|
||||||
|
.vastu-section {
|
||||||
|
background: rgba(0,0,0,0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-section {
|
||||||
|
background-color: var(--space-dark);
|
||||||
|
padding: 60px 0;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-section h2 {
|
||||||
|
font-size: 2.5rem;
|
||||||
|
color: var(--accent-gold);
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-section .whatsapp-link {
|
||||||
|
display: inline-block;
|
||||||
|
background-color: #25D366;
|
||||||
|
color: white;
|
||||||
|
padding: 15px 40px;
|
||||||
|
border-radius: 50px;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
font-weight: 500;
|
||||||
|
margin-top: 20px;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-section .whatsapp-link:hover {
|
||||||
|
transform: scale(1.05);
|
||||||
|
box-shadow: 0 0 20px #25D366;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-section p {
|
||||||
|
margin-top: 20px;
|
||||||
|
color: var(--text-cream);
|
||||||
}
|
}
|
||||||
@ -1,21 +1,136 @@
|
|||||||
|
|
||||||
:root {
|
:root {
|
||||||
--bg-color-start: #6a11cb;
|
--space-dark: #0c0c1d;
|
||||||
--bg-color-end: #2575fc;
|
--space-light: #1d1135;
|
||||||
--text-color: #ffffff;
|
--accent-gold: #ffc700;
|
||||||
--card-bg-color: rgba(255, 255, 255, 0.01);
|
--accent-cyan: #00f2ea;
|
||||||
--card-border-color: rgba(255, 255, 255, 0.1);
|
--text-cream: #f0f0f0;
|
||||||
|
--font-headings: 'Cinzel', serif;
|
||||||
|
--font-body: 'Inter', sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
background: linear-gradient(135deg, var(--space-dark), var(--space-light));
|
||||||
font-family: 'Inter', sans-serif;
|
color: var(--text-cream);
|
||||||
background: linear-gradient(45deg, var(--bg-color-start), var(--bg-color-end));
|
font-family: var(--font-body);
|
||||||
color: var(--text-color);
|
overflow-x: hidden;
|
||||||
display: flex;
|
}
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
h1, h2, h3, h4, h5, h6 {
|
||||||
min-height: 100vh;
|
font-family: var(--font-headings);
|
||||||
text-align: center;
|
color: var(--accent-gold);
|
||||||
overflow: hidden;
|
}
|
||||||
position: relative;
|
|
||||||
|
.hero-section {
|
||||||
|
height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
text-align: center;
|
||||||
|
background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero-title {
|
||||||
|
font-size: 5rem;
|
||||||
|
font-weight: 700;
|
||||||
|
text-shadow: 0 0 15px var(--accent-gold);
|
||||||
|
}
|
||||||
|
|
||||||
|
.hero-subtitle {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
color: var(--text-cream);
|
||||||
|
}
|
||||||
|
|
||||||
|
.service-section, .vastu-section, .contact-section {
|
||||||
|
padding: 100px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-title {
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 60px;
|
||||||
|
font-size: 3rem;
|
||||||
|
text-shadow: 0 0 10px var(--accent-cyan);
|
||||||
|
}
|
||||||
|
|
||||||
|
.service-card {
|
||||||
|
background: rgba(255, 255, 255, 0.05);
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
|
border-radius: 15px;
|
||||||
|
padding: 30px;
|
||||||
|
-webkit-backdrop-filter: blur(10px);
|
||||||
|
backdrop-filter: blur(10px);
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.service-card:hover {
|
||||||
|
transform: translateY(-10px);
|
||||||
|
border-color: var(--accent-cyan);
|
||||||
|
}
|
||||||
|
|
||||||
|
.service-card h3 {
|
||||||
|
color: var(--accent-cyan);
|
||||||
|
}
|
||||||
|
|
||||||
|
.service-card .price {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
font-weight: 500;
|
||||||
|
color: var(--accent-gold);
|
||||||
|
margin: 15px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-whatsapp {
|
||||||
|
background-color: var(--accent-gold);
|
||||||
|
color: var(--space-dark);
|
||||||
|
border-radius: 50px;
|
||||||
|
padding: 10px 30px;
|
||||||
|
font-weight: 500;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
border: none;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-whatsapp:hover {
|
||||||
|
background-color: var(--accent-cyan);
|
||||||
|
color: var(--space-dark);
|
||||||
|
transform: scale(1.05);
|
||||||
|
box-shadow: 0 0 15px var(--accent-cyan);
|
||||||
|
}
|
||||||
|
|
||||||
|
.vastu-section {
|
||||||
|
background: rgba(0,0,0,0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-section {
|
||||||
|
background-color: var(--space-dark);
|
||||||
|
padding: 60px 0;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-section h2 {
|
||||||
|
font-size: 2.5rem;
|
||||||
|
color: var(--accent-gold);
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-section .whatsapp-link {
|
||||||
|
display: inline-block;
|
||||||
|
background-color: #25D366;
|
||||||
|
color: white;
|
||||||
|
padding: 15px 40px;
|
||||||
|
border-radius: 50px;
|
||||||
|
text-decoration: none;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
font-weight: 500;
|
||||||
|
margin-top: 20px;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-section .whatsapp-link:hover {
|
||||||
|
transform: scale(1.05);
|
||||||
|
box-shadow: 0 0 20px #25D366;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-section p {
|
||||||
|
margin-top: 20px;
|
||||||
|
color: var(--text-cream);
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user