/*
Theme Name: Generate Guy Theme
Theme URI: https://generateguy.com/
Author: Rahul singh
Author URI: ''
Description: A custom WordPress theme.
Version: 1.0
*/

/* Main menu font */
/*@font-face {
    font-family: 'Brigends Expanded';
    src: url('/wp-content/themes/generateguy/fonts/BrigendsExpanded.eot');
    src: url('/wp-content/themes/generateguy/fonts/BrigendsExpanded.eot?#iefix') format('embedded-opentype'),
         url('/wp-content/themes/generateguy/fonts/BrigendsExpanded.woff2') format('woff2'),
         url('/wp-content/themes/generateguy/fonts/BrigendsExpanded.woff') format('woff'),
         url('/wp-content/themes/generateguy/fonts/BrigendsExpanded.ttf') format('truetype'),
         url('/wp-content/themes/generateguy/fonts/BrigendsExpanded-nReK1.otf') format('opentype'),
         url('/wp-content/themes/generateguy/fonts/BrigendsExpanded.svg#BrigendsExpanded') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
*/


  :where([class^="ri-"])::before { content: "\f3c2"; }
        /* Apply Brigends Expanded globally */
/*body {
    font-family: 'Brigends Expanded', sans-serif;
}*/

/* Or only headings */
/*h1, h2, h3, h4, h5, h6 {
    font-family: 'Brigends Expanded', sans-serif;
}*/

        .hero-animation .border-primary {
            border-color: #fff;
        }
        .hero-animation .bg-primary {
            background-color: #fff;
        }
        div#play-button {
            background-color: #fff !important;
        }
        .custom-cursor {
            width: 20px;
            height: 20px;
            border: 2px solid #0f172a;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            transform: translate(-50%, -50%);
            z-index: 9999;
            transition: width 0.2s, height 0.2s, background-color 0.2s;
            mix-blend-mode: difference;
        }
        .cursor-grow {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.2);
            mix-blend-mode: difference;
        }
        .masonry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            grid-auto-rows: 10px;
            grid-gap: 20px;
        }
        .masonry-item {
            grid-row-end: span var(--span);
        }
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        .service-card {
            transition: transform 0.3s ease;
        }
        .service-card:hover {
            transform: translateY(-10px);
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #0f172a;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }
        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            z-index: 10;
        }
        .dropdown-container:hover .dropdown {
            display: block;
        }
        .category-filter.active {
            background-color: #101400;
            color: white;
        }
        input, textarea {
            background: transparent;
            border: 1px solid #e2e8f0;
            outline: none;
        }
        input:focus, textarea:focus {
            border-color: #0f172a;
            box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.1);
        }
        .dark-mode {
            background-color: #0f172a;
            color: #f8fafc;
        }
        .dark-mode .nav-link::after {
            background-color: #f8fafc;
        }
        .dark-mode .dropdown {
            background-color: #1e293b;
        }
        .dark-mode input, .dark-mode textarea {
            border-color: #334155;
            color: #f8fafc;
        }
        .dark-mode input:focus, .dark-mode textarea:focus {
            border-color: #94a3b8;
            box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.1);
        }
        
        
        /* General Nav Link Styling */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0f172a; /* Tailwind's slate-900 */
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Styling */
.dropdown-container {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.dropdown-container:hover .dropdown {
    display: block;
}

/* Dropdown Links */
.dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    color: #1e293b; /* Tailwind's slate-800 */
    transition: background-color 0.2s ease;
}

.dropdown a:hover {
    background-color: #f1f5f9; /* Tailwind's slate-100 */
}

/* Responsive Menu */
@media (max-width: 768px) {
    .dropdown {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
    }

    .dropdown-container:hover .dropdown {
        display: block;
    }
}

/* Dark Mode (optional) */
body.dark-mode {
    background-color: #0f172a;
    color: #f8fafc;
}

body.dark-mode .nav-link::after {
    background-color: #f8fafc;
}

body.dark-mode .dropdown {
    background-color: #1e293b;
}

body.dark-mode .dropdown a {
    color: #f8fafc;
}

body.dark-mode .dropdown a:hover {
    background-color: #334155;
}
.portfolio-item img {
    max-height: 367px;
}

.client-logo-sec {
    display: flex;
    justify-content: center;
    gap: 20px;
}
/* Client Logo Section Styles */
.client-logo-area {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.client-logo-area .section-title-two .content {
  text-align: center;
  margin-bottom: 40px;
}

.client-logo-area .section-title-two .content span {
  font-size: 16px;
  font-weight: 600;
  color: #6c757d;
  display: block;
  margin-bottom: 10px;
}

.client-logo-area .section-title-two .content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.client-logo-area .section-title-two .content p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}



.client-logo-area .single-client {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-area .single-client img {
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-logo-area .single-client:hover img {
  filter: grayscale(0%);
}

.client-logo-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo-slider img {
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.client-logo-slider img:hover {
  transform: scale(1.1);
}


@media (max-width: 768px) {
  .client-logo-area .section-title-two .content h2 {
    font-size: 28px;
  }

  .client-logo-area .single-client {
    margin-bottom: 20px;
  }
}





