/*
Theme Name: Twenty Twenty Five Child
Theme URI: http://example.com/twenty-twenty-five-child/
Description: Twenty Twenty Five Child Theme
Author: WordPress
Author URI: http://example.com
Template: twentytwentyfive
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Text Domain: twenty-twenty-four-child
*/

/* Custom styles go here */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

html {
  scroll-behavior: smooth;
}

/*preload*/
/* 1. The Full Screen Overlay */
#custom-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0b0f19;
    z-index: 99999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* 2. The Logo Styling */
.preloader-logo {
    width: 150px; 
    height: auto;
    object-fit: contain;
    /* We combine the spin and zoom into one animation called 'spin-zoom' */
    animation: spin-zoom 3s ease-in-out infinite;
}

/* 3. The Combined Zoom + Spin Keyframes */
@keyframes spin-zoom {
    0% {
        transform: rotate(0deg) scale(0.5); /* Starts small and at 0 degrees */
        opacity: 0.7;
    }
    50% {
        transform: rotate(180deg) scale(1.3); /* Zooms IN big at the halfway point */
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) scale(0.5); /* Shrinks back down to loop smoothy */
        opacity: 0.7;
    }
}

/* 4. The Class to Hide the Loader */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/*end preload*/


body,
.wp-site-blocks {
  background-color: #0B0F19 !important;
  font-family: 'Space Grotesk', sans-serif !important;
  color: #D1D5DB !important;
  padding-left: 12px;
  padding-right: 12px;
}

.wp-site-blocks {
  max-width: none !important;
  padding: 0 !important;
}


h1, h2, h3, h4, h5, h6,
.wp-block-post-title,
.wp-block-query-title {
  font-family: 'Space Grotesk', sans-serif !important;
}

.gold-highlight {
  color: #FFD233;
}

.bg-background-dark {
  background-color: #0B0F19;
}

.bg-card-background {
  background-color: #181C2A;
}

.border-border-dark {
  border-color: #2D3748;
}

.text-primary {
  color: #FFD233;
}

/*
 * --- Header Sticky Effect ---
 */

#main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background-color 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out, border-color 0.3s ease-in-out;
  background-color: transparent;
  backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
}

#main-header.scrolled {
  background-color: rgba(11, 15, 25, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); 
  border-bottom: 1px solid #2D3748;
}


/*
 * --- Header Layout Styles (Translating your classes) ---
 */

.main-container{
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

#main-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

/* Logo Style */
.logo-image {
  height: 50px; /* You can adjust this */
  width: auto;
  display: block;
}

.header_ul{
  display: flex;
  gap: 1.5rem;
  list-style-type: none !important;
  text-decoration: none;
  color: #E5E7EB;
  font-weight: 500;
  font-size: 1rem;
}
.nav-link {
  color: #E5E7EB; 
  transition: color 0.15s ease-in-out;
  text-decoration: none;
}
.nav-link:hover {
  color: #FFD233;
}


.resume-button {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  border: 1px solid #2D3748;
  border-radius: 9999px; 
  font-size: 1rem;
  font-weight: 500; 
  color: #E5E7EB; 
  transition: all 0.15s ease-in-out;
  text-decoration: none;
}
.resume-button:hover {
  background-color: #1F2937;
  border-color: #FFD233;
  color: #FFD233; 
}

/*end header sticky effect*/

.mobile-menu-button {
  display: block; 
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001; 
}

.mobile-menu-button .icon-bar {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #E5E7EB;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}

.mobile-menu-button.is-open .icon-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-menu-button.is-open .icon-bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-button.is-open .icon-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.desktop-resume-button {
  display: none;
}

.mobile-resume-button {
  display: block;
  margin-top: 1rem;
}

#main-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  background-color: #0B0F19; 
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}


#main-nav.is-open {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.header_ul {
  flex-direction: column; 
  gap: 2rem;
  font-size: 1.5rem; 
  text-align: center;
  padding: 0;
}

