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

:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --accent-color: #5c5c5c;
    --bg-dark: #000;
    --bg-light: #fff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--secondary-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-weight: 500;
}

.btn:hover {
    opacity: 0.9;
}

.btn.outline {
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

section {
    padding: 5rem 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    z-index: 1000;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 600;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-bottom: 4px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    height: 90vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 80%;
    animation: float 3s ease-in-out infinite;
}

.explore-btn {
    margin-top: 1rem;
}

.explore-btn span {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.explore-btn:hover span {
    margin-left: 0.8rem;
}

/* About Section */
.about .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 80%;
    animation: float 3s ease-in-out infinite alternate;
}

.about-content {
    flex: 1;
    max-width: 600px;
}

.about-content ul li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.tagline {
    font-style: italic;
    margin-top: 2rem;
    font-weight: 500;
}

/* Services Section */
.services .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.service-box:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.service-box img {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.service-link:hover::after {
    width: 100%;
}

/* Industries Section */
.industries h3 {
    margin-top: 2rem;
}

.industries ul {
    margin: 2rem 0;
}

.industries ul li {
    margin-bottom: 2rem;
}

.industries ul li strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.industries-image {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.industries-image img {
    max-width: 300px;
    animation: float 3s ease-in-out infinite alternate-reverse;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
}

.blog-card p {
    padding: 0 1.5rem;
}

.blog-link {
    display: inline-block;
    margin: 1rem 1.5rem 1.5rem;
    font-weight: 500;
    position: relative;
}

.blog-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.blog-link:hover::after {
    width: 100%;
}

/* Contact Section */
.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact input {
    padding: 1rem;
    border: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

.contact input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
    margin-top: 1rem;
    width: 100%;
}

/* Footer */
footer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem 0 1.5rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-links ul {
    display: flex;
}

.footer-links ul li {
    margin-left: 2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-info > div {
    flex: 1;
}

.policies {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.policies a {
    margin-bottom: 0.5rem;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    padding: 1.5rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: bottom 0.5s ease-in-out;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    min-width: 240px;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .hero .container, .about .container {
        flex-direction: column;
    }
    
    .hero-content, .about-content {
        max-width: 100%;
        text-align: center;
    }
    
    .about-content ul li {
        text-align: left;
    }
    
    .hero-image, .about-image {
        margin: 3rem 0;
    }
    
    .footer-info {
        flex-direction: column;
    }
    
    .footer-info > div {
        margin-bottom: 2rem;
    }
    
    .policies {
        align-items: flex-start;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 1rem 0;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .cookie-container {
        flex-direction: column;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-links {
        margin-top: 2rem;
    }
    
    .footer-links ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links ul li {
        margin: 0.5rem 1rem;
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .hero {
        height: auto;
        padding-top: 6rem;
        padding-bottom: 3rem;
    }
    
    .service-box, .blog-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .services .container, .blog-grid {
        grid-template-columns: 1fr;
    }
}




.thank-you {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.thank-you-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.return-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    min-width: 250px;
    transition: all 0.3s ease;
}

.return-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-media {
    padding: 2rem 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.thank-you-footer {
    background-color: transparent;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .thank-you-content h1 {
        font-size: 2.5rem;
    }
    
    .thank-you-content h2 {
        font-size: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-content h2 {
        font-size: 1.2rem;
    }
    
    .return-btn {
        min-width: 220px;
        padding: 0.8rem 1.5rem;
    }
    
    .social-icons {
        gap: 1.5rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
}

main{
    margin-top: 200px;
}