/*
Theme Name: TURBO SPEED THEME
Descriptin: This is our first and new theme 
author: farhan ahmad
author uri: www.farhan ahmad.com
version: 1.6
*/

get_header();
?>
   
<?php
    get_footer();
?>

/* Document
   ==========================================================================
*/
:root {
    --primary: #1f2642;
    --accent: #fe6e0e;
}
/* Small Header */
.small-header {
    background-color: var(--accent) !important;
    padding: 8px 5px !important;
    border-radius: 5px 5px 0 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 88% !important;
    max-width: 1200px !important;
}

/* Navigation */
.small-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.small-nav li {
    display: inline-block;
    margin-right: 15px;
}

.small-nav li:last-child {
    margin-right: 0;
}

.small-nav li a {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    line-height: 1;
    font-weight: 500;
}

/* Social Icons */
.social-icons {
    text-align: right;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 10px;
}

.social-icons li {
    display: inline-block;
    margin-right: 15px;
}

.social-icons i {
    font-size: 20px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.social-icons a:hover i {
    color: #007bff;
}

/* Action Buttons */
.action-buttons {
    text-align: right;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 10px;
    margin-top: 10px;
}

.action-buttons li {
    display: inline-block;
    margin-right: 15px;
}

.action-buttons i {
    font-size: 34px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.action-buttons a:hover i {
    color: #007bff;
}

/* Sticky Header */
.main-header {
    background-color: var(--primary); /* Background color */
    padding: 8px 0;
    border-radius: 5px 5px 5px 5px;
	margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 1200px !important;
    position: sticky; /* Sticky positioning */
    top: 0; /* Stick to the top */
    z-index: 1000; /* Ensure it's above other content */
}
/* Sticky class for main-header */
/* Sticky class for main-header */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0; /* Ensure full screen from both sides */
    width: 100%;
    z-index: 999;
    background-color: var(--primary);
    padding: 0; /* All padding removed */
    margin: 0; /* Remove any margin */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

/* Sticky header ke andar container ki width handle karain */
.sticky .container {
    width: 100%; /* Full width */
    max-width: 100%; /* Full width for responsiveness */
    padding: 0; /* Remove container's padding */
    margin: 0; /* Remove container's margin */
}


/* Branding */
.site-branding {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.site-branding a {
    text-decoration: none;
    color: #ccc;
}

.site-branding a:hover {
    color: var(--accent);
}

/* Menu Toggle */
.mega-menu-toggle i {
    font-size: 24px;
    margin-right: 20px;
    cursor: pointer;
}

/* Logo */
.site-branding img {
    max-width: 150px;
    height: auto;
}

/* Search Bar */
.search-col {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

/* Search Form */
.header-search-form {
    display: flex;
    align-items: center;
    border-radius: 5px;
    padding: 5px;
}

/* Input */
.header-search-form input[type="text"] {
    width: 200px;
    padding: 10px;
    border-radius: 5px 0 0 5px;
    outline: none;
}

/* Select Dropdown */
.header-search-form select {
    padding: 10px;
    border: 1px solid #ccc;
    border-left: none;
    border-radius: 0;
    background-color: #fff;
    outline: none;
}

/* Search Button */
.header-search-form button {
    padding: 10px 15px;
    background-color: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.header-search-form button:hover {
    background-color: #db7d11;
}