/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: #000000;
    position: relative;
    overflow-x: hidden;
}


/* container */
.b_container {
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0 20px; 
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .b_container  {
        max-width: 90%; 
        padding: 0 15px; 
    }
}

@media (max-width: 480px) {
    .b_container  {
        max-width: 100%;
        padding: 0 10px;
    }
}

/* Navbar */
nav {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.5rem;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.logo-icon {
    width: 50px; 
    height: 50px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-icon img {
    width:100%; 
    height:100%;
}

.nav-links a:hover {
    color: #a0a0a0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 100;
}

.hamburger span {
    height: 2px;
    width: 24px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Landing Page */
.landing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    background: transparent;
    padding: 0rem 4vw;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

/* Fixed Background Decorations */
.bg-decoration {
    position: fixed;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.bg-decoration-1 {
    top: -400px;
    right: -400px;
    background: radial-gradient(circle, rgba(247, 143, 6, 0.8) 0%, transparent 90%);
    animation: floatDecoration 15s ease-in-out infinite alternate;
}

.bg-decoration-2 {
    bottom: -400px;
    left: -400px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.8) 0%, transparent 90%);
    animation: floatDecoration 12s ease-in-out infinite alternate-reverse;
}

@keyframes floatDecoration {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.15;
    }
    100% {
        transform: translate(50px, 50px) scale(1.1);
        opacity: 0.2;
    }
}

.content-left {
    padding: 2rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.content-left h1 {
    font-family: "Jost", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

.content-left p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    letter-spacing: 1px;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #a0a0a0;
}

.cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(45deg, #6a1b9a, #8e24aa);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: linear-gradient(45deg, #7b1fa2, #9c27b0);
    transform: translateY(-2px);
}

.icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.icon-circle {
    background: white;
    border-radius: 50%;
    height: 40px; /* Increased size for better visibility */
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.icon-circle:hover {
    transform: scale(1.1);
}

.icon img {
    width: 100%; /* Adjusted size for better scaling */
    height: 100%;
    padding: 0.5rem;
}

.content-right {
    height: 55vh; 
    width: auto;
    position: relative;
    z-index: 1;
}

.content-right img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width:960px) {
    .landing {
        flex-direction: column;
        text-align: center;
        padding-bottom: 4rem;
    }

    .content-left{
        width: 90%;
        padding-top:6rem ;
    }
    
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing {
        padding-bottom: 0rem;
        height: 80vh;
    }
    nav {
        padding: 1rem;
    }
    .content-right {
        height: auto; 
        width: 100%;
    }    

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        gap: 2rem;
        padding: 6rem 2rem 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .content-left {
        width: 100%;
        margin-bottom: 2rem;
    }

    .content-right {
        width: 100%;
    }

    .content-right img {
        max-width: 100%;
    }

    .metric-box{
        padding: 1rem !important;
        font-size: 14px !important;
      }
}

@media (max-width: 480px) {

    .content-left {
        padding: 2px;
        padding-top: 25px;
    }

    .content-left h1 {
        font-size: 2rem;
    }

    .content-left p {
        font-size: 1rem;
    }

    .cta-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    .icon-circle {
        height: 50px;
        width: 50px;
    }

    .icon img {
        width: 80%;
        height: 80%;
    }

  
      
}

/* floating matrix */
.floating-metrics {
    position: absolute;
    top: 30%;
    right: 35%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
}

.metric-box {
    background-color: rgba(26, 26, 26, 0.9);
    color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 24px;
    text-align: center;
}

.metric-box.animated {
    background: linear-gradient(45deg, rgba(106, 27, 154, 0.8), rgba(142, 36, 170, 0.8));
    color: #ffffff;
    animation: floatUpDown 3s ease-in-out infinite;
}

.animate_moon2  {
    animation: floatUpDown 3s ease-in-out infinite;

}

.animate_moon{
    animation: floatUpDownMore 3s ease-in-out infinite;
}


  
@keyframes floatUpDownMore {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-40px);
    }
  }

  @keyframes floatUpDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }



 /* service section */
.services {
    padding: 4rem 4rem;
    background-color: transparent;
    position: relative;
}

.section-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 3rem;
    position: relative;
    font-family: "Jost", sans-serif;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 6px;
    background: #6a1b9a;
    margin: 1rem auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 1rem;
}

.service-card {
    
    background:linear-gradient(135deg, rgba(0, 3, 30, 0.9), rgba(114, 27, 154, 0.15)); /* Dark gradient with purple tint */
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    color: #ffffff; /* White text for content */
}


