/* Basic Reset */

/* Colors: 
Yellow: #ebe76c
Orange: #f0b86e
Pink:   #ed7b7b
purple: #836096
*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Navigation Bar */
.navigation {
    background-color: #cccccc;
    padding: 15px 0;
    text-align: center;
}

.navigation ul {
    list-style-type: none;
}

.navigation ul li {
    display: inline;
    margin: 0 15px;
}

.navigation ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navigation ul li a:hover {
    color: #ed7b7b;
}

/* Hero Image Section 
.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    height: 60vh;
}

/* Specific Hero Images for Each Page 
.home-hero {
    background-image: url('home-hero2.jpg');
}
*/



/* Default Image for Desktop */
.home-hero {
    position: relative;
    background: url('home-hero2.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}


/* Image for Laptops (Screen width 1024px and above but below desktop size) */
@media (max-width: 1440px) {
    .home-hero {
        background: url('home_hero_laptop.jpg') no-repeat center center/cover;
    }
}

/* Image for Tablets (Screen width below 1024px) */
@media (max-width: 1024px) {
    .home-hero {
        background: url('home_hero_tablet.jpg') no-repeat center center/cover;
    }
}

/* Image for Mobile Devices (Screen width below 768px) */
@media (max-width: 768px) {
    .home-hero {
        background: url('home_hero_mobile.jpg') no-repeat center center/cover;
    }
}






/* Default Image for Desktop */
.ball {
    position: relative;
    background: url('products_desktop.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}


/* Image for Laptops (Screen width 1024px and above but below desktop size) */
@media (max-width: 1440px) {
    .ball {
        background: url('products_laptop.jpg') no-repeat center center/cover;
    }
}

/* Image for Tablets (Screen width below 1024px) */
@media (max-width: 1024px) {
    .ball {
        background: url('products_tablet.jpg') no-repeat center center/cover;
    }
}

/* Image for Mobile Devices (Screen width below 768px) */
@media (max-width: 768px) {
    .ball {
        background: url('products_mobile.jpg') no-repeat center center/cover;
    }
}

.honeypot-field {
    display: none;
}
















.projects-hero {
    background-image: url('images/projects-hero.jpg');
}

.about-hero {
    background-image: url('images/about-hero.jpg');
}

.rates-hero {
    background-image: url('images/rates-hero.jpg');
}

.contact-hero {
    background-image: url('images/contact-hero.jpg');
}

/* Responsive Hero Image Heights */
@media (min-width: 1200px) {
    .hero-image {
        height: 80vh;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .hero-image {
        height: 70vh;
    }
}

@media (max-width: 767px) {
    .hero-image {
        height: 50vh;
        background-position: top;
    }
}

@media (max-width: 480px) {
    .hero-image h1 {
        font-size: 1.5em;
    }
}

/* Hello Section */
.hello {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    padding: 20px;
    background-color: #dddddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hello h1 {
    color: #ed7b7b;
    font-size: 2em;
    margin-bottom: 15px;
}

.hello p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

/* Social Links Row */
.social-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    padding: 10px;
    flex-wrap: wrap;
}

.social-box {
    width: 180px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 10px;
    background-color: white;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-box img {
    width: 275px;
    height: 50px;
    margin-bottom: 15px;
}

.social-box p {
    margin-top: -10px;
    font-size: 0.9em;
    color: #333333; /* Charcoal gray */
    font-weight: bold;
}


/* Social Links Other than Index.html Page */
.social-links2 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    padding: 10px;
    flex-wrap: wrap;
}

.social-box3 {
    width: 180px;
    height: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 10px;
    background-color: white;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-box3 img {
    width: 275px;
    height: 50px;
    margin-bottom: 15px;
}

.social-box3 p {
    margin-top: 10px;
    font-size: 0.9em;
    color: #333333; /* Charcoal gray */
    font-weight: bold;
}









/* Contact Form Styles */
.contact-form {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #ffcc00;
}

/* Footer Styles */
.footer {
    background-color: #bbbbbb;
    color: white;
    padding: 15px 0;
    text-align: center;
    font-size: 1.2em;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}





/* Projects Section */
.projects {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.projects .row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.projects .col {
    width: 30%;
    padding: 10px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.projects .col img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.projects h4 {
    font-size: 1em;
    color: #333;
    margin-top: 10px;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .projects .row {
        flex-direction: column;
    }
    .projects .col {
        width: 100%;
        margin-bottom: 20px;
    }
}


/* About Details Section */
.aboutdetails {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.aboutdetails .row {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.aboutdetails .col.image {
    flex: 1;
    max-width: 200px;
    padding-right: 20px;
}

.aboutdetails .col.image img {
    width: 100%;
    border-radius: 8px;
}

.aboutdetails .col.text {
    flex: 2;
    background-color: #f0f0f0; /* Light gray background */
    padding: 20px;
    border-radius: 8px;
}

.aboutdetails .col.text p {
    margin: 0;
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .aboutdetails .row {
        flex-direction: column;
        text-align: center;
    }

    .aboutdetails .col.image,
    .aboutdetails .col.text {
        max-width: 100%;
        padding: 0;
    }

    .aboutdetails .col.text {
        margin-top: 20px;
    }
}

/* Pricing Section */
.pricing {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.pricing .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.pricing-card {
    background-color: #f9f9f9;
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h4 {
    font-size: 1.2em;
    color: #F0B86E; /* Accent color for titles */
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 1.5em;
    font-weight: bold;
    color: #666666;
    margin: 10px 0;
}

.pricing-card p {
    color: #333;
    font-size: 1em;
    margin: 5px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
    }
}

/* Contact Button */
.contact-button-container {
    text-align: center;
    margin: 20px 0;
}

.contact-button-container button {
    padding: 10px 20px;
    font-size: 1em;
    color: white;
    background-color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-button-container button:hover {
    background-color: #ed7b7b;
}

/* Contact Info */
#contact-info {
    font-size: 1em;
    color: #666;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



/* Default Image for Desktop */
.us {
    position: relative;
    background: url('about_desktop.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}


/* Image for Laptops (Screen width 1024px and above but below desktop size) */
@media (max-width: 1440px) {
    .us {
        background: url('about_laptop.jpg') no-repeat center center/cover;
    }
}

/* Image for Tablets (Screen width below 1024px) */
@media (max-width: 1024px) {
    .us {
        background: url('about_tablet.jpg') no-repeat center center/cover;
    }
}

/* Image for Mobile Devices (Screen width below 768px) */
@media (max-width: 768px) {
    .us {
        background: url('about_mobile.jpg') no-repeat center center/cover;
    }
}




/* Default Image for Desktop */
.oj {
    position: relative;
    background: url('rates_desktop.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}


/* Image for Laptops (Screen width 1024px and above but below desktop size) */
@media (max-width: 1440px) {
    .oj {
        background: url('rates_laptop.jpg') no-repeat center center/cover;
    }
}

/* Image for Tablets (Screen width below 1024px) */
@media (max-width: 1024px) {
    .oj {
        background: url('rates_tablet.jpg') no-repeat center center/cover;
    }
}

/* Image for Mobile Devices (Screen width below 768px) */
@media (max-width: 768px) {
    .oj {
        background: url('rates_mobile.jpg') no-repeat center center/cover;
    }
}



