:root {
    --primary-color: #FFA500;
    --bs-warning: #FFA500;

}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 200;
}

/* Header and Navigation */
header {
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

header.hide {
    transform: translateY(-100%);
}

.orange-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.logo-text span {
    color: var(--primary-color);
    font-weight: 300;
}

.mobile-menu-button {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-button span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 200;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

/* Main Content */
main {
    padding-top: 70px;
}

/* Hero Section */
.hero {
    padding: 50px 8%;
    background: #fff;
}

.hero h1 {
    font-size: 42px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero span {
    color: #999;
}

.hero-image {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 4px;
}

/* Services Section */
.services {
    padding: 50px 8%;
}

.services h2 {
    font-weight: 300;
    margin-bottom: 30px;
    color: #333;
}

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

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}
.logo-img
{
    width: 190px;
}

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

.service-card h3 {
    margin: 15px 0;
    font-size: 18px;
    font-weight: 400;
}
h3 .h4 {
    font-weight: bold;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 200;
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more:hover {
    background: var(--primary-color);
    color: white;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
    position: relative;
}

.testimonials h2 {
    font-weight: 300;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
    position: relative;
    padding: 20px 8%;
}

.testimonials h2::before {
    content: '';
    margin-top: -50px;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    min-height: 300px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
}

.carousel-item {
    padding: 20px 60px;
    min-height: 210px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.testimonial-author {
    font-size: 14px;
    color: #666;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    opacity: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    color: var(--primary-color);
    font-size: 24px;
}

.carousel-control-prev-icon::before {
    content: "‹";
    color: var(--primary-color);
    font-size: 32px;
}

.carousel-control-next-icon::before {
    content: "›";
    color: var(--primary-color);
    font-size: 32px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffa500;
    border: none;
    margin: 0 6px;
    opacity: 1;
}

.carousel-indicators .active {
    background-color: #fff;
    border: 1px solid #ffa500;
}

/* Footer */
footer {
    padding: 50px 8%;
    background: white;
    display: grid;
}

.subscribe h3 {
    font-weight: 300;
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
}

.subscribe form {
    display: flex;
    max-width: 450px;
    position: relative;
}

.subscribe input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--primary-color);
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    background: white;
}

.subscribe input:focus {
    outline: none;
}

.subscribe button {
    padding: 12px 25px;
    background: white;
    border: 1px solid var(--primary-color);
    border-radius: 0 4px 4px 0;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe button:hover {
    background: var(--primary-color);
    color: white;
}

.error-message {
    color: #ff4444;
    font-size: 12px;
    margin-top: 5px;
    display: none;
    position: absolute;
    bottom: -20px;
}

.contact-info {
    text-align: right;
}

.contact-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

/* Mobile Menu Styles */
.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu-open nav {
    transform: translateX(0);
}

.mobile-menu-open .mobile-menu-button span:first-child {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-open .mobile-menu-button span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-open .mobile-menu-button span:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .carousel-control-prev { left: -40px; }
    .carousel-control-next { right: -40px; }
}

@media (max-width: 768px) {
    /* Header Mobile Styles */
    header {
        padding: 15px 20px;
    }

    .mobile-menu-button {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 250px;
        background: white;
        flex-direction: column;
        padding: 80px 20px 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    nav a {
        font-size: 16px;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    /* Other Mobile Styles */
    .services-grid {
        grid-template-columns: 1fr;
    }

    footer {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        text-align: left;
    }

    .subscribe form {
        flex-direction: column;
    }

    .subscribe input {
        border-right: 1px solid var(--primary-color);
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .subscribe button {
        border-radius: 4px;
        width: 100%;
    }

    .hero h1 {
        font-size: 32px;
    }

    .carousel-item {
        padding: 20px 30px;
    }
}

@media (max-width: 576px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .hero {
        padding: 30px 5%;
    }

    .services,
    footer {
        padding: 30px 5%;
    }

    .testimonials h2 {
        padding: 20px 5%;
    }
}

/* Tablet Specific Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        gap: 20px;
    }

    .carousel-control-prev { left: -30px; }
    .carousel-control-next { right: -30px; }
}

/* Print Styles */
@media print {
    header {
        position: static;
    }

    .mobile-menu-button,
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators {
        display: none;
    }
}
    



.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.read-more-btn {
    border-color: var(--bs-warning);
    color: var(--bs-warning);
    font-weight: 200;
}

.read-more-btn:hover {
    background-color: var(--bs-warning);
    border-color: var(--bs-warning);
    color: white;
}

@media (max-width: 992px) {
    .story-image {
        max-height: 400px;
    }
}

@media (min-width: 992px) {
    section {
        min-width: 100vh;
    }
}


/* About
*/

.about-section {
    background-color: #fff;
}

.about-text {
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.8;
}

.about-image {
    min-height: 600px;
}

@media (max-width: 992px) {
    .about-image {
        min-height: 400px;
    }
    
    h2.display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-image {
        min-height: 300px;
    }
    
    h2.display-4 {
        font-size: 2rem;
    }
}

.linkedin a {
    color: black;
}

nav > span.linkedin {
    margin-top: -3px;
}

.services h2::before {
    content: '';
    position: absolute;
    margin-top: -50px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
}