.service-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 2px solid #6a1b9a; /* Purple border for images */
}

.service-card h2 {
    color: #e0e0e0; /* Light gray for headings */
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #b0b0b0; /* Subtle gray for paragraphs */
    font-size: 1rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    width: 100%;
}

.service-card ul li {
    color: #e0e0e0;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6a1b9a;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.service-card ul li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.service-card ul li:hover::before {
    transform: translateX(3px);
    color: #8e24aa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card ul li {
        font-size: 0.9rem;
        padding-left: 1.2rem;
    }
}

@media (max-width: 768px) {
    .section-title,
    .portfolio-header h1,
    .blog-posts .section-title,
    .contact-section .section-title {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* .service-card {
        margin: 1rem;
    } */

    .services , .blog-posts{
        padding: 2rem !important;
    }

    .services-grid{
        padding: 0px !important;
    }
}

@media (max-width: 480px) {
    .section-title,
    .portfolio-header h1,
    .blog-posts .section-title,
    .contact-section .section-title {
        font-size: 2rem;
    }

    .content-left {
        padding: 2px;
        padding-top: 25px;
    }

    .content-left h1 {
        font-size: 2rem;
    }

    .content-left p {
        font-size: 1rem;
    }

    .cta-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    .icon-circle {
        height: 50px;
        width: 50px;
    }

    .icon img {
        width: 80%;
        height: 80%;
    }

  
      
}

/* floating matrix */
.floating-metrics {
    position: absolute;
    top: 30%;
    right: 35%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
}

  .metric-box {
    background-color: rgba(26, 26, 26, 0.9);
    color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
  font-weight: bold;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 24px;
  text-align: center;
  }
  
  .metric-box.animated {
    background: linear-gradient(45deg, rgba(106, 27, 154, 0.8), rgba(142, 36, 170, 0.8));
    color: #ffffff;
    animation: floatUpDown 3s ease-in-out infinite;
}

.animate_moon2  {
    animation: floatUpDown 3s ease-in-out infinite;

}

.animate_moon{
    animation: floatUpDownMore 3s ease-in-out infinite;
}


  
@keyframes floatUpDownMore {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-40px);
    }
  }

  @keyframes floatUpDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }



 /* service section */
.services {
    padding: 4rem 4rem;
    background-color: transparent;
    position: relative;
}

.section-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 3rem;
    position: relative;
    font-family: "Jost", sans-serif;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 6px;
    background: #6a1b9a; 
    margin: 1rem auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 1rem;
}

.service-card {
    
    background:linear-gradient(135deg, rgba(5, 5, 5, 0.9), rgba(114, 27, 154, 0.15)); /* Dark gradient with purple tint */
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    color: #ffffff; /* White text for content */
}


.service-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 2px solid #6a1b9a; /* Purple border for images */
}

.service-card h2 {
    color: #e0e0e0; /* Light gray for headings */
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #b0b0b0; /* Subtle gray for paragraphs */
    font-size: 1rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    width: 100%;
}

.service-card ul li {
    color: #e0e0e0;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6a1b9a;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.service-card ul li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.service-card ul li:hover::before {
    transform: translateX(3px);
    color: #8e24aa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card ul li {
        font-size: 0.9rem;
        padding-left: 1.2rem;
    }
}

