/* General Styles */
body {
    background-color: #fff;
    color: #000;
    font-family: 'Arial', sans-serif;
    padding: 0;
    margin: 0;
}

/* Navbar Styles */
.header {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 1000;
}
.logo-btn {
    background: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50px;
    color: #000;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}
.logo-btn img {
    display: none;
    width: 40px;
    height: auto;
}
.menu-btn {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: #bd1923;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu {
    position: fixed;
    top: 50%;
    right: -250px;
    transform: translateY(-50%);
    background: #fff;
    color: #000;
    width: 220px;
    padding: 15px;
    border-radius: 10px;
    transition: right 0.3s ease-in-out;
    z-index: 999;
}
.menu a {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 10px 0;
    font-size: 16px;
}
.menu.show {
    right: 20px;
}
.close-btn {
    display: block;
    text-align: right;
    color: #000;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
}
.contact-info {
    padding: 10px;
    font-size: 14px;
    border-top: 1px solid #000;
    margin-top: 10px;
}
.social-icons {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}
.social-icons a {
    color: #000;
    font-size: 18px;
    text-decoration: none;
}
@media (max-width: 600px) {
    .header {
        left: 10px;
    }
    .menu-btn {
        right: 10px;
    }
    .menu {
        width: 200px;
        right: -220px;
    }
    .menu.show {
        right: 10px;
    }
}

/* Top-Center Logo Styling */
.top-logo {
    position: absolute;
    top: 20px; /* Adjust spacing from the top */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    text-align: center;
    padding: 10px 20px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.top-logo img {
    width: 120px; /* Adjust the logo size */
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-logo {
        top: 10px; /* Reduce space on smaller screens */
        padding: 5px 15px;
    }

    .top-logo img {
        width: 90px; /* Reduce logo size for mobile */
    }
}


/* Home Section */
#home {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    position: relative;
    background: url('../img/home-banner.jpg') center/cover no-repeat;
    color: white;
    overflow: hidden;
}

/* Dark Overlay Effect */
.home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* Home Content */
.home-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    animation: fadeIn 1.5s ease-in-out;
}

/* Home Text */
.home-text h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    animation: slideDown 1.5s ease-in-out;
}

.home-text p {
    font-size: 20px;
    color: #ddd;
    margin-bottom: 30px;
    line-height: 1.6;
    animation: fadeIn 2s ease-in-out;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #bd1923;
    color: white;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
    animation: bounceIn 2.5s ease-in-out;
}

.cta-button:hover {
    background-color: #bd1923;
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .home-text h1 {
        font-size: 36px;
    }
    .home-text p {
        font-size: 18px;
    }
    .cta-button {
        font-size: 18px;
        padding: 12px 25px;
    }
}

@media (max-width: 768px) {
    .home-text h1 {
        font-size: 32px;
    }
    .home-text p {
        font-size: 16px;
    }
    .cta-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* About Section */
#about {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    background: #fff;
    color: white;
    overflow: hidden;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* Dark Overlay Effect */
.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* About Content */
.about-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    animation: fadeIn 1.5s ease-in-out;
    color: #000;
}

/* About Text */
.about-container h2 {
    font-size: 50px;
    font-weight: bold;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.highlighted-text {
    color: #bd1923;
}

/* Subtitle */
.about-container p {
    font-size: 20px;
    color: #000;
    margin-top: 20px;
    line-height: 1.6;
    font-weight: 500;
    animation: fadeIn 2s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-container h2 {
        font-size: 40px;
    }
    .about-container p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .about-container h2 {
        font-size: 32px;
    }
    .about-container p {
        font-size: 16px;
    }
}



/* Services Section */
#services, #services-page{
    background: #fff;
    text-align: center;
    padding: 50px 50px;
}

#services h2 {
    font-size: 50px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #000;
}


#services-page h2 {
    font-size: 50px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #000;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}


.service-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-box i {
    font-size: 50px;
    color: #bd1923;
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 22px;
    color: #000;
    margin-bottom: 10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.service-box p {
    font-size: 16px;
    color: #000;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.service-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(132, 18, 18, 0.2);
}

.cta-button {
    padding: 10px 10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

}
/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: repeat(1, 1fr); /* 1 column for smaller screens */
    }
}
/*Case studies*/
/* Carousel Section */
#carousel-section {
    text-align: center;
    padding: 50px 50px;
    background: #ffffff;
    color: #000;
    position: relative;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.section-title::after {
    display: block;
    width: 500px; /* Adjust width */
    height: 3px; /* Adjust thickness */
    background: #ff9800; /* Change color */
    margin: 5px auto; /* Adjust spacing */
}

/* Carousel Container */
.carousel-container {
    width: 100%;
    max-width: 1000px;
    max-height: fit-content;
    margin: auto;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Carousel Wrapper */
.carousel-wrapper {
    display: flex;
    background: #ff9800;
    transition: transform 0.5s ease-in-out;
}

/* Carousel Item */
.carousel-item {
    min-width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

/* Carousel Text */
.carousel-text {
    text-align: center;
    padding: 15px;
}

.carousel-text i {
    font-size: 1.8rem;
    color: #bd1923;
    margin-bottom: 5px;
}

.carousel-text span {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
}

.carousel-text p {
    font-size: 1rem;
    color: #fff;
    margin-top: 5px;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(228, 13, 13, 0.8);
    color: white;
    border: none;
    padding: 12px 18px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease-in-out;
}

#prevBtn {
    left: 15px;
}

#nextBtn {
    right: 15px;
}

