      :root {
                --primary-color: #1397C2;
                --secondary-color: #F5F7FA;
                --accent-color: #FF9900;
                --text-color: #333333;
                
                 --font-heading: 'Poppins', sans-serif;
              --font-subheading: 'Inter', sans-serif;
              --font-body: 'Noto Sans', sans-serif;
            }
        input[type="text"]:focus,
        input[type="radio"]:focus,
        input[type="password"]:focus,
        input[type="checkbox"]:focus,
        textarea:focus {
        	outline: none;
        	box-shadow: none;
        	border: none;
        	background: inherit;
        }

        .text-primary{color:var(--primary-color) !important;}
        html {
			height: 100%;
			margin: 0;
			display: flex;
			flex-direction: column;
		}
        body {
          font-family: var(--font-body);
         font-size: 16px;
          color: var(--text-color);
          line-height: 1.7;
          	height: 100%;
			margin: 0;
          	display: flex;
			flex-direction: column;
        }
        #quick-tool-main-body{flex:1;}
         body.not_home_body{background:#f8f9fa;}
    
        h1, h2, h3,.h1,.h2,.h3 {
          font-family: var(--font-heading);
          font-weight: 700;
        }
    
        h4, h5, h6,.h1,.h2,.h3 {
         font-family: var(--font-subheading);
         font-weight: 600;
        }
        
        /*color classes*/
        .primary_bg_color{background:var(--primary-color) !important;}
        
        .btn_bg_black{background:#000 !important;color: #fff !important;};
        .btn_bg_theme{background:var(--primary-color) !important;color: #fff !important;}
        /*.section tilte */
        .section-heading {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 2.5rem;
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
             color: var(--primary-color);
        }

        .section-heading::after {
            content: "";
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
            margin: 12px auto 0 auto;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .section-heading:hover::after {
            width: 90px;
        }
        
        .icon-flash {
            font-size: 1.8rem;
            color: var(--accent-color);
            vertical-align: middle;
        }


        /* Hero section */
     

        .hero-section {
            /*background: linear-gradient(135deg, rgba(19,151,194,0.8), rgba(245,247,250,0.9)), url('https://images.unsplash.com/photo-1522075469751-3a6694fb2f61?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;*/
            
            background: linear-gradient(135deg, rgba(19, 151, 194, 0.8), rgba(110, 198, 255, 0.8), rgba(245, 247, 250, 0.9));
            height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            position: relative;
            max-height: 720px;
        }

        .hero-section h1 {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out forwards;
        }

        .hero-section p.lead {
            font-size: 1.5rem;
            color: #f0f0f0;
            margin-bottom: 25px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1.2s ease-out forwards;
        }

        .hero-section .cta-btn {
            font-size: 1.2rem;
            padding: 14px 32px;
            background-color: var(--accent-color);
            color: #fff;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            animation: fadeInUp 1.4s ease-out forwards;
        }

        .hero-section .cta-btn:hover {
            background-color: #e88800;
            color: #fff;
            text-decoration: none;
        }

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

        /* Custom Navbar */
        .navbar-custom {
            background-color: #fff;
            border-bottom: 1px solid #e0e0e0;
        }

        .navbar-custom .navbar-brand {
            color: var(--primary-color);
            font-weight: bold;
            font-size: 20px;
        }

        .navbar-custom .nav-link {
            color: var(--text-color);
            font-weight: 500;
            position: relative;
        }

      

    /* Dropdown setup */
.dropdown-menu {
    display: block;            /* Always block to allow animation */
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.3s ease, background-color 0.4s ease;
    padding: 0 0;
    background-color: #f9f9f9; /* your background color */
    border-radius: 0 0 6px 6px;
    border:none;
}

/* Shown dropdown */
.dropdown-menu.show {
    max-height: 500px;         /* adjust if needed */
    padding: 10px 0;
}

/* Dropdown item styles */
.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: #333;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
}

    

/* Slide animation */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

        .dropdown-menu a {
            padding: 10px 20px;
            display: block;
            color: var(--text-color);
            text-decoration: none;
        }

        .dropdown-menu a:hover {
            background-color: var(--secondary-color);
        }

        /* Hamburger animation */
        .navbar-toggler {
            border: none;
            background: none;
        }

        .navbar-toggler .navbar-toggler-icon {
            background-image: none;
            width: 24px;
            height: 2px;
            background-color: var(--primary-color);
            display: block;
            position: relative;
            transition: all 0.3s ease-in-out;
        }

        .navbar-toggler .navbar-toggler-icon::before,
        .navbar-toggler .navbar-toggler-icon::after {
            content: '';
            width: 24px;
            height: 2px;
            background-color: var(--primary-color);
            position: absolute;
            transition: all 0.3s ease-in-out;
        }

        .navbar-toggler .navbar-toggler-icon::before {
            top: -8px;
        }

        .navbar-toggler .navbar-toggler-icon::after {
            top: 8px;
        }

        .navbar-toggler.collapsed .navbar-toggler-icon {
            background-color: transparent;
            background-image: none;
        }

        .navbar-toggler.collapsed .navbar-toggler-icon::before {
            transform: rotate(45deg);
            top: 0;
        }

        .navbar-toggler.collapsed .navbar-toggler-icon::after {
            transform: rotate(-45deg);
            top: 0;
        }
        /*navigation end*/

        .tool-card {
            background-color: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            transition: all 0.2s ease;
            height: 100%;
        }

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

        .tool-icon {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }


        .how-it-works-section {
            background: #f9fbfc;
        }
        
        .how-step-card {
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .how-step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }
        
        .circle-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(19, 151, 194, 0.9), rgba(110, 198, 255, 0.9));
            color: #fff;
            font-size: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }
        
        .how-step-card:hover .circle-icon {
            background: linear-gradient(135deg, rgba(110, 198, 255, 0.9), rgba(19, 151, 194, 0.9));
        }
        
        
        .seo-section {
            background: linear-gradient(135deg, rgba(19, 151, 194, 0.9), rgba(110, 198, 255, 0.9));
        }
        
        .seo-box {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            max-width: 900px;
        }
        
        .seo-icon {
            font-size: 2.5rem;
            color: #ffe066;
        }
        
        
        /*tools section*/
        ._tl_tabs .nav-link {
			font-weight: 600;
			font-size: 0.95rem;
			color: #555;
		}

		._tl_tabs .nav-link.active {
			color: #1397C2;
			border-color: #1397C2 #1397C2 transparent;
		}

		._tl_grid {
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	    	gap: 80px 20px; /* vertical gap = 40px, horizontal = 20px */
			margin-top: 70px;
			
		}
		._tl_grid a{color:#000;text-decoration:none;}
        
		._tl_card {
			position: relative;
			background: #fff;
			padding: 60px 15px 20px;
			text-align: center;
			border-radius: 10px;
			box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
			transition: transform 0.2s ease;
		}

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

		._tl_icon_wrapper {
			position: absolute;
			top: -32px;
			left: 50%;
			transform: translateX(-50%);
			background: #fff;
			width: 60px;
			height: 60px;
			border-radius: 12px;
			box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
			display: flex;
			align-items: center;
			justify-content: center;
		}

		._tl_icon {
			font-size: 2rem;
		}

		/* Custom Icon Colors */
		._tl_icon--diamond { color: #03a9f4; }
		._tl_icon--rocket { color: #00bcd4; }
		._tl_icon--flask { color: #00c853; }
		._tl_icon--zen { color: #3f51b5; }
		._tl_icon--code { color: #8e24aa; }
		._tl_icon--graph { color: #2196f3; }
		._tl_icon--lightbulb { color: #fcb900; }

		._tl_title {
			margin-top: 15px;
			font-weight: 600;
			font-size: 1rem;
			color: #333;
		}

		._tl_status {
			font-size: 0.75rem;
			margin-top: 6px;
			color: #444;
			font-weight: 600;
			background: #f2f2f2;
			padding: 3px 10px;
			border-radius: 4px;
			display: inline-block;
			text-transform: uppercase;
			letter-spacing: 0.5px;
		}
        
        /*end tools section*/






        footer {
            background-color: #fff;
            padding: 20px;
            text-align: center;
            font-size: 14px;
            color: #777;
            margin-top: 40px;
            border-top: 1px solid #e0e0e0;
        }
    
    
    
/*Common tool page  title and short desctipng*/

._page_common_title {
			text-align: center;
			font-size: 2rem;
			font-weight: 600;
			color: var(--primary-color);
			margin-bottom: 0.5rem;
		}
		._page_common_description {
			text-align: center;
			color: #6c757d;
			margin-bottom: 2rem;
			font-size: 1.1rem;
		}


/*SEction common style*/
 ._section_main_heading {
        color: var(--primary-color);
        margin-bottom: 20px;
        font-weight: 600;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    ._section_sub_heading {
        color: var(--accent-color);
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 500;
    }
    

    ._section_ul_list {
        list-style: disc;
        margin-left: 20px;
        padding-left: 0;
    }

    ._section_ul_list li {
        margin-bottom: 8px;
    }

    