@media (max-width: 768px) {
    .section-title,
    .portfolio-header h1,
    .blog-posts .section-title,
    .contact-section .section-title {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* .service-card {
        margin: 1rem;
    } */

    .services , .blog-posts{
        padding: 2rem !important;
    }

    .services-grid{
        padding: 0px !important;
    }
}

/* product display */
.portfolio-header {
    text-align: center;
}

.portfolio-header h1 {
    font-size: 2.8rem;
    font-family: "Jost", sans-serif; 
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    text-align: center;
}


.portfolio-header p {
    font-size: 1rem; 
    font-family: "Inter", sans-serif; 
    color: #a0a0a0;
    line-height: 1.6;
    margin-top: 1rem;
    text-align: center;
}

.tabs-container {
    border-radius: 12px;
    overflow: hidden;
}

/* Tab Navigation Styles */
.tabs-nav {
    display: flex;
    justify-content: start;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}

.tab-button {
    position: relative;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tab-button:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.tab-button.active {
    color: #fff;
    font-weight: 600;
}

.tab-button.active::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #6366f1);
    border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tabs-nav {
        flex-wrap: wrap;
        gap: 0.25rem;
        padding: 0.25rem;
    }

    .tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

.tab-content {
    font-size: 1rem; /* Consistent font size */
    font-family: "Inter", sans-serif; /* Consistent font family */
    color: #333;
    line-height: 1.6;
    margin-top: 20px;
}

.tab-content {
    display: none;
    padding: 30px;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.project-card {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    width: 100%;
    height: 340px !important;
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-details {
    padding: 20px;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; 
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 15px;
}

.project-details h3 {
    font-size: 1.5rem; /* Consistent font size */
    font-family: "Jost", sans-serif; /* Consistent font family */
    color: #333;
    margin-bottom: 10px;
}

.project-details p {
    font-size: 1rem; /* Consistent font size */
    font-family: "Inter", sans-serif; /* Consistent font family */
    color: rgba(255, 255, 255, 0.667);
    line-height: 1.6;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    font-size: 0.85rem; /* Consistent font size */
    font-family: "Inter", sans-serif; /* Consistent font family */
    font-weight: 600;
}

.project-link {
    font-size: 1rem; /* Consistent font size */
    font-family: "Inter", sans-serif; /* Consistent font family */
    font-weight: 600;
}

.project-link:hover {
    color: #2a3eb1;
}

/* Tab dropdown for very small screens */
.tab-dropdown {
    display: none;
    width: 100%;
    padding: 12px 15px;
    background: #f8f8f8;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Responsiveness */
@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .tab-button {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .tabs-nav-container::after {
        display: block;
    }
    
    .portfolio-header h1 {
        font-size: 2.8rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
    
    .portfolio-header {
        margin-bottom: 25px;
    }
    
    .portfolio-header h1 {
        font-size: 2.2rem;
    }
    
    .portfolio-header p {
        font-size: 1rem;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tab-button {
        padding: 12px 18px;
        font-size: 0.85rem;
    }
    
    .tab-content {
        padding: 15px;
    }
    
    /* Enable dropdown for very small screens */
    .use-dropdown .tabs-nav {
        display: none;
    }
    
    .use-dropdown .tab-dropdown {
        display: block;
    }
}

/* Very small mobile screens */
@media (max-width: 380px) {
    .tabs-container {
        border-radius: 8px;
    }
    
    .tab-button {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .project-image {
        height: 160px;
    }
}



/* Blog Post Section */
.blog-posts {
    padding: 4rem 3.8rem;
    background-color: transparent;
    position: relative;
}

.blog-posts .section-title {
    font-size: 2.8rem;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
}

.blog-posts .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 6px;
    background: #6a1b9a;
    margin: 1rem auto 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: #1a1a1a; /* Dark card background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(106, 27, 154, 0.5); /* Purple shadow on hover */
}

.blog-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.5rem;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
}

.blog-excerpt {
    font-size: 1rem;
    font-family: "Inter", sans-serif;
    color: #b0b0b0;
    line-height: 1.6;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* Limit to 3 lines */
    margin-bottom: 1.5rem;
}

.blog-link {
    font-size: 1rem;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #6a1b9a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
    /* Footer Styles */
.footer {
    padding: 2rem !important;
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.footer {
    position: relative;
    background-color: #1a1a1a;
    color: white;
    padding: 4rem;
}

.footer-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.footer-bg-blob {
    position: absolute;
    width: 20rem;
    height: 20rem;
    border-radius: 9999px;
    filter: blur(24px);
}

.footer-bg-blob-1 {
    top: -10rem;
    left: -10rem;
    background-color: rgba(168, 85, 247, 0.1);
}

.footer-bg-blob-2 {
    bottom: -10rem;
    right: -10rem;
    background-color: rgba(59, 130, 246, 0.1);
}

.footer-content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 2.9rem 0;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 3rem;
    height: 0.25rem;
    background: linear-gradient(to right, #a855f7, #3b82f6);
}

.footer-text {
    color: #9ca3af;
    line-height: 1.625;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #9ca3af;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: white;
}

.footer-link-dot {
    width: 0.25rem;
    height: 0.25rem;
    background-color: #a855f7;
    border-radius: 9999px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-link:hover .footer-link-dot {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-icon {
    color: #a855f7;
    margin-top: 0.25rem;
}

.footer-contact-title {
    color: #d1d5db;
    font-weight: 500;
}

.footer-contact-value {
    color: #9ca3af;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-social-icon {
    width: 1.25rem;
    height: 1.25rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-social-link:hover .footer-social-icon {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-copyright {
    color: #9ca3af;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-legal-link {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: white;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}



/* single post */
.single-post {
    background-color: #fff;
}

.b_container_single {
    width: 60%;
    margin: 0 auto;
    padding: 20px;
    padding-top: 60px;
    background-color: #fff;
}

.post-featured-image {
    text-align: center;
    margin-bottom: 20px;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
}

.post-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.post-meta {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 20px;
}

.post-meta span {
    margin-right: 15px;
}

.post-body {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
}

.post-body p {
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .b_container_single {
        width: 90%;
    }

    .post-title {
        font-size: 2em;
    }

    .post-meta {
        font-size: 0.8em;
    }

    .post-body {
        font-size: 1em;
    }
}


/* Related Posts Section */
.related-posts {
    margin-top: 40px;
    padding: 30px;
    border-radius: 8px;
}

.related-posts h3 {
    font-size: 1.8em;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    flex-wrap: wrap;
    gap: 20px;
}

.related-post-card {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.related-post-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.related-post-details {
    margin-top: 15px;
}

.related-post-title {
    font-size: 1.2em;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.related-post-link {
    font-size: 1em;
    color: #0073e6;
    text-decoration: none;
}

.related-post-link:hover {
    text-decoration: underline;
}

/* Responsive Design for Related Posts */
@media (max-width: 768px) {
    .related-posts-grid {
        flex-direction: column;
        gap: 15px;
    }

    .related-post-card {
        width: 100%;
    }
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: transparent;
    color: #ffffff;
    position: relative;
}

.contact-section .section-title {
    font-size: 2.8rem;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-section .section-description {
    font-size: 1rem;
    font-family: "Inter", sans-serif;
    color: #b0b0b0;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 1rem;
    font-family: "Inter", sans-serif;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    font-family: "Inter", sans-serif;
    color: #333;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #6a1b9a;
}

.contact-form .cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(45deg, #6a1b9a, #8e24aa);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    width: 100%;
}

.contact-form .cta-btn:hover {
    background-color: #5e35b1;
}

/* Metrics Showcase Section */
.metrics-showcase {
    position: relative;
    padding: 4rem;
    overflow: hidden;
    background: #000;
}

.metrics-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(88, 24, 69, 0.2) 0%, rgba(30, 58, 138, 0.2) 100%);
}

.geometric-shape {
    position: absolute;
    width: 256px;
    height: 256px;
    border-radius: 50%;
    filter: blur(48px);
}

.shape-1 {
    top: 80px;
    right: 80px;
    background: rgba(147, 51, 234, 0.05);
}

.shape-2 {
    bottom: 80px;
    left: 80px;
    background: rgba(59, 130, 246, 0.05);
}

.metrics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.metrics-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.metrics-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.metrics-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #d1d5db;
}

.metrics-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
    transition: all 0.3s ease;
}

.video-icon {
    background: rgba(147, 51, 234, 0.2);
}

.video-icon:hover {
    background: rgba(147, 51, 234, 0.3);
    transform: scale(1.05);
}

.video-icon:hover svg {
    color: #d8b4fe;
}

.analytics-icon {
    background: rgba(59, 130, 246, 0.2);
}

.analytics-icon:hover {
    background: rgba(59, 130, 246, 0.3);
    transform: scale(1.05);
}

.analytics-icon:hover svg {
    color: #93c5fd;
}

.feature-text h3 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-text p {
    color: #9ca3af;
}

.metrics-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.tiktok-card:hover {
    border-color: rgba(147, 51, 234, 0.5);
}

.multi-platform-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.kohana-card:hover {
    border-color: rgba(34, 197, 94, 0.5);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.platform-badges {
    display: flex;
    gap: 8px;
}

.platform-badge {
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.platform-badge.tiktok {
    background: rgba(147, 51, 234, 0.2);
    color: #d8b4fe;
}

.platform-badge.instagram {
    background: rgba(236, 72, 153, 0.2);
    color: #f9a8d4;
}

.card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stats-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stats-label {
    color: #9ca3af;
    font-size: 0.875rem;
}

.stats-values {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stats-values p {
    color: #fff;
}

.stats-values.highlight p {
    color: #d8b4fe;
    font-weight: 600;
}

.multi-platform-card .stats-values.highlight p:nth-child(2),
.multi-platform-card .stats-values.highlight p:nth-child(3) {
    color: #93c5fd;
}

.kohana-card .stats-values.highlight p {
    color: #86efac;
}

.metrics-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #6a1b9a, #8e24aa);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(106, 27, 154, 0.3);
}

.metrics-cta-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, #7b1fa2, #9c27b0);
    box-shadow: 0 6px 20px rgba(106, 27, 154, 0.4);
}

.metrics-cta-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .metrics-cta-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .metrics-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .metrics-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .metrics-showcase {
        padding: 60px 22px;
    }

    .card-content {
        grid-template-columns: 1fr;
    }

    .geometric-shape {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .metrics-title {
        font-size: 1.75rem;
    }

    .metrics-description {
        font-size: 1rem;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .platform-badges {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Digital Marketing Section */
.digital-marketing {
    padding: 4rem;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.digital-marketing-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.digital-marketing-tabs {
    color: #ffffff;
}

.digital-marketing-tabs .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.digital-marketing-tabs .section-description {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.strategy-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.strategy-tab {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.strategy-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.strategy-tab.active {
    background: rgba(106, 27, 154, 0.2);
    border-color: #6a1b9a;
    border-left: 4px solid #6a1b9a;
}

.strategy-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(106, 27, 154, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.strategy-tab span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Tab Content Styles */
.digital-marketing-tab-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
}

.tab-content-wrapper {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tab-image {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tab-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tab-text h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.tab-text p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tab-text ul {
    list-style: none;
    padding: 0;
    /* margin: 0 0 2rem 0; */
}

.tab-text ul li {
    color: #ffffff;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tab-text ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6a1b9a;
}

/* Tab Button Styles */
.tab-text .cta-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-end;
    margin-top: auto;
}

.tab-text .cta-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tab-text .cta-btn {
        width: auto;
        padding: 0.75rem 1rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .digital-marketing-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .digital-marketing {
        padding: 60px 22px;
    }

    .digital-marketing-tabs .section-title {
        font-size: 2rem;
    }

    .strategy-tab {
        padding: 1rem;
    }

    .strategy-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .tab-content-wrapper {
        padding: 1.5rem;
    }

    .tab-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .digital-marketing-tabs .section-title {
        font-size: 1.75rem;
    }

    .strategy-tab span {
        font-size: 1rem;
    }

    .tab-text h3 {
        font-size: 1.25rem;
    }

    .tab-image {
        height: 200px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(45deg, #6a1b9a, #8e24aa);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 27, 154, 0.3);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(45deg, #7b1fa2, #9c27b0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 27, 154, 0.4);
}

.scroll-to-top:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Single Service Page Styles */
.single-service-page {
    padding: 4rem 0;
    background-color: transparent;
    color: #ffffff;
}

.service-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-title {
    font-size: 3rem;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-content {
    display: grid;
    gap: 4rem;
}

.service-details h2 {
    font-size: 2rem;
    font-family: "Jost", sans-serif;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(106, 27, 154, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    color: #ffffff;
    width: 24px;
    height: 24px;
}

.feature-content h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-content p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-content ul {
    list-style: none;
    padding: 0;
}

.feature-content ul li {
    color: #e0e0e0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6a1b9a;
}

/* Pricing Plans Styles */
.pricing-plans {
    margin-top: 6rem;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(106, 27, 154, 0.5), transparent);
}

.pricing-plans h2 {
    font-size: 2.5rem;
    font-family: "Jost", sans-serif;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.pricing-plans h2::after {
    content: 'Choose Your Path';
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: #6a1b9a;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 0 2rem;
    position: relative;
}

.plan-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6a1b9a, #8e24aa);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card.featured {
    background: rgba(106, 27, 154, 0.1);
    transform: scale(1.05);
    border: 1px solid rgba(106, 27, 154, 0.3);
}

.plan-card.featured::after {
    content: 'Most Popular';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: linear-gradient(45deg, #6a1b9a, #8e24aa);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(106, 27, 154, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.plan-header h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    font-family: "Jost", sans-serif;
}

.price .period {
    color: #a0a0a0;
    font-size: 1.1rem;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.plan-features li {
    color: #e0e0e0;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6a1b9a;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.plan-features li:hover::before {
    transform: translateX(5px);
}

.plan-card .cta-btn {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.plan-card .cta-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.plan-card.featured .cta-btn {
    background: rgba(106, 27, 154, 0.2);
    border-color: rgba(106, 27, 154, 0.3);
}

.plan-card.featured .cta-btn:hover {
    background: rgba(106, 27, 154, 0.3);
    border-color: rgba(106, 27, 154, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 3rem;
    }

    .plan-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-plans {
        padding: 3rem 1rem;
    }

    .pricing-plans h2 {
        font-size: 2rem;
    }

    .plan-card {
        padding: 2rem 1.5rem;
    }

    .plan-header h3 {
        font-size: 1.75rem;
    }

    .price .amount {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .pricing-plans h2 {
        font-size: 1.75rem;
    }

    .plan-header h3 {
        font-size: 1.5rem;
    }

    .price .amount {
        font-size: 2.5rem;
    }

    .plan-features li {
        font-size: 1rem;
        padding: 0.75rem 0;
        padding-left: 1.75rem;
    }
}

/* Digital Template Page Styles */
.digital-template-page {
    background: #0a0a0a;
    padding: 4rem 0;
}

/* Intro Section */
.template-intro {
    text-align: center;
    margin-bottom: 6rem;
    padding: 0 2rem;
}

.intro-title {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #6a1b9a, #9c27b0);
    -webkit-text-fill-color: transparent;
}

.intro-description {
    color: #a0a0a0;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Template Sections */
.template-section {
    margin-bottom: 6rem;
    padding: 0 2rem;
}

.section-header {
    text-align: left;
    margin-bottom: 4rem;
    padding-left: 1.5rem;
}

.graphic-design-section .section-header {
    border-color: #6a1b9a;
}

.video-editing-section .section-header {
    border-color: #1b5e9a;
}

.meta-ads-section .section-header {
    border-color: #9a1b1b;
}

.section-title {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-description {
    color: #a0a0a0;
    font-size: 1.1rem;
    max-width: fit-content;
    margin: auto;
}

.template-tabs {
    position: relative;
}

.tabs-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.tab-button.active {
    background: rgba(106, 27, 154, 0.2);
    border-color: #6a1b9a;
    color: #ffffff;
}

.template-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.template-grid_gd{
    display: grid;
    grid-template-columns: repeat(4, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.template-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.template-card:hover {
    transform: translateY(-5px);
}

.template-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 8/9;
}

.template-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.template-card:hover .template-image img {
    transform: scale(1.05);
}

.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .template-section {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .template-grid {
        grid-template-columns: 1fr;
    }

    .template-grid_gd {
        grid-template-columns: 1fr;
    }
    
    .tabs-nav {
        gap: 0.5rem;
    }
    
    .tab-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .intro-title {
        font-size: 2.5rem;
    }

    .intro-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .template-section {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .template-grid {
        gap: 1.5rem;
    }
    
    .tabs-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-button {
        width: 100%;
        text-align: center;
    }

    .intro-title {
        font-size: 2rem;
    }

    .intro-description {
        font-size: 1rem;
    }
}

/* Section Navigation */
.section-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.nav-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    width: 200px;
    transition: all 0.3s ease;
}

.nav-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.nav-box h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-box ul li {
    margin-bottom: 0.5rem;
}

.nav-box ul li:last-child {
    margin-bottom: 0;
}

.nav-box ul li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-box ul li a:hover {
    color: #ffffff;
    background: rgba(106, 27, 154, 0.2);
    padding-left: 1rem;
}

.nav-box ul li a.active {
    color: #ffffff;
    background: rgba(106, 27, 154, 0.3);
    padding-left: 1rem;
}

@media (max-width: 1200px) {
    .section-nav {
        right: 1rem;
    }
    
    .nav-box {
        width: 180px;
        padding: 1.2rem;
    }
}

@media (max-width: 768px) {
    .section-nav {
        display: none;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background-color: #0a0a0a;
    color: #fff;
}

.contact-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.info-content {
    max-width: 600px;
}

.info-header .section-title {
    color: #fff;
    margin-bottom: 1.5rem;
}

.info-header .section-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.method-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6a1b9a, #8e24aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.method-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.method-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

.social-media h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6a1b9a, #8e24aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.contact-form-container {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.contact-form-container .section-title {
    color: #fff;
    margin-bottom: 1rem;
}

.contact-form-container .section-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.contact-form {
    width: 100%;
}

/* Form Styling */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    width: 100%;
    margin-bottom: 1rem;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6a1b9a;
    background: rgba(255, 255, 255, 0.15);
}

.contact-form input[type="submit"] {
    background: linear-gradient(135deg, #6a1b9a, #8e24aa);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-form input[type="submit"]:hover {
    transform: translateY(-2px);
}

/* Contact Page Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-info,
    .contact-form-container {
        width: 100%;
    }

    .info-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .info-header .section-title {
        font-size: 2rem;
    }
}