
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f6f8;
    color: #333;
    line-height: 1.6;
    background-image: url('../Images/background.png'); /* Path to your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    
}

/* Styling for the header and navbar */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 2px 10px;
    background-color: #ffffff;
    color: white;
    box-shadow: 0 5px 10px 0 rgba(0,0,0,.2);
}

.header .logo {
    display: flex;
    align-items: center;
}

.header .logo h1 a {
    color: #0078d4; /* Keep the text color consistent */
    text-decoration: none; /* Remove underline */
    font-size: 28px; /* Adjust size for emphasis */
    font-weight: bold; /* Make it stand out */
    display: inline-block; /* Ensure it behaves as a block for styling */
    transition: color 0.3s ease-in-out; /* Smooth color transition on hover */
}

.header .logo h1 a:hover {
    color: #504f4c; /* Optional hover color to indicate interactivity */
}


.header .logo img {
    width: 100px;
    margin-right: 10px;
}

.header ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header ul li {
    margin-left: 20px;
}

/* Container for login buttons (My Tickets & Logout) */
.login-container {
    display: flex; /* Align buttons in a row */
    gap: 10px; /* Add space between buttons */
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%); /* Vertically center */
}


/* Updated styling for 'Login' and 'Sign Up' buttons */
.login-container a.btn.secondary1 {
    display: inline-block;
    background-color: #0078d4; /* Professional blue */
    color: #ffffff; /* White text */
    padding: 10px 20px; /* Better padding for appearance */
    border-radius: 25px; /* Rounded buttons */
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none; /* Remove underline */
    border: none; /* Clean look */
    transition: all 0.3s ease-in-out; /* Smooth transition */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.login-container a.btn.secondary1:hover {
    background-color: #005bb5; /* Darker shade for hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhance shadow */
    transform: scale(1.05); /* Slight zoom effect */
}


/* Active state for buttons (when clicked) */
.login-container a.btn.secondary1:active {
    background-color: #388E3C; /* Darker green for active state */
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow reduction */
    transform: scale(0.98); /* Slightly shrink to mimic button press */
}

/* Styling for 'My Tickets' and 'Logout' buttons */
.login-container a.btn.secondary {
    background-color: #f4f4f4;
    color: #00274d;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none; /* Remove underline */
    border: 1px solid #ccc;
    font-weight: bold;
}

.login-container a.btn.secondary:hover {
    background-color: #e0e0e0;
}

/* Additional styles for logout button */
.btn-logout {
    background-color: #e74c3c;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-logout:hover {
    background-color: #c0392b;
}

/* Nav links styling */
.nav-links1 {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links1 li {
    font-size: 18px;
}

.nav-links1 a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links1 a:hover {
    color: #f39c12;
}

/* Base button styles */
.nav-links .btn {
    background-color: #0078d4;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

/* Hover effect for buttons */
.nav-links .btn:hover {
    background-color: #005bb5;
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Active button (clicked state) */
.nav-links .btn.active {
    background-color: #00aaff; /* Light Blue color */
}

/* Transition and transform effects for links */
.nav-links a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effect for links */
.nav-links a:hover {
    color: #0078d4;
    transform: scale(1.1);
}


.breadcrumb-container {
    background-color: rgb(209, 227, 235);
    padding: 2px 10px; /* Adjust padding for a thin row */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow for separation */
    border-radius: 0px; /* Optional: Adds rounded corners */
    margin-bottom: 0; /* Space below the breadcrumb row */
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligns content to the left */
  }
  
  
  .breadcrumb {
    display: flex;
    align-items: center;
    font-size: 18px; /* Font size */
    font-weight: 600; /* Adjust this value for thickness */
    color: #666;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

  
  .breadcrumb-logo {
    display: flex;
    align-items: center;
    margin-right: 10px;
  }
  
  .breadcrumb-logo .logo {
    height: 40px; /* Adjust logo size */
    width: auto;
    margin-right: 10px;
    transition: transform 0.3s;
  }
  
  .breadcrumb-logo:hover .logo {
    transform: scale(1.1);
  }
  
  .breadcrumb-link {
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
  }
  
  .breadcrumb-link:hover {
    color: #007bff;
  }
  
  .breadcrumb-separator {
    margin: 0 8px;
    color: #bbb;
  }
  
  .breadcrumb-link.active {
    color: #000;
    font-weight: bold;
    pointer-events: none;
    cursor: default;
  }

  /* Profile Icon Styling */
.profile-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 15px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.profile-icon img:hover {
    transform: scale(1.1);
}






/* Hero Section */
.hero {
    background-color: #f4f4f4;
    padding: 50px 0;
    text-align: center;
    margin-top: 0;
}

.hero h2 {
    margin-bottom: 20px;
}

.hero form {
    display: inline-block;
}

.hero form input[type="text"] {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 5px;
}

.hero form button {
    padding: 10px 20px;
    background-color: #0078d4;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.hero form button:hover {
    background-color: #005bb5;
}

/* Ticket Section */
.ticket {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 0;
}

.ticket .container {
    max-width: 800px;
    width: 100%;
}

#raise-ticket h2 {
    color: #ffffff; /* Change this to your desired color */
    font-size: 24px; /* Optional: Adjust font size if needed */
    font-weight: bold; /* Optional: Add bold styling */
}

#raise-ticket p {
    color: #b7b7b7; /* Change this to your desired color */
    font-size: 16px; 
}

/* Adjust the "Raise a New Ticket" button positioning */
#raise-ticket .btn {
    background-color: #007bff;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #007bff;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 200px; /* Adjusted margin to move button down */
}

#raise-ticket .btn:hover {
    background-color: #ffffff;
    color: #007bff;
}

/* Cards Section */

.section {
    padding: 50px 0;
    
}

#knowledgebase h2{
    margin-left: 150px; 
    color: #cdcaca;
}

.cards {
    display: flex;
    justify-content: center; /* Center-align cards */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 400px; /* Limit card width */
    text-align: center;
    transition: transform 0.3s;
}

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

.card h3 {
    margin-bottom: 10px;
}

.card a {
    color: #0078d4;
    font-weight: bold;
    text-decoration: none;
}

.card a:hover {
    text-decoration: underline;
}





.login-container .btn {
    margin-right: 10px;
}

#feedback {
    background-color: #eef2f3;
    padding: 50px 0;
    text-align: center;
}
#feedback .btn {
    color: #090909;
    padding: 0.7em 1.7em;
    font-size: 18px;
    border-radius: 0.5em;
    background: #e8e8e8;
    cursor: pointer;
    text-decoration: none; /* Remove underline */
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}

#feedback .btn:active {
    color: #666;
    box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
  }

  /* Footer */
.footer {
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    background-color: #fff;
    color: black;
    font-weight: 600;
    width: 100%;
    margin-top: auto; /* Pushes the footer to the bottom */
}


