
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #383838 0%, #2a2a2a 50%, #383838 100%);
    min-height: 100vh;

    -webkit-user-select: none; 
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(115, 123, 106, 0.3);
}

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

.nav-logo .logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #737b6a;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #737b6a, #383838);
    transition: width 0.5s ease;
}

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

.nav-social-links {
    display: flex; 
    gap: 1.2rem; 
    align-items: center; 
}

.nav-social-links img {
    height: 24px;
    transition: transform 0.3s ease;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #737b6a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 120px 20px 100px 100px;
    background: radial-gradient(ellipse at center, rgba(115, 123, 106, 0.1) 0%, transparent 70%);

    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/bg2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.hero-content {
    align-items: center;
    justify-content: flex-end;
    margin-left: 670px;
    max-width: 1300px;
    text-align: left;
}

.profile-image {
    margin-bottom: 2rem;
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #737b6a;
    box-shadow: 0 0 30px rgba(115, 123, 106, 0.3);
    transition: transform 0.3s ease;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    color: #becdac;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4); 
}

.hero-subtitle {
    font-size: 0.9rem;
    color: #becdac;
    margin-bottom: 1rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #becdac, #515151);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(115, 123, 106, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(115, 123, 106, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #becdac;
    border: 2px solid #becdac;
}

.btn-secondary:hover {
    background: #737b6a;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    padding: -120px 0 10px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #becdac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 120px 0 100px;
    background: rgba(115, 123, 106, 0.005 );

    background-image: linear-gradient(rgba(56, 56, 56, 0.9), rgba(56, 56, 56, .9)), url('assets/aboutBG.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid #737b6a83;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-highlights {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}

.highlight {
    padding: 1.5rem;
    background: rgba(115, 123, 106, 0.1);
    border-radius: 15px;
    border-left: 4px solid #737b6a;
}

.highlight h4 {
    color: #737b6a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight p {
    color: #c0c0c0;
    margin: 0;
}


/* --- Products & Services styles --- */
.products-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
   margin-bottom: 4rem;
}

/* Islands */
.product-card,
.service-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    background-color: #383838;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 1.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Button alignment */
.product-info,
.service-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-info h3,
.product-info p,
.product-info .product-price,
.service-info h3,
.service-info p {
    flex-grow: 1;
}

.product-info button,
.service-info button {
    margin-top: auto;
}

/* Images */
.product-image img,
.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.products {
    padding: 100px 0;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(115, 123, 106, 0.2);
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #737b6a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-info p {
    color: #c0c0c0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Subsection Titles */
.subsection-title {
    font-family: 'Poppins';
    font-size: 2.5rem;
     font-weight: 300;

    margin-top: 4rem;

    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}


/* Services Section */
.services {
    padding: 100px 0;
    background: rgba(115, 123, 106, 0.05);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(115, 123, 106, 0.2);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #737b6a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #c0c0c0;
    margin-bottom: 2rem;
    line-height: 1.6;
}


/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(115, 123, 106, 0.1), rgba(56, 56, 56, 0.1));
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #737b6a;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid rgba(115, 123, 106, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #c0c0c0;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #737b6a;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    color: #737b6a;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #e0e0e0;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: 2px solid rgba(115, 123, 106, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #c0c0c0;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #737b6a;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(115, 123, 106, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-family: 'Dancing Script', cursive;
    color: #737b6a;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #c0c0c0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #737b6a;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #737b6a;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(115, 123, 106, 0.2);
    color: #c0c0c0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }

    .nav-social-links {
    display: flex; 
    gap: 0.2rem; 
    align-items: center; 
}

.hero {

      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url('assets/bg\ mobile.jpg');
}
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

     .hero {
        text-align: center; 
        justify-content: center; 
        padding: 100px 20px; 


    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    }

    .hero-content {
        max-width: 100%; 
        margin: 0; 
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .nav-social-links img {
    height: 18px;
}

.nav-logo .logo-img {
    height: 30px;
    width: auto;
}

.nav-social-links {
    gap: 0.5rem;
    align-items: right;
}


     .cta-buttons {
        flex-direction: column; 
        align-items: center; 
        gap: 1rem;
    }

    .btn {
        width: 80%; 
    }

    
    .profile-img {
        width: 150px;
        height: 150px;
    }
    
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.hero-content,
.about-content,
.product-card,
.service-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #383838;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #737b6a, #383838);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #737b6a, #383838);
}

#copy-warning {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #383838;
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#copy-warning.visible {
    opacity: 1;
    visibility: visible;
}

