:root {
    --primary-blue: #0a1f3d;
    --secondary-blue: #1a3a6a;
    --accent-blue: #436eb4;
    --smoke-grey: #f5f5f5;
    --dark-grey: #333333;
    --light-grey: #e9e9e9;
    --white: #ffffff;
    --black: #000000;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
    transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn {
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.btn-outline-primary:hover {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white);
}

.highlight {
    color: #436eb4;
    /*color: var(--accent-blue);*/
}

/* Navigation */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: var(--primary-blue);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: var(--accent-blue);
}

.navbar-brand span {
    color: var(--accent-blue);
}

.nav-link {
    font-weight: 500;
    padding: 8px 15px;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 0;
    height: 2px;
    background-color: var(--accent-blue);
    transition: all 0.3s ease;
}

.nav-link:hover::before {
    width: calc(100% - 30px);
}

.nav-link.active::before {
    width: calc(100% - 30px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-image {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent-blue);
    color: var(--white);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.badge-content {
    text-align: center;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.hero-features {
    display: flex;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: var(--white);
    opacity: 0.9;
}

.feature-item i {
    margin-right: 8px;
    color: var(--accent-blue);
}

/* Clients Section */
.clients-section {
    padding: 50px 0;
    background-color: var(--white);
}

.client-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.client-logos img {
    height: 60px;
    margin: 15px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logos img:hover {
    opacity: 1;
}

/* Sections Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-blue);
}

.section-description {
    color: var(--dark-grey);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--smoke-grey);
}
.process-section {
    padding: 100px 0;
}

.feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 61, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
    text-align: center;
    color: var(--white);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: var(--white);
}

.pricing-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 0;
    height: 100%;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--accent-blue);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--accent-blue);
    color: var(--white);
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    transform-origin: center;
    width: 150px;
    text-align: center;
}

.pricing-header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0;
    color: var(--white);
}

.pricing-features {
    padding: 30px;
    list-style: none;
    margin-bottom:0!important;
}

.pricing-features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.pricing-features li i {
    color: var(--accent-blue);
    position: absolute;
    left: 0;
    top: 5px;
}

.pricing-card .btn {
    margin: 0 30px 30px;
    display: block;
    width: calc(100% - 60px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    /*background-color: var(--smoke-grey);*/
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.testimonial-item {
    min-width: 350px;
    scroll-snap-align: start;
}

.testimonial-content {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.rating {
    color: #ffc107;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--accent-blue);
}

.client-info h5 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.client-info span {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
}

.footer-about {
    opacity: 0.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-blue);
    transform: translateY(-3px);
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-blue);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-blue);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Page Hero (for About and Contact) */
.page-hero {
    padding: 180px 0 100px;
    background-color: var(--primary-blue);
    color: var(--white);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-image-container img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* About Page Styles */
.about-content {
    padding: 100px 0;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-section {
    padding: 80px 0;
    background-color: var(--smoke-grey);
}

.mission-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.team-section {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 5px;
}

.member-info p {
    color: var(--accent-blue);
    margin-bottom: 15px;
    font-weight: 500;
}

.member-info .social-links {
    justify-content: center;
}

.member-info .social-links a {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 0;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-method {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-form {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.25rem rgba(45, 90, 163, 0.25);
}

textarea.form-control {
    min-height: 150px;
}

.map-section {
    margin-bottom: -7px;
}

.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.faq-section {
    padding: 100px 0;
    background-color: var(--smoke-grey);
}

.accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-blue);
    color: var(--white);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 20px;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
}

.dark-mode-toggle:hover {
    background-color: var(--accent-blue);
    transform: scale(1.1);
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}

body.dark-mode .navbar {
    background-color: #1e1e1e !important;
}

body.dark-mode .feature-card,
body.dark-mode .pricing-card,
body.dark-mode .testimonial-content,
body.dark-mode .contact-form,
body.dark-mode .mission-card,
body.dark-mode .team-member,
body.dark-mode .accordion-item {
    background-color: #1e1e1e !important;
    color: #e0e0e0;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #ffffff;
}

body.dark-mode .form-control {
    background-color: #2d2d2d;
    border-color: #333;
    color: #e0e0e0;
}

body.dark-mode .footer {
    background-color: #1e1e1e;
}

body.dark-mode .footer-links a,
body.dark-mode .footer-legal a,
body.dark-mode .footer-about {
    color: #b0b0b0;
}

body.dark-mode .footer-links a:hover,
body.dark-mode .footer-legal a:hover {
    color: #ffffff;
}

body.dark-mode .accordion-button {
    background-color: #2d2d2d;
    color: #e0e0e0;
}

body.dark-mode .accordion-button:not(.collapsed) {
    background-color: var(--accent-blue);
    color: white;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 991.98px) {
    body > section.page-hero.team-hero > div {
        margin-top:100px
    }
}
@media (max-width: 991.98px) {
    .hide_mobile 
    {
        display:none !important;
    }
    .step-card {
        background: white !important;
        display: block;
        background: white;
        padding: 0;
        border-radius: 12px;
        /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);*/
        position: relative;
    }
    .process-step {
        padding:0 !important;
    }
    .device-mockup {
        display: none;
    }
    .step-number-badge {
        margin-top: 20px !important
    }
    .floating-badge {
        display: none;
    }

    .features-section > div > div.row > div:nth-child(2),
    .features-section > div > div.row > div:nth-child(3),
    #pricing > div > div.row > div:nth-child(2),
    #pricing > div > div.row > div:nth-child(3) {
        margin-top: 30px;
    }
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-collapse {
        background-color: var(--primary-blue);
        padding: 20px;
        margin-top: 15px;
        border-radius: 5px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section .row {
        flex-direction: column-reverse;
    }
    
    .contact-info {
        margin-top: 50px;
        text-align: center;
    }
    
    .contact-method {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .floating-badge {
        right: 0;
        bottom: -30px;
    }
    
    .client-logos img {
        height: 40px;
        margin: 10px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}
.hero-title {
    color:white;
}
/* Process Section - Modern */
.process-section {
    
    overflow: hidden;
}

.process-bg-shape-1,
.process-bg-shape-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(45, 90, 163, 0.03);
}

.process-bg-shape-1 {
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
}

.process-bg-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
}

.process-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.process-step {
    width: 20%;
    padding: 0 15px;
    position: relative;
    margin-bottom: 40px;
}

.step-connector {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, rgba(45, 90, 163, 0.2) 100%);
    top: 60px;
    left: -50%;
    right: 50%;
    z-index: 1;
}

.process-step:first-child .step-connector {
    display: none;
}

.step-card {
    position: relative;
    z-index: 2;
    height: 100%;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-top: -25px;
    flex-direction: column;
}

.step-number-badge {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-right: 10px;
}

.step-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.step-body {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-title {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-text {
    color: var(--dark-grey);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-requirement {
    display: inline-block;
    background: rgba(45, 90, 163, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    margin: 2px;
    font-size: 0.8rem;
}

.step-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-blue);
    border-radius: 50%;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}

/* CTA Card */
.process-cta-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.cta-icon {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-right: 20px;
}

.cta-content {
    flex: 1;
}

    .cta-content h4 {
        color: var(--primary-blue);
        margin-bottom: 5px;
    }

    .cta-content p {
        color: var(--dark-grey);
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

/* Responsive */
@media (max-width: 991.98px) {
    .process-step {
        width: 33.333%;
    }
}

@media (max-width: 767.98px) {
    .process-step {
        width: 50%;
    }

    .step-connector {
        display: none;
    }

    .process-cta-card {
        flex-direction: column;
        text-align: center;
    }

    .cta-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 575.98px) {
    .process-step {
        width: 100%;
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    /*background-color: var(--smoke-grey);*/
}

.website-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.website-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .website-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

/* Browser Mockup */
.browser-mockup {
    position: relative;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
    background: var(--light-grey);
}

.browser-header {
    height: 40px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid #ddd;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

    .browser-dots span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #ddd;
    }

        .browser-dots span:nth-child(1) {
            background: #ff5f56;
        }

        .browser-dots span:nth-child(2) {
            background: #ffbd2e;
        }

        .browser-dots span:nth-child(3) {
            background: #27c93f;
        }

.website-screenshot {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.website-card:hover .website-screenshot {
    transform: scale(1.02);
}

.website-info {
    padding: 20px;
    border-top: 1px solid var(--light-grey);
}

    .website-info h3 {
        margin-bottom: 8px;
        color: var(--primary-blue);
        font-size: 1.2rem;
    }

    .website-info p {
        color: var(--dark-grey);
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

.website-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .website-badges span {
        background: rgba(45, 90, 163, 0.1);
        color: var(--accent-blue);
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 0.7rem;
        font-weight: 500;
    }

/* Modal Styles */
#designModal .modal-content {
    background: var(--white);
}

#designModal .modal-body {
    padding:0 !important;
}
    #designModal .modal-body img {
        width: 100%;
        max-width: 100%;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        object-fit: contain;
    }

#designModal .modal-title {
    color: var(--primary-blue);
}

@media (max-width: 991.98px) {
    .website-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767.98px) {
    .website-showcase {
        grid-template-columns: 1fr;
    }

    #designModal .modal-body img {
        max-height: 50vh;
    }
}

.process-timeline {
    display: flex;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}
@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
    }
}

.portfolio-section {
    display:none;
}
.footer h5 {
    color:white;
}
.cta-content p {
    color:white;
}
body > footer > div > div.row > div:nth-child(1) > div > a > span {
    width: 100%;
    text-align: center;
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .team-member:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

.member-image {
    height: 350px;
    overflow: hidden;
}

    .member-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px;
    text-align: center;
}

    .member-info h3 {
        margin-bottom: 5px;
        font-size: 1.5rem;
    }

    .member-info p {
        color: var(--accent-blue);
        margin-bottom: 15px;
        font-weight: 500;
    }
.team-hero {
    height: 100vh
}
@media (max-width: 991.98px) {
    .slider-1 {
        background-position-x:left !important;
    }
}
@media (min-width: 991.98px) {

    .team-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* Only 3 columns */
        gap: 30px;
    }
}
.position-top {
    object-position: top;
}

.position-center {
    object-position: center;
}

/*
contact form*/
/* Loader Animation */


.loader {
    border: 4px solid var(--light-grey);
    border-top: 4px solid var(--secondary-blue); /* Matches the button color */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    /*margin: auto;*/
    display: none;
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}


.requiredField {
    border: solid 1px #ff0000;
}

.errorMessage {
    color: #ff0000 !important;
    display: block; /* Visible by default */

    height: 0;
    padding-bottom: 5px;
}

.errorSubmission {
    color: #ff0000 !important;
    display: block; /* Visible by default */

    height: 0;
    padding-bottom: 5px;
    display: none;
    text-align: left !important;
    float: left;
    /*margin-top: 7px;*/
}

/* Hide the error message when the input is valid */
.requiredField:valid ~ .errorMessage {
    /*display: none;*/
    text-align: left;
}

.text-center {
    text-align: center;
    margin: auto;
}

.successMessage {
    display: none;
    color: var(--primary-blue);
    font-size: 1.3em;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}