/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

@font-face {
    font-family: 'MyFont';
    src: url(/fonts/PlusJakartaSans-SemiBold.ttf);
}

@font-face {
    font-family: 'MyFont2';
    src: url(/fonts/Poppins-SemiBold.woff);
}

@font-face {
    font-family: 'MyFont3';
    src: url(/fonts/Poppins-Light.woff);
}

@font-face {
    font-family: 'MyFont4';
    src: url(/fonts/Autography-DOLnW.otf);
}

@font-face {
    font-family: 'MyFont5';
    src: url(/fonts/Poppins-ExtraBold.woff);
}

html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding: 10px 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.17);
}

.logo {
    display: flex;
    align-items: center;
}

h2 {
    font-family: MyFont5;
    font-size: 20px;
    color: #000000;
    margin-left: 20px;
    display: flex;
    align-items: center;
}

ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
}

li a {
    text-decoration: none;
    margin: 10px;
    font-family: MyFont;
    color: rgb(17, 0, 255);
}

.nav-item {
    --nav-width: 0%;
}

.nav-item::after {
    content: '';
    display: block;
    width: var(--nav-width);
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(90deg, #6782ff, #2b00ff);
    transition: width 0.4s ease-in-out;
}

.nav-item:hover::after {
    --nav-width: 100%;
}

header li:hover::after {
    width: 100%;
}

header li a:hover {
    color: #000000;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2b00ff 0%, #6782ff 100%);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.6;
    animation: moveBackground 30s linear infinite;
}

@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}

.hero-section h1 {
    font-family: MyFont5;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.8s ease-out;
}

.hero-section h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: white;
    margin: 20px auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: expandWidth 1s ease-out forwards;
}

.publish-date {
    font-family: MyFont3;
    font-style: italic;
    opacity: 0.9;
    font-size: 1.1rem;
    margin-top: 1rem;
    position: relative;
    animation: fadeIn 1s ease-out 0.5s both;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 1rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }
}

/* Blog Content */
.blog-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.blog-section {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-section h2 {
    color: #2b00ff;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-family: MyFont5;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.blog-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6782ff, #2b00ff);
    border-radius: 2px;
}

.blog-section h3 {
    color: #2c3e50;
    margin: 2rem 0 1.2rem;
    font-size: 1.6rem;
    font-family: MyFont2;
}

.blog-section p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: MyFont3;
}

.blog-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-image:hover {
    transform: scale(1.02);
}

.content-block {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(to right, #f8f9ff, #ffffff);
    border-radius: 12px;
    border-left: 4px solid #2b00ff;
}

.content-block ul {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.content-block li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #4a5568;
}

.content-block li::before {
    content: '•';
    color: #2b00ff;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.comparison-item {
    background: rgba(43, 0, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.comparison-item:hover {
    transform: translateY(-5px);
}

.comparison-item h3 {
    color: #2b00ff;
    margin-bottom: 1.5rem;
    font-family: MyFont5;
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .blog-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .blog-section h2 {
        font-size: 1.8rem;
    }

    .blog-section h3 {
        font-size: 1.4rem;
    }

    .blog-section p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .content-block {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .blog-image {
        height: 300px;
        margin: 1.5rem 0;
    }

    .comparison-table {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Contact Layout Section */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.message-form-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.message-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message-form h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.message-form label {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.message-form input,
.message-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.message-form button {
    background: #3498db;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.message-form button:hover {
    background: #2980b9;
}

/* Right Side Content */
.right-side {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.text h1 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.text ul li {
    margin-bottom: 1rem;
}

.text ul li a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.text ul li a:hover {
    color: #2980b9;
}

.More-blogs {
    margin-top: 2rem;
}

.cp2 {
    color: #666;
    font-style: italic;
}

/* Recent Comments Section */
.recent-comments-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 1200px;
    margin: 2rem auto;
}

.recent-comments-title {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.rp {
    color: #666;
    font-style: italic;
}

/* ---------- Hamburger Icon ---------- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: #000;
    border-radius: 2px;
    transition: 0.3s;
}

/* ---------- Side Drawer Menu ---------- */
#side-menu {
    position: fixed;
    top: 0;
    left: -260px;
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease;
    z-index: 1001;
    padding-top: 20px;
}

#side-menu.active {
    left: 0;
}

#side-menu ul {
    display: block !important;
    flex-direction: column;
    width: 100%;
}

#side-menu ul li {
    width: 100%;
    position: relative;
}

#side-menu ul li a {
    --nav-width: 0%;
    display: block;
    padding: 15px 20px;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    width: max-content;
    position: relative;
}

#side-menu ul li a::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 20px;
    width: var(--nav-width);
    height: 4px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='4' viewBox='0 0 100 4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 0 2 Q 25 0, 50 2 T 100 2' stroke='%232b00ff' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 50px 4px;
    transition: width 0.3s ease;
}

#side-menu ul li a:hover::after {
    --nav-width: calc(100% - 40px);
}

/* ---------- Overlay ---------- */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

#overlay.active {
    display: block;
}

/* ---------- Show on Mobile ---------- */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .pc-nav {
        display: none;
    }
    
    header {
        flex-direction: space-between;
        align-items: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }

    .blog-image {
        height: 300px;
    }

    .blog-content {
        padding: 1rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }
}

.side-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 30px;
    position: relative;
}

.side-profile::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='6' viewBox='0 0 100 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 0 3 Q 25 0, 50 3 T 100 3' stroke='%232b00ff' fill='none' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 100px 6px;
}

.side-profile .side-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.side-profile h3 {
    margin: 0;
    color: #2b00ff;
    font-family: MyFont5;
    font-size: 18px;
}

/* Footer */
.blog-footer {
    background: linear-gradient(135deg, #2b00ff 0%, #6782ff 100%);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.blog-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.1;
    pointer-events: none;
}

.blog-footer p {
    font-family: MyFont5;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .blog-footer {
        padding: 1.5rem;
    }
    
    .blog-footer p {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-section {
    animation: fadeIn 0.5s ease-out;
} 
@media (max-width: 768px) {
ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
}