/* Universal Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #ffb703; /* Gold */
    --secondary-color: #0a192f; /* Navy Blue */
    --background-color: #0a192f;
    --text-color: #f1f1f1;
    --card-background: #112240;
    --hover-duration: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: var(--secondary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    transition: color var(--hover-duration) ease;
}

.nav-links a::after {
    content: '';
    width: 0;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: width var(--hover-duration) ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

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

.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Home Section */
.main-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.background-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.background-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    animation: zoomIn 15s infinite alternate;
}

.main-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    background: transparent;
    border-radius: 10px;
}

.main-heading {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: fadeInDown 1.5s ease-out;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.main-para {
    font-size: 1.2rem;
    color: #f1f1f1;
    margin-bottom: 30px;
    animation: fadeInUp 1.8s ease-out;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--background-color);
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 2s infinite;
}

.cta-button a {
    color: var(--background-color);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #ffc72c;
    box-shadow: 0 0 20px var(--primary-color);
}
.fa-desktop{
 font-size: 3rem;
 color: #ffc72c;
}

/* Other Sections */
.page-section {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-description {
    text-align: center;
    color: #aaa;
    font-style: italic;
    margin-bottom: 40px;
}

/* Animations on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    background-color: var(--secondary-color);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px var(--primary-color);
}

.about-text {
    flex: 1;
}

/* Services Section */
.services {
    background-color: var(--background-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--card-background);
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05) rotateX(5deg);
    box-shadow: 0 15px 40px rgba(255, 183, 3, 0.4);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Designs Section */
.designs {
    background-color: var(--secondary-color);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
}

.gallery-item-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item-container:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.3);
}

.gallery-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 25, 47, 0.85);
    color: var(--text-color);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item-container:hover .item-info {
    transform: translateY(0);
}

.item-number {
    font-weight: bold;
    color: var(--primary-color);
}

.purchase-link {
    background-color: var(--primary-color);
    color: var(--background-color);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.purchase-link:hover {
    background-color: #ffc72c;
}

/* Contact Section */
.contact {
    background-color: var(--background-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: start;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ccc;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-right: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #222;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}
#msg{
    color: greenyellow;
    display: block;
}

.submit-button {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-5px);
    background-color: #ffc72c;
}
.fa-desktop{
    font-size: 3rem;
    color: #ffc72c;

}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar { padding: 1rem; }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: var(--secondary-color);
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }
    .nav-links.active { display: flex; }
    .nav-links a { padding: 15px 20px; }
    .hamburger-menu { display: block; }
    .main-heading { font-size: 2.5rem; }
    .main-para { font-size: 1rem; }
    .about-flex { flex-direction: column; }
    .about-image { order: 2; }
    .about-text { order: 1; }
    .section-title { font-size: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
}