/* 
   Utils Forge CSS
   Colors from logo:
   - #15d5fa (bright blue)
   - #37e7b1 (mint green)
   - #12bef0 (medium blue)
*/

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #15d5fa;
    --secondary: #37e7b1;
    --tertiary: #12bef0;
    --dark: #333333;
    --light: #f5f5f5;
    --white: #ffffff;
    --gray: #777777;
    --light-gray: #eeeeee;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #15d5fa, #37e7b1);
    --gradient-secondary: linear-gradient(135deg, #12bef0, #37e7b1);
    --border-radius: 8px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--tertiary);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 0.5rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--tertiary);
    border: 2px solid var(--tertiary);
}

.btn-outline:hover {
    background: var(--tertiary);
    color: var(--white);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    display: block;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
    position: relative;
}

.nav-link {
    color: var(--dark);
    font-weight: 600;
    padding: 8px 0;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    padding: 10px 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--dark);
    transition: var(--transition);
}

.dropdown-content a:hover {
    background-color: var(--light-gray);
    color: var(--tertiary);
}

/*.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}


.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  flex-direction: column;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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


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

  .mobile-nav .nav-item {
    margin: 10px 0;
  }

  .mobile-nav .nav-link {
    font-size: 1.2rem;
    color: #333;
    text-decoration: none;
  }
}
  */


/* Sticky header */
.header {
  position: sticky;
  top: 0;
  z-index: 1001;
  background: white;
}

/* Mobile styles */
.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav {
  display: none; 
}
.mobile-nav-overlay {
  display: none;
}

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

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1002;
    padding: 1.5rem 1rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
  }

  .mobile-nav.active {
    right: 0;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }

  .mobile-menu-title {
    font-size: 1.3rem;
    font-weight: bold;
  }

  .mobile-menu-close {
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
  }

  .mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-nav-overlay.active {
    display: block;
    opacity: 1;
  }

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

  .mobile-nav .nav-item {
    margin: 1rem 0;
  }

  .mobile-nav .nav-link {
    text-decoration: none;
    font-size: 1.1rem;
    color: #333;
  }

  body.menu-open {
    overflow: hidden;
  }
}





/* ===== BREADCRUMB SECTION ===== */

.breadcrumbs {
  font-size: 0.95rem;
  color: var(--gray);
  margin: 20px 0;
}
.breadcrumbs a {
  color: var(--tertiary);
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--secondary);
}



/* ===== Search Results Page ===== 

.search-results-list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.search-results-list li {
  margin: 10px 0;
  font-size: 1.1rem;
}

.search-results-list li a {
  color: var(--primary);
  text-decoration: none;
}

.search-results-list li a:hover {
  text-decoration: underline;
}
*/

/* ===== SEARCH SECTION ===== */

.search-input-wrapper {
  position: relative;
}

.search-input-wrapper input {
  width: 100%;
  padding: 18px 50px 18px 25px; /* extra right padding for icon */
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  outline: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #00bcd4;
  font-size: 1.2rem;
  pointer-events: none;
}


.search-autocomplete {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

#live-search-input {
  width: 100%;
  padding: 18px 25px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  outline: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.live-search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 10px;
  margin-top: 5px;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  z-index: 1000;
  padding: 0;
  list-style: none;
}

/*.live-search-dropdown li {
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}

.live-search-dropdown li:last-child {
  border-bottom: none;
}

.live-search-dropdown li a {
  text-decoration: none;
  color: #333;
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
}

.tool-category {
  font-size: 0.9rem;
  color: #888;
}*/

.live-search-dropdown li {
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
  transition: background 0.2s ease;
}

.live-search-dropdown li:hover {
  background-color: #f5f5f5;
  border-radius: 8px;
  /*padding: 8px 12px;
  margin: 4px 0;*/
}

.live-search-dropdown li a {
  text-decoration: none;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.live-search-dropdown li a .tool-category {
  font-size: 0.9rem;
  color: #888;
}





/* ===== HERO SECTION ===== */
.hero {
    background: var(--gradient-primary);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
	min-height: 700px;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto 2rem;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.search-box input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    outline: none;
    font-size: 1.1rem;
}

.search-box button {
    background: var(--gradient-secondary);
    border: none;
    padding: 0 30px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 1rem;
    opacity: 0.8;
}

.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
	
}