.carousel-btn:hover {
    background: #bd1923;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .carousel-item img {
        height: 200px;
    }

    .carousel-btn {
        font-size: 18px;
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .carousel-text span {
        font-size: 1.2rem;
    }

    .carousel-text p {
        font-size: 0.9rem;
    }

    .carousel-btn {
        font-size: 16px;
        padding: 8px 12px;
    }
}


/* Blog Section */
#blog-section {
    text-align: center;
    padding: 50px 20px;
    background: #f5f5f5;
}

.section-title1 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #000;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* Blog Carousel Container */
.blog-carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}

/* Blog Carousel Wrapper */
.blog-carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

/* Blog Slide */
.blog-slide {
    min-width: 320px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.blog-slide:hover {
    transform: scale(1.05);
}

.blog-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog-content {
    padding: 15px;
    text-align: left;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 1rem;
    color: #555;
}

.blog-content a {
    color: #bd1923;
    font-weight: bold;
    text-decoration: none;
}

.blog-content a:hover {
    text-decoration: underline;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .blog-carousel-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .blog-slide {
        min-width: 45%;
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .section-title1 {
        font-size: 1.8rem;
    }

    .blog-slide {
        min-width: 100%;
        max-width: 100%;
    }

}

@media (max-width: 480px) {
    .section-title1 {
        font-size: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }

    .blog-content p {
        font-size: 0.9rem;
    }

    
}

/* Founder Section */
#founder {
    background-color: #fff; /* Black background */
    color: #000;
    padding: 50px 0;
    text-align: center;
}

.glow-text {
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

/* Founder Profile */
.founder-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Founder Image - Circular */
.founder-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #bd1923;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
}

/* Founder Name */
.founder-name {
    font-size: 26px;
    font-weight: bold;
    margin: 10px 0 5px;
}

/* Founder Position */
.founder-position {
    font-size: 20px;
    font-weight: lighter;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .founder-img {
        width: 120px;
        height: 120px;
    }

    .founder-name {
        font-size: 20px;
    }

    .founder-position {
        font-size: 16px;
    }
}



/* Hero Section */
.hero {
    background: linear-gradient(to center, #000, #000);
    color: #000;
    padding: 20px 10px;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    animation: fadeIn 1.5s ease-in-out;
}

.hero p {
    font-size: 1.2rem;
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}  

/* Contact Section */
/* Contact Section */
#contact {
    background-color: #000; /* Black background */
    color: #fff; /* White text for contrast */
    padding: 50px 0;
}

#contact .row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Left Column - Contact Details */
#contact .col-md-5 {
    flex: 1; /* Fixed width */
    max-width: 30%; /* Adjust width */
    padding: 20px;
}

/* Right Column - Expanded Contact Form */
#contact .col-md-7 {
    flex: 2; /* Expanded width */
    max-width: 50%;
    padding: 20px;
}

.glow-text {
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5);
}

/* Social Icons */
.social-icons1 a {
    color: #fff;
    font-size: 24px;
    margin-right: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons1 a:hover {
    color: #bd1923;
    transform: scale(1.1);
}

/* Contact Form */
#contactForm {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.stylish-input {
    background: #fff;
    border: none;
    color: #000;
    padding: 10px;
    border-radius: 5px;
    border-color: #000;
    width: 100%;
    margin-bottom: 15px;
}

.stylish-input::placeholder {
    color: #333;
}

.stylish-btn {
    background-color: #bd1923;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.stylish-btn:hover {
    background-color: #e67e22;
}

/* Responsive Design */
@media (max-width: 992px) {
    #contact .col-md-5 {
        max-width: 40%; /* Adjust for tablets */
    }
    #contact .col-md-7 {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    #contact .row {
        flex-direction: column;
    }
    
    .col-md-5, .col-md-7 {
        max-width: 100%;
        text-align: center;
    }

    .stylish-input {
        width: 100%;
    }
}


/* Google Map */
.map {
    padding: 40px 0;
    text-align: center;
}

.map h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.map-frame {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: 0;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-frame {
        height: 300px;
    }
}

/* Footer */
footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 20px;
}



/* Responsive Styles */
@media (max-width: 1024px) {
    nav {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    nav ul li {
        margin: 10px 0;
    }

    #home {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 50px 20px;
    }
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-image img {
        max-width: 100%;
    }
    .services-container {
        grid-template-columns: 1fr;
    }
} 


/* Career Container Styling */
#career-container {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 50px auto;
}

/* Headings */
#career-container h3 {
    color: #555;
    font-size: 30px;
    margin-bottom: 5px;
}

#career-container h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

/* File Label Styling */
.file-label {
    display: block;
    background: #fff;
    padding: 12px;
    border: 2px dashed #bd1923;
    border-radius: 8px;
    font-size: 16px;
    color: #bd1923;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.file-label:hover {
    background: #bd1923;
    color: #fff;
}

.file-label input {
    display: none;
}

/* Upload Button - Differentiated Styling */
#uploadForm button {
    background: #28a745;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    width: 100%;
    margin-top: 15px;
}

#uploadForm button:hover {
    background: #218838;
}

/* Response Message */
#responseMessage {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 600px) {
    #career-container {
        padding: 30px 15px;
    }

    .file-label {
        font-size: 14px;
        padding: 10px;
    }

    #uploadForm button {
        font-size: 14px;
        padding: 10px;
    }
}

