:root {
    --primary-color: #ffaa17;
    --text-color: #74727a;
    --heading-color: #222429;
    --bg-dark: #1f1f25;
    --bg-light: #f4f5f8;
    --white: #ffffff;
    --border-color: #ececec;
    --font-heading: 'Rubik', sans-serif;
    --font-body: 'Rubik', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    margin-bottom: 0;
    color: var(--heading-color);
}

.logo h1 span {
    color: var(--primary-color);
}

.main-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-menu ul li a {
    font-weight: 500;
    color: var(--heading-color);
    font-size: 16px;
    position: relative;
}

.main-menu ul li a:hover {
    color: var(--primary-color);
}

.header-btn .btn {
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 500;
    font-size: 15px;
}

.header-btn .btn:hover {
    background: var(--heading-color);
}

/* Hero Section */
.banner-section {
    padding: 180px 0 120px;
    background: url(https://pixydrops.com/linoorhtml/images/main-slider/1.jpg) no-repeat center center; /* Placeholder or use a similar gradient */
    background-size: cover;
    position: relative;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9); /* Overlay to make text readable */
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.banner-content h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-content h2 {
    font-size: 60px;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--text-color);
}

.theme-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

.theme-btn:hover {
    background: var(--heading-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.sec-title {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.sec-title h2 {
    font-size: 40px;
}

.sec-title h4 {
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-block {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-10px);
}

.feature-block .icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.feature-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Call to Action */
.cta-section {
    padding: 100px 0;
    background: var(--heading-color);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 30px;
}

/* Footer */
.main-footer {
    background: #101014;
    color: #ababab;
    padding: 80px 0 30px;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.main-footer .copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    margin-top: 50px;
}