/*-----------hero section styles-----------*/
/* Typewriter Cursor Effect */
.txt-type > .txt {
    border-right: 0.2rem solid #D1D5DB; /* You can change this color to match your Gold Highlight if preferred */
    padding-right: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% { border-right-color: transparent; }
    50% { border-right-color: #D1D5DB; } /* Or your Gold Color */
    100% { border-right-color: transparent; }
}

.hero-section {
  padding-top: 4rem; 
  padding-bottom: 4rem; 
  text-align: center;
}

.hero-pretitle {
  font-size: 0.875rem; 
  font-weight: 500; 
  color: #FFD233; 
  margin-bottom: 1rem;
  letter-spacing: 0.1em; 
}

.hero-title {
  font-size: 3rem; 
  font-weight: 700; 
  color: #FFFFFF; 
  line-height: 1.2; 
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  max-width: 42rem; 
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem; 
  color: #9CA3AF; 
  margin-bottom: 2rem; 
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem; 
}


.hero-button-primary,
.hero-button-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 8px; 
  text-decoration: none;
  font-size: 1rem;
}


.hero-button-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #ffd233; 
  color: #111827;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  border: 1px solid #ffd233;
}

.hero-button-primary:hover {
  background-color: transparent;
  border: 1px solid #ffd233;
  color: #fff;
}


.hero-button-secondary {
  border: 1px solid #2D3748; 
  color: #E5E7EB; 
  transition: all 0.15s ease-in-out;
}
.hero-button-secondary:hover {
  background-color: #1F2937; 
  border-color: #FFD233; 
  color: #FFD233; 
}


/* ========================================= */
/* START: 1. FLOATING ICON STYLES
/* ========================================= */

/* The floating animation keyframes */
@keyframes floatAnimation {
  0% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
  100% { transform: translateY(0); }
}

/* * Make the hero section the parent
 * for absolute positioning.
 */
.hero-section {
    position: relative;
    overflow-x: hidden; /* Hide horizontal overflow */
}

/* * Ensure content is "above" the floating icons.
 * We'll give the icons a z-index of 0.
 */
.hero-pretitle,
.hero-title,
.hero-subtitle,
.hero-buttons,
.hero-brand-slider {
    position: relative;
    z-index: 1;
}

/* Hide the icons container on mobile, as requested */
.hero-floating-icons {
    display: none; 
}

.hero-brand-slider {
    margin-top: 8rem; /* Space below buttons */
    width: 100%;
    overflow: hidden;
}

.brand-slider-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #9CA3AF;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.brand-logo-swiper .brand-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.brand-logo-swiper .brand-slide img {
    height: 30px; /* Uniform height for all logos */
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%); /* Start as grayscale */
    transition: all 0.3s ease;
}

.brand-logo-swiper .brand-slide:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/*----------- end -----------*/


/*------------------------ work experience style ------------------------*/

.work-section {
  padding: 8rem 0; 
}

.work-card-logo {
    width: 60px;       /* Adjust this size if you want them bigger/smaller */
    height: 60px;      /* Must match width for a square, or set your aspect ratio */
    object-fit: cover; /* This cuts off excess parts of the image to fill the square */
    border-radius: 50%; /* Optional: Makes the logos circular. Remove if you want squares */
    flex-shrink: 0;    /* Prevents the logo from shrinking on mobile */
}

/* Small adjustment to align the header items */
.work-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 3rem;
}

.work-content-left {
  text-align: center;
}

.work-pretitle {
  font-size: 0.875rem; 
  font-weight: 500; 
  color: #FFD233; 
  letter-spacing: 0.1em; 
}

.work-title {
  font-size: 3rem; 
  font-weight: 700; 
  color: #FFFFFF;
  line-height: 1.2; 
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.work-description {
  max-width: 100%; 
  font-size: 1.125rem; 
  color: #9CA3AF; 
  margin-bottom: 2rem; 
  line-height: 1.7;
}

/* New CTA Button Style */
.work-cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #ffd233; 
  color: #111827;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  border: 1px solid #ffd233;
}
.work-cta-button:hover {
  background-color: transparent;
  border: 1px solid #ffd233;
  color: #fff;
}