/* ===== CATEGORIES SECTION ===== 
.categories {
    padding: 80px 0;
    background-color: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.category-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--tertiary);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.category-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.category-card p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.category-link {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.category-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.category-link:hover i {
    transform: translateX(5px);
}*/


/* Popular Categories Section */
        .categories-section {
            padding: 6rem 2rem;
            background: #f8fafc;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #15d5fa, #37e7b1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .categories-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .category-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(21, 213, 250, 0.1), rgba(55, 231, 177, 0.1));
            transition: left 0.5s ease;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .category-card:hover::before {
            left: 0;
        }

        .category-icon {
            font-size: 3rem;
            background: linear-gradient(45deg, #15d5fa, #37e7b1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .category-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
            position: relative;
            z-index: 2;
        }

        .category-card p {
            color: #666;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        .category-count {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(45deg, #15d5fa, #37e7b1);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }


.view-all-container {
    text-align: center;
    margin-top: 20px;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    /*background-color: var(--light);*/
	margin-bottom: 80px;
    background: linear-gradient(135deg, rgba(21, 213, 250, 0.05), rgba(55, 231, 177, 0.05));
}

/*.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}*/

.about-text {
    flex: 1;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    text-align: left;
}

.features {
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* ===== POPULAR TOOLS SECTION ===== 
.popular-tools {
    padding: 80px 0;
    background-color: var(--white);
}

.tools-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;*/
    /*scrollbar-width: none;  Firefox */
    /*-ms-overflow-style: none;  IE and Edge */
}

.tools-slider::-webkit-scrollbar {
    /*display: none;  Chrome, Safari, Opera */
}

/*
.tool-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-width: 280px;
    flex: 1;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--tertiary);
    transition: var(--transition);
}

.tool-card:hover .tool-icon {
    background: var(--gradient-secondary);
    color: var(--white);
}

.tool-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.tool-card p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.tool-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.tool-rating {
    color: #ffc107;
}

.tool-uses {
    color: var(--gray);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.slider-prev,
.slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--tertiary);
    color: var(--white);
    border-color: var(--tertiary);
}

.slider-dots {
    display: flex;
    gap: 8px;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--tertiary);
    transform: scale(1.2);
}
*/





/* Popular Tools Section */
        .tools-section {
            padding: 0rem 2rem 5rem;
            background: white;			
        }

        .tools-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 4 Tools in One Row*/
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .tool-card {
            background: linear-gradient(135deg, rgba(21, 213, 250, 0.05), rgba(55, 231, 177, 0.05));
            border: 1px solid rgba(21, 213, 250, 0.1);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .tool-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            background: linear-gradient(135deg, rgba(21, 213, 250, 0.1), rgba(55, 231, 177, 0.1));
        }

        .tool-card i {
            font-size: 2rem;
            background: linear-gradient(45deg, #15d5fa, #37e7b1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }

        .tool-card h4 {
            color: #333;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .tool-card p {
            color: #666;
            font-size: 0.9rem;
        }
		
		

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    padding: 60px 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    margin-bottom: 10px;
}

.newsletter p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius);
    outline: none;
    font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
}

.footer-logo p {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--white);
    opacity: 0.7;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content {
        /*flex-direction: column;*/
    }

    .about-visual{

        order: -1;
        margin-bottom: 30px;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        box-shadow: var(--shadow);
        transition: var(--transition);
        z-index: 1000;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
    }
    
    .nav-item {
        margin: 0 0 15px;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 20px;
        margin-top: 10px;
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 130px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .search-box {
        flex-direction: column;
        border-radius: var(--border-radius);
    }
    
    .search-box input {
        width: 100%;
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }
    
    .search-box button {
        width: 100%;
        padding: 15px;
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }
}

.cat_header{
    margin-top: 40px;
    margin-bottom: 40px;
    padding-bottom: 50px;
    border-bottom: 2px solid #15d5fa;    
    /*padding: 80px 0;*/
    padding: 20px 0;
}

.cat_header h1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
	font-size: 2rem;
    color: #333333;    
    background: linear-gradient(45deg, #15d5fa, #37e7b1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cat_header p{
    font-size: 1.1rem;
    line-height: 2rem;
    margin-bottom: 30px;
}

.tool-grid{
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}


.tool-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  /*margin-top: 30px;*/
}

.tool-item {
  /*background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.2s ease;*/
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.tool-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 1.05rem;
  /*color: #333;*/
  text-decoration: none;
  width: 100%;
  border-radius: 12px;
}

.tool-item:hover {
  /*background-color: #f0f8ff;*/
  transform: translateY(-2px);
}

.tool-icon {
  font-size: 1.25rem;
  /*color: #007bff;*/
  margin-left: auto;
}


.toolPage_header{
    margin-top: 40px;
    margin-bottom: 40px;
    padding-bottom: 50px;
    /*border-bottom: 2px solid #15d5fa;    
    padding: 80px 0 30px 0;*/
    padding: 20px 0 30px 0;
}

.toolPage_header h1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
	font-size: 2rem;
    color: #333333;    
    background: linear-gradient(45deg, #15d5fa, #37e7b1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.toolPage_header p{
    font-size: 1.2rem;
}

/* ===== Related Tools SECTION ===== */

.related-tools {
  margin-top: 40px;
  /*padding-top: 50px;
  border-top: 2px solid #15d5fa;*/
  margin-bottom: 87px;
}
.related-tools h2 {
  font-size: 1.6rem;
   /*color: #333333;    
    background: linear-gradient(45deg, #15d5fa, #37e7b1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;*/
    border-bottom: 2px solid #15d5fa;
    padding-bottom: 20px;
  margin-bottom: 10px;
  
}
.related-tools ul {
  padding-left: 20px;
  color: var(--tertiary);
  margin-top: 20px;
  /*list-style: none;*/
}
.related-tools li {
 /* margin-bottom: 10px;*/
  margin-top: 10px;
}
.related-tools ul li a {
    color: var(--tertiary);
    opacity: 0.7;
    transition: var(--transition);
    text-decoration: underline;
}

.related-tools ul li a:hover {
    opacity: 1;
    color: var(--secondary);
    text-decoration: none;
}

.author-bio {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 40px 0;
}

.author-photo {
  height: 250px;
  width: 250px;
  border-radius: 150px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.author-text {
  flex: 1;
  text-align: left; /* 💥 Force left alignment */
}

@media screen and (max-width: 768px) {
  .author-bio {
    flex-direction: column;
    align-items: center;
    text-align: left; 
  }

  .author-photo {
    width: 180px;
    height: 180px;
    border-radius: 90px;
  }
  .author-text {
    width: 100%;
    text-align: left; /* 💥 force left alignment */
  }
}

.tool-grid h2 {
  font-size: 1.6rem;
   /*color: #333333;    
    background: linear-gradient(45deg, #15d5fa, #37e7b1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;*/
    border-bottom: 2px solid #15d5fa;
    padding-bottom: 20px;
  margin-bottom: 10px;
  
}

.about_header{
    margin-top: 40px;    
    padding: 20px 0;
    box-sizing: border-box;
}

/* Ensure global container fallback padding works */
.container {
  padding: 0 clamp(16px, 5vw, 40px); /* responsive horizontal padding */
}

.about_header h1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
	font-size: 2rem;
    color: #333333;    
    background: linear-gradient(45deg, #15d5fa, #37e7b1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about_header p{
    font-size: 1.1rem;
    line-height: 2rem;
    margin-bottom: 30px;
}


 .about-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .visual-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            transform: rotate(12deg);
        }

        .visual-card {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #15d5fa, #37e7b1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            animation: pulse 2s ease-in-out infinite alternate;
        }

        @keyframes pulse {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }


        .about-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, rgba(21, 213, 250, 0.05), rgba(55, 231, 177, 0.05));
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #15d5fa, #37e7b1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /*.about-content p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }*/

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

        .feature-item {
            display: flex;
            align-items: center;
            padding: 1rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .feature-item i {
            font-size: 1.5rem;
            background: linear-gradient(45deg, #15d5fa, #37e7b1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-right: 1rem;
        }
 @media (max-width: 768px) {

    .about-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .about-features {
                grid-template-columns: 1fr;
            }
 }

 @media (max-width: 480px) {
           
            .about-section {
                padding: 4rem 1rem;
            }
        }