body {
    font-family: 'Inter','Arial', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Navigation Bar */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .navbar-brand img {
    height: 40px;
}

header .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
.nav-item>a:hover{
    color: hsl(204, 100%, 50%) !important;
}

.navbar-brand>span{
   color:hsl(204, 100%, 50%)!i;
    font-weight: bold;
}
h2{
    color:#4C4D52!important;
    font-weight: bold!important;
    font-size: 55px;
}

header .nav-link:hover {
    color: #007bff;
}

/* Hero Section */
.hero-section {
    
    background-size: cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero-section p {
    font-size: 20px;
}

.hero-section .btn-primary {
    background-color: hsl(204, 100%, 50%);
    border-color: hsl(204, 100%, 50%);
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
}

.hero-section .btn-primary:hover {
    background-color: hsl(204, 100%, 50%);
    border-color: hsl(204, 100%, 50%);
}

/* Learn More Section */
#learn-more {
    background-color: #f9f9f9;
    padding: 60px 0;
}

#learn-more h2 {
    font-size: 36px;
    color: #333;
    font-weight: 600;
}

#learn-more p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

#learn-more .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
}

#learn-more .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Features Section */
#features {
    background-color: #ffffff;
}

#features .row {
    margin-bottom: 40px;
}

#features img {
    max-width: 100%;
    border-radius: 8px;
}

#features h3 {
    font-size: 32px;
    font-weight: 600;
    color:#4C4D52!important;
}



#features p {
    font-size: 16px;
    color: #555;
}

/* Footer */
footer {
    background-color: #f1f1f1;
}

footer p {
    font-size: 16px;
    color: #777;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    color: #0056b3;
    text-decoration: underline;
}
/* Table Styles */
.table-container {
    overflow-x: auto;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
}

.table thead th {
    background-color: #f8f9fa;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    text-align: center;
}

.table tbody tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.table tbody tr:nth-of-type(even) {
    background-color: #ffffff;
}

.table tbody td {
    vertical-align: middle;
    text-align: center;
    border-top: 1px solid #dee2e6;
}

.table a.btn-outline-primary {
    border-color: #007bff;
    color: #007bff;
    padding: 4px 10px;
    font-size: 14px;
    font-weight: 500;
}

.table a.btn-outline-primary:hover {
    background-color: #007bff;
    color: #ffffff;
}

/* Adjustments for responsive tables */
.table-container {
    overflow-x: auto;
}

/*pricing*/
/* Pricing Section */
#pricing {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 30px;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.card-text {
    font-size: 16px;
    color: #555;
}

.card-price {
    font-size: 36px;
    font-weight: 700;
    color: #007bff;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-outline-primary {
    border-color: #007bff;
    color: #007bff;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: #ffffff;
}

.pricing-plan {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    background-color: #ffffff;
}

.pricing-plan h4 {
    font-size: 20px;
    font-weight: 600;
    color: #007bff;
}

.pricing-plan p {
    font-size: 18px;
    color: #333;
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

/*tutorials*/

/* Container for tutorials section */
#tutorials {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 3rem 0; /* Additional padding for spacing */
}

/* Title styles */
#tutorials h2 {
    font-size: 2.5rem;
    color: #333; /* Darker text for readability */
    margin-bottom: 2rem;
}

/* Tutorial card styles */
.tutorial {
    background-color: #fff; /* White background for tutorial cards */
    border-radius: 0.5rem; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 1.5rem; /* Padding inside the card */
    transition: box-shadow 0.3s ease; /* Smooth shadow transition */
}

.tutorial:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* Video wrapper styles */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 0.5rem; /* Rounded corners for the video */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive video handling */
@media (max-width: 768px) {
    .video-wrapper {
        padding-bottom: 75%; /* Adjust for smaller screens */
    }
}

/* Heading styles inside tutorials */
.tutorial h4 {
    font-size: 1.25rem;
    color: #007bff; /* Primary blue color for headings */
    margin-bottom: 1rem;
}

/* Ensure proper spacing and layout */
.row > .col-md-6 {
    margin-bottom: 1.5rem;
}
/* Full height section for login */
#login {
    background-color: #f4f4f4; /* Light background color */
    padding: 2rem;
}

/* Card styling */
.card {
    border-radius: 0.5rem; /* Rounded corners */
    border: none; /* Remove default border */
}

.card-title {
    font-size: 1.5rem;
    color: #007bff; /* Primary blue color */
}

.card-body {
    padding: 2rem; /* Add padding inside the card */
}

/* Form control styles */
.form-control {
    border-radius: 0.5rem; /* Rounded corners for input fields */
    border: 1px solid #ddd; /* Light border */
}

/* Button styles */
.btn-primary {
    background-color: #007bff; /* Primary blue color */
    border-color: #007bff; /* Match border color with button */
}

.btn-primary:hover {
    background-color: #0056b3; /* Darker blue on hover */
    border-color: #004085; /* Darker border on hover */
}

/* Forgotten password link */
.text-muted {
    text-decoration: none; /* Remove underline */
}

.text-muted:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Full height section for signup */
#signup {
    background-color: #f4f4f4; /* Light background color */
    padding: 2rem;
}

/* Card styling */
.card {
    border-radius: 0.5rem; /* Rounded corners */
    border: none; /* Remove default border */
}

.card-title {
    font-size: 1.5rem;
    color: #007bff; /* Primary blue color */
}

.card-body {
    padding: 2rem; /* Add padding inside the card */
}

/* Form control styles */
.form-control,
.form-select {
    border-radius: 0.5rem; /* Rounded corners for input fields */
    border: 1px solid #ddd; /* Light border */
}

/* Button styles */
.btn-primary {
    background-color: #007bff; /* Primary blue color */
    border-color: #007bff; /* Match border color with button */
}

.btn-primary:hover {
    background-color: #0056b3; /* Darker blue on hover */
    border-color: #004085; /* Darker border on hover */
}

/* Link styling */
.text-muted {
    text-decoration: none; /* Remove underline */
}

.text-muted:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Form text for additional guidance */
.form-text {
    font-size: 0.875rem;
    color: #6c757d; /* Muted text color */
}