.vertical-work-slider {
    width: 400px;
    height: 400px;
    overflow: hidden; 
}    
/*.vertical-work-slider .swiper-slide{*/
/*    height: auto !important;*/
/*}*/

.work-card {
  background-color: #181C2A; 
  border: 1px solid #2D3748; 
  border-radius: 8px;
  padding: 2rem;
  height: 100%; 
  box-sizing: border-box; 
}

.work-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.work-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.work-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.work-card-company {
  font-size: 1rem;
  font-weight: 500;
  color: #FFD233;
  margin-bottom: 1rem;
}

.work-card-description {
  font-size: 0.95rem;
  color: #9CA3AF;
  line-height: 1.6;
}

/*------------------------ end style ------------------------*/


 /*------------------------------------------------------------------projects style----------------------------------------------------------------------------*/
  
    .projects_section{
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
    .project_container{
         text-align: center;
    }
    
    .project_content{
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .project-pretitle {
      font-size: 0.875rem; 
      font-weight: 500; 
      color: #FFD233; 
      letter-spacing: 0.1em; 
    }
    
    .project-title {
      font-size: 3rem; 
      font-weight: 700; 
      color: #FFFFFF;
      line-height: 1.2; 
      margin-bottom: 1.5rem;
      margin-top: 0;
    }
    
    .project_showcase {
        display: grid;
        grid-template-columns: repeat(6, 1fr); /* The Magic 6 Columns */
        gap: 24px;
        margin-top: 40px;
    }
    
    .w-50 {
        grid-column: span 3; /* Spans 50% */
    }
    
    .w-33 {
        grid-column: span 2; /* Spans 33% */
    }
    
    /* --- CARD STYLING (New Stuff) --- */
    .project-card {
        position: relative;
        border-radius: 24px;       
        overflow: hidden;       
        min-height: 400px;        
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: flex-end;   
        transition: transform 0.3s ease;
        text-decoration: none; 
        color: inherit;        
        cursor: pointer;    
    }
    

    .project-card:hover {
        transform: translateY(-5px);
    }
    

    .project-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 40%);
        z-index: 1;
    }
    

    .card-content {
        position: relative;
        z-index: 2;
        padding: 30px;
        width: 100%;
    }
    
    .card-content h3 {
        color: #fff;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 0 5px 0;
    }
    
    .card-content span {
        color: #FFD233;
        font-size: 0.9rem;
        font-weight: 500;
        text-transform: uppercase;
    }
    
    .project-cta-button {
      display: inline-block;
      padding: 1rem 2rem;
      background-color: #ffd233; 
      color: #111827;
      font-weight: 700;
      text-decoration: none;
      font-size: 1rem;
      border-radius: 8px;
      transition: background-color 0.2s ease;
      border: 1px solid #ffd233;
      margin-top: 5rem;
    }
    
    .project-cta-button:hover {
      background-color: transparent;
      border: 1px solid #ffd233;
      color: #fff;
    }

  
  /*------------------------------------------------------------------end style----------------------------------------------------------------------------*/
  

