:root {
    --primary-color: #94c941;
    --secondary-color: #6e7255;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --white: #ffffff;
}

/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--secondary-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    font-weight: 700;
}


    #technologies img {
        max-height: 60px;
        transition: transform 0.1s ease;
    }
    #technologies img:hover {
        transform: scale(1.1);
    }

/* Navigation Logo */

.navbar-logo {
    max-height: 50px;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    margin: 0 0.5rem;
}

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

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
}

#hero {
    padding: 5rem 0;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Expertise Cards */
.expertise-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    background: var(--primary-color);
    color: var(--white);
}

.expertise-card:hover h3,
.expertise-card:hover a {
    color: var(--white);
}

/* Why Us Cards */
.why-us-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    height: 100%;
}

.why-us-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
}

.footer h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }
    
    .service-card,
    .expertise-card,
    .why-us-card {
        margin-bottom: 2rem;
    }
}

/* Custom Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Page Styles */
#about-hero {
    background-color: var(--light-gray);
    padding: 4rem 0;
}

#about-hero h1 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

#about-content {
    padding: 5rem 0;
}

#about-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

#about-content p {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

/* Our Approach Section */
.progress-wrapper {
    margin-top: 2rem;
}

.progress-item label {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.progress {
    height: 8px;
    background-color: var(--light-gray);
}

.progress-bar {
    background-color: var(--primary-color);
}

.approach-diagram img {
    max-width: 100%;
    height: auto;
}

/* Contact Form Section */
.contact-wrapper {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 4rem;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    background: rgba(148, 201, 65, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}e

/* Footer Updates */
.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.chat-button:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.chat-button i {
    margin-left: 10px;
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #about-content {
        padding: 3rem 0;
    }
    
    .contact-wrapper {
        text-align: center;
    }
    
    .contact-wrapper form {
        margin-top: 1rem;
    }
}

/* Web Development Page Styles */
#service-hero {
    background-color: var(--light-gray);
    padding: 4rem 0;
}

#service-hero h1 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.web-dev-illustration {
    position: relative;
    padding: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: var(--secondary-color);
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

#interactive-dev {
    background-color: var(--light-gray);
}

#interactive-dev h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

#interactive-dev .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

#interactive-dev .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Responsive Adjustments for Web Development Page */
@media (max-width: 768px) {
    #service-hero {
        padding: 3rem 0;
    }

    #service-hero h1 {
        font-size: 2rem;
    }

    .web-dev-illustration {
        padding: 1rem;
        margin-bottom: 2rem;
    }

    #interactive-dev h2 {
        font-size: 1.75rem;
    }
}

/* Software Development Page Styles */
#software-development {
    position: relative;
    overflow: hidden;
}

.software-dev-illustration {
    position: relative;
    padding: 2rem;
}

.software-dev-illustration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-gray);
    opacity: 0.5;
    border-radius: 20px;
    z-index: -1;
}

.software-dev-illustration img {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.software-dev-illustration:hover img {
    transform: scale(1);
}

/* Feature List Animation */
.feature-list li {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.feature-list li:nth-child(1) { animation-delay: 0.1s; }
.feature-list li:nth-child(2) { animation-delay: 0.2s; }
.feature-list li:nth-child(3) { animation-delay: 0.3s; }
.feature-list li:nth-child(4) { animation-delay: 0.4s; }
.feature-list li:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.p-2 {
    padding: 8px;
}

/* Interactive Section Enhancements */
#interactive-dev .btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#interactive-dev .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

#interactive-dev .btn:hover::after {
    left: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .software-dev-illustration {
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .software-dev-illustration img {
        transform: scale(1);
    }

    #interactive-dev .btn {
        margin-bottom: 1rem;
    }
}

/* Mobile App Development Page Styles */
#mobile-development {
    position: relative;
    overflow: hidden;
}

.mobile-dev-illustration {
    position: relative;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.mobile-dev-illustration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-gray);
    opacity: 0.5;
    border-radius: 20px;
    z-index: -1;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.mobile-dev-illustration:hover::before {
    transform: scale(1);
}

.mobile-dev-illustration img {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.mobile-dev-illustration:hover img {
    transform: translateY(-10px);
}

#industries-dev {
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
}

