/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #1d4ed8;
    color: white;
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.3);
}

.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.5);
}

.btn-secondary {
    background-color: #ff6b00; /* Changed from transparent to orange */
    color: #ffffff; /* Changed from #4a6bff to white for better visibility */
    border: 2px solid #ff6b00; /* Changed border color to match background */
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #e05a00; /* Darker shade for hover state */
    transform: translateY(-3px);
    color: #ffffff; /* Ensuring text remains white on hover */
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px; /* Adds space between flex items */
}

.logo {
    margin-right: auto; /* Pushes other elements to the right */
}

.logo a {
    font-size: 1.5rem; /* Reduced from 1.8rem to accommodate longer text */
    font-weight: 700;
    color: #1d4ed8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-right: 40px;
}

.contact-info a {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
    white-space: nowrap;
}

.contact-info a i {
    margin-right: 5px;
    color: #1d4ed8;
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 110px; /* Position to the left of WhatsApp button */
    background-color: #007bff;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-float:hover {
    background-color: #0056b3;
    color: #FFF;
    transform: scale(1.1);
}
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
}

.nav-menu {
    display: flex;
    gap: 30px;
    margin-left: 15px; /* Added left margin to the navigation menu */
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    position: relative;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #1d4ed8;
    transition: width 0.3s ease;
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.cta-buttons {
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.cta-buttons .btn {
    margin: 0 10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
}

/* Introduction Section */
.intro {
    background-color: white;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.intro-text p {
    font-size: 1.1rem;
    color: #666;
}

.core-services {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(29, 78, 216, 0.1);
    border-radius: 50%;
}

.service-icon i {
    font-size: 2rem;
    color: #1d4ed8;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.learn-more {
    color: #1d4ed8;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}

.value-proposition {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-proposition h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.value-proposition ul {
    max-width: 700px;
    margin: 0 auto;
}

.value-proposition li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.value-proposition li i {
    color: #1d4ed8;
    margin-right: 15px;
    margin-top: 5px;
}

/* Portfolio Section */
.portfolio {
    background-color: #f4f4f9;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 300px;
}

.portfolio-img {
    height: 100%;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    margin-bottom: 10px;
}

.portfolio-info p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.view-project {
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid #1d4ed8;
    padding-bottom: 2px;
}

.portfolio-cta {
    text-align: center;
}

/* How We Work Section */
.how-we-work {
    background-color: white;
    padding: 100px 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 70px;
    left: 10%;
    width: 80%;
    height: 4px;
    background: linear-gradient(to right, #1d4ed8, #4f46e5);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #1d4ed8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    box-shadow: 0 5px 15px rgba(29, 78, 216, 0.3);
}

.step-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
}

.timeline-progress {
    height: 4px;
    background-color: #e0e0e0;
    width: 100%;
    margin: 50px 0;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, #1d4ed8, #4f46e5);
    transition: width 1.5s ease;
}

/* Lead Capture Form */
.lead-form-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.lead-form-toggle {
    background-color: #1d4ed8;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(29, 78, 216, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lead-form-toggle:hover {
    transform: scale(1.1);
}

.lead-form-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 30px;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.lead-form-popup.active {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.lead-form-header {
    text-align: center;
    margin-bottom: 20px;
}

.lead-form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #1d4ed8;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 35px;
}

.form-submit {
    width: 100%;
}

.error-message {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Call-to-Action Section */
.cta-section {
    background: linear-gradient(to right, #1d4ed8, #4f46e5);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons .btn {
    margin: 0 10px;
}

.btn-white {
    background-color: white;
    color: #1d4ed8;
}

.btn-white:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Social Proof Section */
.social-proof {
    background-color: #f4f4f9;
    padding: 100px 0;
}

.case-study {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.case-study-content {
    display: flex;
    flex-wrap: wrap;
}

.case-study-image {
    flex: 1;
    min-width: 300px;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-text {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.case-study-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1d4ed8;
}

.case-study-text p {
    margin-bottom: 20px;
    color: #666;
}

.case-study-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d4ed8;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background-color: white;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 2rem;
    color: #1d4ed8;
    margin-right: 20px;
}

.contact-item h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.contact-item p {
    color: #666;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #f4f4f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #1d4ed8;
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1d4ed8;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 300px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.footer-logo p {
    color: #b3b3b3;
    max-width: 300px;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #b3b3b3;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #1d4ed8;
}

.footer-column .social-links {
    margin-top: 20px;
}

.newsletter h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.newsletter form {
    display: flex;
}

.newsletter input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: 'Poppins', sans-serif;
}

.newsletter button {
    background-color: #1d4ed8;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter button:hover {
    background-color: #1e40af;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #b3b3b3;
    font-size: 0.9rem;
}

/* Portfolio Modal */
.portfolio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background-color: white;
    width: 90%;
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    border-radius: 10px;
    animation: modalFadeIn 0.5s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #1d4ed8;
}

.modal-body {
    margin-top: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Detailed Services Section */
.detailed-services {
    margin-top: 40px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detailed-services h3 {
    color: #1d4ed8;
    font-size: 1.6rem;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.detailed-services h3:first-child {
    margin-top: 0;
}

.detailed-services p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #4b5563;
}

.service-detail {
    margin-bottom: 25px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.service-detail:hover {
    transform: translateY(-5px);
}

.service-detail h4 {
    color: #1e40af;
    font-size: 1.2rem;
    margin-bottom: 10px;
    border-left: 3px solid #1d4ed8;
    padding-left: 10px;
}

/* About Page Styles */
.about-hero {
    height: 70vh;
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1d4ed8;
}

.about-content p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.7;
}

.values-section {
    margin-bottom: 80px;
    text-align: center;
}

.values-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(29, 78, 216, 0.1);
    border-radius: 50%;
}

.value-icon i {
    font-size: 1.8rem;
    color: #1d4ed8;
}

.value-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.team-section {
    margin-bottom: 80px;
    text-align: center;
}

.team-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    margin: 20px 0 5px;
    font-size: 1.3rem;
}

.member-title {
    color: #1d4ed8;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member p {
    padding: 0 20px;
    margin-bottom: 20px;
    color: #666;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-bottom: 20px;
}

.member-social a {
    width: 35px;
    height: 35px;
    background-color: #f4f4f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background-color: #1d4ed8;
    color: white;
}

.testimonials-section {
    margin-bottom: 80px;
    text-align: center;
}

.testimonials-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.testimonial-content {
    position: relative;
    padding-top: 30px;
    margin-bottom: 30px;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 5rem;
    color: #1d4ed8;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-content p {
    color: #666;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author p {
    color: #666;
    font-size: 0.9rem;
}

/* Services Page Styles */
.services-hero {
    height: 70vh;
}

.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-category {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-category:hover {
    transform: translateY(-10px);
}

.service-category .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(29, 78, 216, 0.1);
    border-radius: 50%;
}

.service-category .service-icon i {
    font-size: 2rem;
    color: #1d4ed8;
}

.service-category h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
}

.service-category p {
    color: #666;
    line-height: 1.6;
}

.process-section {
    margin: 80px 0;
}

.process-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.process-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 1.1rem;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .process-steps:before {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .case-study-content {
        flex-direction: column;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
    z-index: 1000;
}

/* Desktop dropdown behavior */
@media screen and (min-width: 993px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }
}

.dropdown-menu li {
    display: block;
    margin: 0;
}

.dropdown-menu li a {
    color: #333;
    padding: 10px 20px;
    display: block;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: #1d4ed8;
    padding-left: 25px;
}

.dropdown > a .fa-chevron-down {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Dropdown Adjustments */
@media screen and (max-width: 992px) {
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 0;
        background-color: #f8f9fa;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown-menu li a {
        padding-left: 30px;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px; /* Adjust based on your content */
    }
    
    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .dropdown.active > a .fa-chevron-down {
        transform: rotate(180deg);
    }
}

@media screen and (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .contact-info {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1001;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .core-services {
        flex-direction: column;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .detailed-services {
        padding: 20px;
    }
    
    .detailed-services h3 {
        font-size: 1.4rem;
    }
    
    .service-detail {
        padding: 15px;
    }
    
    .about-section, 
    .about-section.reverse {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .values-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-form-section {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .approach-steps {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .lead-form-popup {
        width: 300px;
    }
}