/*------------------------------------------------------------------testimonial style----------------------------------------------------------------------------*/

    /* --- LAYOUT GRID --- */
    .testimonial_layout {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        gap: 50px;
        align-items: start;
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
    
    /* --- LEFT COLUMN STYLING --- */
    .left_column {
        display: flex;
        flex-direction: column;
        gap: 40px; 
    }
    
    .text_cards_stack {
        display: flex;
        flex-direction: column;
        gap: 20px; 
    }
    
    /* --- RIGHT COLUMN STYLING --- */
    .right_column {
        position: sticky; 
        top: 20px;
    }
    
    /* --- CARD STYLES (Keep these mostly the same) --- */
    .text-card {
        background-color: #ffffff;
        border-radius: 20px;
        padding: 10px 25px;
        color: #080F19;
        display: flex;
        gap: 30px;
    }
    
    .text-card .testi-header img{
        width: 95px;
        border-radius: 20px;
    }
    
    .text-card .testi-header{
        align-content: center;
    }
    
    .testimonial-title {
      font-size: 3rem; 
      font-weight: 700; 
      color: #FFFFFF;
      line-height: 1.2; 
      margin-bottom: 1.5rem;
      margin-top: 0;
    }
    
    .text-card .testi-name{
        margin-bottom: 0;
        color: #f0981d;
        font-size: 20px;
        font-weight: 700;
    }
    
    .text-card .testi-text{
        font-size: 16px;
        font-weight: 700;
        margin-top: 2px;
    }
    
    .video-card {
        width: 100%;
        aspect-ratio: 9 / 16; 
        background-color: #000;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        height: 600px; 
    }
    
    .video-card iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .testimonial-button {
      display: inline-block;
      padding: 1rem 2rem;
      background-color: #ffd233; 
      color: #111827;
      font-weight: 700;
      text-decoration: none;
      font-size: 1rem;
      border-radius: 8px;
      transition: background-color 0.2s ease;
      border: 1px solid #ffd233;
    }
    
    .testimonial-button:hover {
      background-color: transparent;
      border: 1px solid #ffd233;
      color: #fff;
    }

/*------------------------------------------------------------------end style----------------------------------------------------------------------------*/


/*------------------------------------------------------------------contact style----------------------------------------------------------------------------*/
    .live_portfolio_section {
        background-color: #080F19;
        padding: 100px 0;
        color: #ffffff;
        overflow: hidden;
    }

    .contact-pretitle {
      font-size: 0.875rem; 
      font-weight: 500; 
      color: #FFD233; 
      letter-spacing: 0.1em; 
    }
    
    .contact-title {
      font-size: 3rem; 
      font-weight: 700; 
      color: #FFFFFF;
      line-height: 1.2; 
      margin-bottom: 1.5rem;
      margin-top: 0;
    }
    
    .contact_description{
         font-size: 1.125rem; 
      color: #9CA3AF; 
      margin-bottom: 2rem; 
      line-height: 1.7;
    }
    
    .contact-buttons{
        display: flex;
        gap: 20px;
    }
    
    .contact-button {
      display: inline-block;
      padding: 1rem 2rem;
      background-color: #ffd233; 
      color: #111827;
      font-weight: 700;
      text-decoration: none;
      font-size: 1rem;
      border-radius: 8px;
      transition: background-color 0.2s ease;
      border: 1px solid #ffd233;
    }
    
    .contact-button:hover {
      background-color: transparent;
      border: 1px solid #ffd233;
      color: #fff;
    }
    
    .live_layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    .myLiveProjectSwiper {
        width: 100%;
        height: 500px;
        padding-bottom: 0; 
        background-color: transparent; 
        box-shadow: none;
        overflow: hidden;   
    }
    
    /* --- SLIDE DEFAULT STATE (The Side Slides) --- */
    .myLiveProjectSwiper .swiper-slide {
        transform: scale(0.85) !important; 
        opacity: 0.5;
        z-index: 1;
        transition: all 0.5s ease;
        overflow: visible; 
    }
    
    /* --- ACTIVE SLIDE STATE (The Center Slide) --- */
    .myLiveProjectSwiper .swiper-slide-active {
        transform: scale(1) !important; 
        opacity: 1;
        z-index: 10; 
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); 
    }
    
    .myLiveProjectSwiper .scrolling-image {
        width: 100%;
        height: 100%;
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: top center;
    }
    
    .myLiveProjectSwiper .swiper-slide-active .scrolling-image {
        animation: scroll-down-up 10s ease-in-out forwards;
        border-radius: 10px;
    }
    
    .myLiveProjectSwiper .hover-overlay {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        opacity: 0;
        transition: all 0.3s ease;
        color: #fff;
        font-weight: 700;
        text-transform: uppercase;
    }
    
    .myLiveProjectSwiper .swiper-slide:hover .hover-overlay {
        opacity: 1;
    }
    
    /* --- KEYFRAMES --- */
    @keyframes scroll-down-up {
        0% { background-position: 0% 0%; }
        40% { background-position: 0% 100%; }
        60% { background-position: 0% 100%; }
        100% { background-position: 0% 0%; }
    }