#industries-dev img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive Adjustments for Mobile Development Page */
@media (max-width: 768px) {
    .mobile-dev-illustration {
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .mobile-dev-illustration img {
        transform: none;
    }

    #industries-dev .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Contact Page Styles */
.hero-section.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #78a834 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="none"/><circle cx="3" cy="3" r="1" fill="rgba(255,255,255,0.2)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-section.contact-hero h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-section.contact-hero .lead {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-section {
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.contact-info-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.contact-info-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #78a834 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.contact-info-card .icon::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.contact-info-card .icon i {
    font-size: 32px;
    color: #ffffff;
}

.contact-info-card h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="none"/><circle cx="3" cy="3" r="1" fill="rgba(0,0,0,0.03)"/></svg>') repeat;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.contact-form-wrapper h2 {
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-form-wrapper p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.form-control, .form-select {
    padding: 0.8rem 1.2rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(148, 201, 65, 0.25);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-primary {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-color) 0%, #78a834 100%);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(148, 201, 65, 0.4);
}

.map-wrapper {
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.social-section {
    padding: 80px 0;
    background: #ffffff;
}

.social-section h2 {
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.social-section p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 2px solid var(--primary-color);
}

.social-icon:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(148, 201, 65, 0.3);
}

/* Success Message Styling */
.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: none;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.alert-success .alert-heading {
    color: #155724;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-section.contact-hero {
        padding: 120px 0 80px;
    }

    .hero-section.contact-hero h1 {
        font-size: 2.8rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .map-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-section.contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-info-card {
        margin-bottom: 1.5rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .hero-section.contact-hero {
        padding: 100px 0 60px;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-form-wrapper h2 {
        font-size: 2rem;
    }

    .btn-primary {
        width: 100%;
    }

    .social-icons {
        gap: 1rem;
    }
}

/* Button Styles */
.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #78a834 100%);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(148, 201, 65, 0.3);
}

/* Service Card Button Adjustments */
.service-card .btn-outline-primary {
    width: 100%;
    margin-top: 1rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.expertise-card .btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0;
    transition: all 0.3s ease;
}

.expertise-card .btn-link:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* WhatsApp Widget */
.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-chat a {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.whatsapp-chat a:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-chat i {
    font-size: 24px;
    margin-left: 8px;
}

.whatsapp-chat .chat-text {
    margin-right: 8px;
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 768px) {
    .whatsapp-chat {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-chat a {
        padding: 12px;
        border-radius: 50%;
    }
    
    .whatsapp-chat .chat-text {
        display: none;
    }
    
    .whatsapp-chat i {
        margin: 0;
        font-size: 28px;
    }
}

/* Digital Marketing Page Styles */
.services-grid {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-grid::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(100px, -100px);
}

.services-grid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(-50px, 50px);
}

.marketing-services-wrapper {
    position: relative;
    padding: 80px 0;
    min-height: 800px;
}

.marketing-services-wrapper .center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    z-index: 1;
}

.service-item {
    position: absolute;
    width: 280px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-item.left-top {
    top: 50px;
    left: -50px;
}

.service-item.right-top {
    top: 50px;
    right: -50px;
}

.service-item.left-bottom {
    bottom: 50px;
    left: -50px;
}

.service-item.right-bottom {
    bottom: 50px;
    right: -50px;
}

.service-item .icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-item .icon i {
    color: white;
    font-size: 20px;
}

.service-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.service-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* SEO Process Section Styles */
.process-item {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.process-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.process-item p {
    color: #666;
    margin-bottom: 0;
}

/* Contact Form in Digital Marketing */
.contact-form.bg-success {
    background: var(--primary-color) !important;
}

.contact-form .btn-light {
    padding: 8px 20px;
    font-weight: 500;
}

.contact-form .btn-light i {
    margin-left: 8px;
}

@media (max-width: 991px) {
    .marketing-services-wrapper {
        padding: 40px 0;
    }

    .service-item {
        position: relative;
        width: 100%;
        margin-bottom: 20px;
    }

    .marketing-services-wrapper .center-image {
        position: relative;
        transform: none;
        left: 0;
        top: 0;
        width: 100%;
        margin: 30px 0;
    }
} 