/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: white;
}

/* Header & Navigation */
header {
    background-color: white !important; /* White background */
    padding: 15px 50px!important;
    display: flex!important;
    justify-content: space-between!important;
    align-items: center!important;
    border-bottom: 2px solid #ddd!important; /* Light gray border for separation */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1)!important; /* Soft shadow for better visibility */
}

.logo img {
    width: 150px!important; /* Adjust logo size */
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.2))!important; /* Subtle shadow for better contrast */
}
.slogan {
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif; /* A modern, professional font */
    color: black!important;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: fadeIn 1.5s ease-in-out;
}

/* Adding a subtle fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex!important;
}

nav ul li {
    margin: 0 15px!important;
}

nav ul li a {
    text-decoration: none!important;
    font-size: 18px!important;
    font-weight: bold!important;
    color: black!important; /* Change text color to black */
    transition: color 0.3s ease-in-out!important;
}

nav ul li a:hover {
    color: #dfc320!important; /* Gold hover effect */
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 100px;
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    min-height: 80vh;
}

.hero-text {
    max-width: 50%;
    animation: fadeIn 1s ease-in-out;
}

.hero-text h1 {
    font-size: 50px;
    color: #FFD700;
    margin-bottom: 20px;
}

.hero-text h2 {
    font-size: 36px; /* Increase font size */
    color: #FFD700; /* Gold color */
    margin-bottom: 10px;
    text-transform: uppercase; /* Uppercase text */
    letter-spacing: 2px; /* Increase letter spacing */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow */
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-image img {
    width: 450px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(255, 215, 0, 0.4);
    animation: slideIn 1s ease-in-out;
    transition: transform 0.3s ease-in-out;
}
.hero-image img:hover {
    transform: scale(1.05);
}

/* Company Name Styling */
.company-name {
    font-size: 48px; 
    color: white!important;
    margin-bottom: 20px;
    text-transform: uppercase; 
    letter-spacing: 2px; 
    text-shadow: 2px 2px 2px rgba(181, 171, 171, 0.6)!important; /* Stronger text shadow */
    font-weight: bold; /* Bold text */
    animation: fadeIn 1.5s ease-in-out; /* Slightly longer animation */
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Services styling 

/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: white;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    padding: 15px 50px;
}

.logo img {
    width: 80px;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover, .active {
    color: #FFD700;
}

/* Services Section */
.services {
    padding: 50px;
    text-align: center;
}

.services h1 {
    font-size: 40px;
    color: #FFD700;
    margin-bottom: 30px;
}

/* Service Cards */
.service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #222;
    padding: 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 215, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.7s ease-in-out forwards;
}

/* Alternate Service Cards */
.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-text {
    max-width: 50%;
    padding: 20px;
}

.service-text h2 {
    font-size: 24px;
    color: #FFD700;
}

.service-text p {
    font-size: 16px;
    opacity: 0.9;
}

.service-image img {
    width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 215, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}

.service-image img:hover {
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/*About US styling
/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: white;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    padding: 15px 50px;
}
.header {
    border: none !important;
    outline: none !important;
}
.logo img {
    width: 80px;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover, .active {
    color: #FFD700;
}

/* About Section */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    text-align: center;
}

.container {
    max-width: 800px;
    margin-top: 15px;
    padding: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(255, 215, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.7s ease-in-out forwards;
}

.container h1 {
    font-size: 40px;
    color: #FFD700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.container p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 15px;
}

.container ul {
    list-style: none;
    padding: 0;
}

.container ul li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #FFD700;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Contact Section */
/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: white;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    padding: 15px 50px;
}

.logo img {
    width: 80px;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover, .active {
    color: #FFD700;
}

/* Contact Section */
.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    text-align: center;
}

.container {
    max-width: 900px;
    padding: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(255, 215, 0, 0.3);
    animation: fadeInUp 0.7s ease-in-out forwards;
}

h1 {
    font-size: 36px;
    color: #FFD700;
    margin-bottom: 15px;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Contact Content */
.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.contact-form {
    flex: 1;
}

.contact-info {
    flex: 1;
    text-align: left;
    padding-left: 20px;
}

.contact-info h2 {
    color: #FFD700;
}

.contact-info p {
    font-size: 16px;
    margin: 10px 0;
}

.contact-info i {
    color: #FFD700;
    margin-right: 10px;
}

/* Contact Form Inputs */
.input-box {
    margin-bottom: 15px;
}

.input-box input, .input-box textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.input-box textarea {
    height: 100px;
    resize: none;
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #FFD700;
    color: black;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background: white;
    color: black;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 📌 Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .header {
        border: none !important;
        outline: none !important;
    }
    /* ✅ Make the Header & Navbar Mobile-Friendly */
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px 20px;
    }

    .logo img {
        width: 70px; /* Make logo smaller */
    }

    .slogan {
        font-size: 9px;
        margin-top: 10px;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 16px;
    }
    nav ul li a :hover {
        color: #dfc320!important;
    }
    /* ✅ Adjust Hero Section for Mobile */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image img {
        width: 90%;
        max-width: 300px;
    }

    /* ✅ Services Page Responsive */
    .service-card {
        flex-direction: column !important; /* Stack service cards */
        text-align: center;
        padding: 15px;
    }

    .service-text {
        max-width: 100%;
        padding: 10px;
    }

    .service-image img {
        width: 80%;
        max-width: 250px;
    }

    /* ✅ About Page Centering */
    .about {
        padding: 30px 15px;
    }

    .container {
        max-width: 100%;
        padding: 20px;
    }

    /* ✅ Contact Page Form & Info */
    .contact-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-form, .contact-info {
        width: 100%;
        padding: 0;
    }

    iframe {
        width: 100%;
    }

    /* 📌 Improved Footer Styling */
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center; /* Center align items */
    }

    .footer-logo, .footer-links, .footer-contact, .footer-social {
        margin-bottom: 15px;
        width: 100%; /* Ensure full width */
        text-align: center; /* Center text */
    }

    .footer-social a {
        font-size: 24px;
    }
}
/* 📌 Improved Footer Styling */
.footer {
    background-color: white; /* Change background to white */
    color: black; /* Change text color to black */
    padding: 40px 20px;
    text-align: center;
    border-top: 3px solid #FFD700; /* Add a gold accent line */
    box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: auto;
    text-align: left;
    gap: 20px;
}

/* Footer Sections */
.footer-logo img {
    width: 140px;
}

.footer-logo p {
    font-size: 14px;
    font-weight: bold;
    color: black;
    margin-top: 5px;
}

/* Footer Links */
.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 8px 0;
}

.footer-links ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: #FFD700;
}

/* Contact Info */
.footer-contact p {
    font-size: 16px;
    margin-bottom: 8px;
}

.footer-contact i {
    color: #FFD700;
    margin-right: 10px;
}

/* Social Media Links */
.footer-social a {
    color: black;
    font-size: 22px;
    margin: 0 8px;
    transition: color 0.3s ease-in-out;
}

.footer-social a:hover {
    color: #FFD700;
}

/* Footer Bottom */
.footer-bottom {
    font-size: 14px;
    margin-top: 30px;
    opacity: 0.8;
}

/* 📌 Mobile Responsive Footer */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo, .footer-links, .footer-contact, .footer-social {
        margin-bottom: 15px;
    }

    .footer-social a {
        font-size: 24px;
    }
}