/*------------------------------------------------------------------end style----------------------------------------------------------------------------*/

/*------------------------------------------------------------------footer style----------------------------------------------------------------------------*/

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Very subtle line */
}

.footer_copyright{
    font-size: 16px;
}

.footer_bar_layout {
    display: flex;
    justify-content: space-between; /* Pushes content to edges */
    align-items: center;
    padding-top: 20px;
}

.footer_links {
    display: flex;
    gap: 30px;
}

.footer_links a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer_links a:hover {
    color: #ffffff; /* Light up on hover */
}

/*------------------------------------------------------------------end style----------------------------------------------------------------------------*/

@media (min-width: 1024px) {
    
  .work-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  
  .work-content-left{
      text-align: left;
  }
  
  .work-description {
      max-width: 42rem; 
    }
  
  .mobile-menu-button {
    display: none;
  }
  .desktop-resume-button {
    display: block;
  }
  
  .mobile-resume-button {
    display: none;
  }
  
  .vertical-work-slider {
      width: 100% !important;
      height: 600px !important; 
      overflow: hidden !important; 
    }

  #main-nav {
    display: flex;
    gap: 1.5rem;
    position: static; 
    height: auto;
    width: auto;
    background-color: transparent;
    flex-direction: row;
    opacity: 1;
    visibility: visible;
    padding-top: 0;
  }

  .header_ul {
    flex-direction: row;
    gap: 1.5rem;
    font-size: 1rem;
  }
}

/* Tablet Breakpoint */
@media (max-width: 992px) {
    .testimonial_layout {
            grid-template-columns: 1fr; /* Stack them on mobile */
        }
    .video-card {
        height: auto;
        aspect-ratio: 16 / 9; /* Switch to landscape on mobile for better fit */
    }
    
    .live_layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .live_intro {
        margin-bottom: 40px;
    }
    .live_intro p {
        margin: 0 auto 40px auto;
    }
    .myLiveProjectSwiper {
        height: 500px;
    }
    .contact-buttons{
        justify-content:center;
    }
}

@media (min-width: 769px) {
  .hero-section {
    padding-top: 5rem;
    padding-bottom: 5rem; 
  }
  
  .hero-buttons{
    flex-direction: row;
  }

  .hero-title {
    font-size: 4.5rem; 
  }
  .hero-floating-icons {
        display: block; /* Show on desktop */
    }

    .hero-icon {
        position: absolute;
        width: 50px; 
        height: 50px;
        opacity: 0.5;
        animation: floatAnimation 6s ease-in-out infinite;
        z-index: 0;
    }
    .hero-icon.icon-1 {
        top: 15%;
        left: 15%;
        animation-delay: 0s;
    }
    .hero-icon.icon-2 {
        top: 10%;
        right: 20%;
        animation-delay: -2s; 
    }
    .hero-icon.icon-3 {
        bottom: 40%;
        left: 25%;
        animation-delay: -4s;
    }
    .hero-icon.icon-4 {
        bottom: 40%;
        right: 10%;
        animation-delay: -1s;
    }
    .hero-icon.icon-5 {
        top: 40%;
        left: 5%;
        animation-delay: -3s;
    }
}

@media (max-width: 768px){
    
    .projects_section{
        padding-top: 4rem !important;
        padding-bottom:4rem !important;
    }
    
    .work-section {
        padding-top: 4rem !important;
        padding-bottom:4rem !important;
    }
    
    .testimonial_layout{
        padding-top: 4rem !important;
        padding-bottom:4rem !important;
    }
    
    .live_portfolio_section{
        padding-top: 4rem !important;
        padding-bottom:4rem !important;
    }
    
    .project_showcase {
        grid-template-columns: 1fr;
    }
    .w-50, .w-33 {
        grid-column: span 1;
    }
    
    
    .footer_bar_layout {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer_links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}
