/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui;
}

body {
    background-color: #f8f9fa;
}

/* Navigation styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #bb200c;
}

/* Dropdown menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1;
    top: 100%;
    left: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #a3130e;
}

/* Button styles */
.cta-button {
    background-color: #790505;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #000000;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Responsive styles */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
    }
    
    .dropdown:hover .dropdown-content {
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .menu-toggle {
        display: block;
    }
}

/* Add this to your existing styles.css file */

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}

.slide-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 10;
}

.slider-control:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .slider-container {
        height: 500px;
    }
    
    .slide-content {
        padding: 20px;
        width: 90%;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 400px;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .slider-control {
        font-size: 1.5rem;
        padding: 10px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
}


/* About Us Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background-color: #b52116;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #ed0a06;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.feature p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #4a6bff;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(74, 107, 255, 0.3);
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 50px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .experience-badge {
        padding: 15px;
        right: 0;
    }
    
    .experience-badge span {
        font-size: 2rem;
    }
}


/* Our Services Section Styles */
.services-section {
    padding: 80px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background-color: #4a6bff;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #4a6bff;
    transition: height 0.3s;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover .service-icon img {
    filter: brightness(0) invert(1);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover li,
.service-card:hover .service-link {
    color: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.2);
}

.service-icon img {
    width: 50px;
    height: 50px;
    transition: filter 0.3s;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    transition: color 0.3s;
}

.service-features {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-features li {
    color: #555;
    margin-bottom: 8px;
    position: relative;
    transition: color 0.3s;
}

.service-features li::before {
    content: '•';
    color: #4a6bff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.service-link {
    display: inline-block;
    color: #4a6bff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.service-link:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}



/* Why Choose Us Section Styles */
.why-us-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.reason-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.reason-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(74, 107, 255, 0.1);
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1;
}

.reason-content {
    position: relative;
    z-index: 2;
}

.reason-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.reason-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background-color: #4a6bff;
}

.reason-content p {
    color: #666;
    line-height: 1.6;
    margin-top: 15px;
}

.reason-icon {
    width: 50px;
    height: 50px;
    background-color: #4a6bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    align-self: flex-end;
}

.reason-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 60px 0;
    }
    
    .reason-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .reason-number {
        font-size: 2.5rem;
    }
    
    .reason-content h3 {
        font-size: 1.2rem;
    }
}



/* Industries We Serve Section Styles */
.industries-section {
    padding: 80px 0;
    background-color: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.industry-card {
    border-radius: 10px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    color: white;
    z-index: 1;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: -1;
}

.industry-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.industry-card:hover {
    transform: translateY(-10px);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.industry-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.industry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.industry-card p {
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.9;
}

.industry-link {
    display: inline-block;
    color: white;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.industry-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s;
}

.industry-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Industry-specific background colors */
.healthcare::after {
    background-color: #4a6bff;
}

.ecommerce::after {
    background-color: #ff6b6b;
}

.realestate::after {
    background-color: #48dbfb;
}

.education::after {
    background-color: #1dd1a1;
}

.hospitality::after {
    background-color: #ff9ff3;
}

.technology::after {
    background-color: #feca57;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .industries-section {
        padding: 60px 0;
    }
    
    .industry-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-card h3 {
        font-size: 1.3rem;
    }
}


/* Achievement Metrics Section */
.achievement-metrics {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 5rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.metrics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.metrics-heading {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 4rem;
    position: relative;
}

.metrics-heading::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #3498db;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.stats-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-box {
    flex: 1;
    min-width: 220px;
    padding: 2.5rem 1.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.project-count,
.client-count,
.profile-count {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.project-count {
    color: #e74c3c;
}

.client-count {
    color: #2ecc71;
}

.profile-count {
    color: #3498db;
}

.stat-title {
    font-size: 1.3rem;
    color: #7f8c8d;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .stats-wrapper {
        gap: 1.5rem;
    }
    
    .stat-box {
        padding: 2rem 1rem;
    }
    
    .project-count,
    .client-count,
    .profile-count {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .stats-wrapper {
        flex-direction: column;
    }
    
    .metrics-heading {
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }
    
    .project-count,
    .client-count,
    .profile-count {
        font-size: 2.8rem;
    }
}


/* Client Testimonials Section */
.client-feedback-section {
    background-color: #f9fafc;
    padding: 5rem 0;
    font-family: 'Poppins', sans-serif;
}

.feedback-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feedback-main-title {
    text-align: center;
    font-size: 2.8rem;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
}

.feedback-main-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #4f46e5;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.feedback-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 3rem;
}

.testimonial-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feedback-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.client-rating {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.client-comment {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e2e8f0;
    margin-right: 1rem;
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.2rem;
}

.client-designation {
    font-size: 0.9rem;
    color: #718096;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .testimonial-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feedback-main-title {
        font-size: 2.4rem;
    }
    
    .testimonial-cards-container {
        grid-template-columns: 1fr;
    }
    
    .feedback-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .client-feedback-section {
        padding: 3rem 0;
    }
    
    .feedback-main-title {
        font-size: 2rem;
    }
    
    .feedback-subtitle {
        font-size: 1rem;
    }
}


/* Clients Showcase Section */
.client-showcase {
    background-color: #f8fafc;
    padding: 5rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.clients-main-heading {
    text-align: center;
    font-size: 2.8rem;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
}

.clients-main-heading::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #3b82f6;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.clients-subheading {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.client-logos-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
}

.client-logo-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 220px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.client-logo-img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo-box:hover .client-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .client-logos-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .clients-main-heading {
        font-size: 2.4rem;
    }
    
    .client-logos-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .client-logo-box {
        padding: 1.2rem 1.5rem;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .client-showcase {
        padding: 3rem 0;
    }
    
    .clients-main-heading {
        font-size: 2rem;
    }
    
    .clients-subheading {
        font-size: 1rem;
    }
    
    .client-logos-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .client-logo-box {
        max-width: 180px;
        height: 90px;
    }
}


/* Footer Styles */
.corporate-footer {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 60px;
}

.footer-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* Brand Column Styles */
.footer-brand-column {
    display: flex;
    flex-direction: column;
}

.footer-logo-container {
    margin-bottom: 20px;
}

.brand-logo {
    max-width: 200px;
    height: auto;
}

.company-description {
    color: #b0b8c5;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-media-container {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #3a4553;
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #4f6d95;
    transform: translateY(-3px);
}

/* Common Column Styles */
.footer-column-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #4a90e2;
}

/* Contact Column Styles */
.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-icon {
    color: #6f0f05;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 0.9rem;
}

/* Links Column Styles */
.footer-nav-list, .services-list {
    list-style: none;
    padding: 0;
}

.nav-link-item, .service-link-item {
    display: block;
    color: #b0b8c5;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.nav-link-item:hover, .service-link-item:hover {
    color: #4a90e2;
    padding-left: 5px;
}

/* Footer Bottom Styles */
.footer-bottom-bar {
    border-top: 1px solid #3a4553;
    margin-top: 50px;
    padding: 25px 0;
}

.copyright-section {
    text-align: center;
    color: #b0b8c5;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.legal-links-section {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.legal-link {
    color: #b0b8c5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #4a90e2;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-grid-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-column-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .footer-grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links-section {
        flex-wrap: wrap;
        gap: 15px;
    }
}




/* About Us Section Styles */
.company-profile-section {
    background-color: #ffffff;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header Styles */
.section-header-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4a90e2;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-main-title {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #4a90e2, #2c3e50);
    margin: 0 auto;
}

/* Content Grid Styles */
.about-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
}

.about-image-column {
    position: relative;
}

.image-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.team-image:hover {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #4a90e2, #2c3e50);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.years-count {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.years-text {
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

/* Text Column Styles */
.about-text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-headline {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-description {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 25px;
}

.achievements-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.achievement-item {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.achievement-icon {
    color: #4a90e2;
    margin-right: 10px;
    font-size: 1.2rem;
}

.mission-statement {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #4a90e2;
}

.mission-title {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.mission-text {
    color: #7f8c8d;
    line-height: 1.7;
}

.learn-more-btn {
    align-self: flex-start;
    background: linear-gradient(to right, #4a90e2, #2c3e50);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

/* Values Section Styles */
.values-section {
    margin-top: 60px;
}

.values-title {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a90e2, #2c3e50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon {
    color: white;
    font-size: 1.8rem;
}

.value-name {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.value-description {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-main-title {
        font-size: 2.2rem;
    }
    
    .about-headline {
        font-size: 1.5rem;
    }
    
    .experience-badge {
        right: 0;
        bottom: -15px;
    }
}

@media (max-width: 480px) {
    .section-main-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .about-content-grid {
        gap: 30px;
    }
    
    .years-count {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}




/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

/* Hero Section */
.webdesign-hero-section {
    background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.webdesign-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.webdesign-main-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.webdesign-hero-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.webdesign-cta-button {
    background-color: #ff7e5f;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.webdesign-cta-button:hover {
    background-color: #ff6b4a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Section Titles */
.webdesign-section-title {
    text-align: center;
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.webdesign-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #6e48aa, #9d50bb);
}

.webdesign-section-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Features Section */
.webdesign-features-section {
    padding: 5rem 2rem;
    background-color: white;
}

.webdesign-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.webdesign-feature-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.webdesign-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.webdesign-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.webdesign-feature-title {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.webdesign-feature-desc {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.6;
}

/* Process Section */
.webdesign-process-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.webdesign-process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.webdesign-process-step {
    flex: 1 1 300px;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.webdesign-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.webdesign-step-title {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.webdesign-step-desc {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.6;
}

/* Packages Section */
.webdesign-packages-section {
    padding: 5rem 2rem;
    background-color: white;
}

.webdesign-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.webdesign-package-card {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.webdesign-package-card:hover {
    transform: translateY(-10px);
}

.featured-package {
    background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
    color: white;
    transform: scale(1.05);
}

.featured-package .webdesign-package-header,
.featured-package .webdesign-feature-item {
    color: white;
}

.webdesign-package-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #ff7e5f;
    color: white;
    padding: 0.3rem 2rem;
    font-weight: bold;
    transform: rotate(45deg);
    font-size: 0.8rem;
    width: 120px;
    text-align: center;
}

.webdesign-package-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.featured-package .webdesign-package-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.webdesign-package-name {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
}

.webdesign-package-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

.webdesign-price-term {
    font-size: 1rem;
    font-weight: normal;
}

.webdesign-package-features {
    padding: 2rem;
    list-style: none;
    margin: 0;
}

.webdesign-feature-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.featured-package .webdesign-feature-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.webdesign-feature-item i {
    color: #6e48aa;
}

.featured-package .webdesign-feature-item i {
    color: white;
}

.webdesign-package-button {
    display: block;
    width: calc(100% - 4rem);
    margin: 0 auto 2rem;
    padding: 1rem;
    border: none;
    background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
    color: white;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.webdesign-package-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.featured-button {
    background: white !important;
    color: #6e48aa !important;
}

.featured-button:hover {
    background: #f8f9fa !important;
}

/* FAQ Section */
/* FAQ Section - Updated Styles */
.webdesign-faq-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    max-width: 800px;
    margin: 0 auto;
}

.webdesign-faq-container {
    margin-top: 2rem;
}

.webdesign-faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.webdesign-faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.webdesign-faq-question:hover {
    background-color: #f1f1f1;
}

.webdesign-faq-question.active {
    background-color: #6e48aa;
    color: white;
}

.webdesign-faq-question i {
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.webdesign-faq-answer {
    background: white;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.webdesign-faq-answer.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.webdesign-faq-answer p {
    padding: 1.5rem 0 0;
    margin: 0;
    color: #7f8c8d;
    line-height: 1.6;
}
/* CTA Section */
.webdesign-cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
    color: white;
    text-align: center;
}

.webdesign-cta-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.webdesign-cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .webdesign-main-title {
        font-size: 2.2rem;
    }
    
    .webdesign-hero-text {
        font-size: 1.1rem;
    }
    
    .webdesign-section-title {
        font-size: 1.8rem;
    }
    
    .webdesign-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-package {
        transform: none;
    }
}

@media (max-width: 480px) {
    .webdesign-hero-section, 
    .webdesign-features-section,
    .webdesign-process-section,
    .webdesign-packages-section,
    .webdesign-faq-section,
    .webdesign-cta-section {
        padding: 3rem 1rem;
    }
    
    .webdesign-main-title {
        font-size: 1.8rem;
    }
    
    .webdesign-cta-title {
        font-size: 1.8rem;
    }
}



/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

/* Hero Section */
.appdev-hero-section {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.appdev-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.appdev-main-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.appdev-hero-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.appdev-cta-button {
    background-color: #4facfe;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.appdev-cta-button:hover {
    background-color: #3a8bed;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Section Titles */
.appdev-section-title {
    text-align: center;
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.appdev-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #4b6cb7, #182848);
}

.appdev-section-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Features Section */
.appdev-features-section {
    padding: 5rem 2rem;
    background-color: white;
}

.appdev-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.appdev-feature-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.appdev-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.appdev-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.appdev-feature-title {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.appdev-feature-desc {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.6;
}

/* Technology Stack Section */
.appdev-tech-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.appdev-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.appdev-tech-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.appdev-tech-icon {
    font-size: 2.5rem;
    color: #4b6cb7;
    margin-bottom: 1.5rem;
}

.appdev-tech-title {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.appdev-tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.appdev-tech-list li {
    padding: 0.5rem 0;
    color: #7f8c8d;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.appdev-tech-list li:before {
    content: '•';
    color: #4b6cb7;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Packages Section */
.appdev-packages-section {
    padding: 5rem 2rem;
    background-color: white;
}

.appdev-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.appdev-package-card {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.appdev-package-card:hover {
    transform: translateY(-10px);
}

.featured-package {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    color: white;
    transform: scale(1.05);
}

.featured-package .appdev-package-header,
.featured-package .appdev-feature-item {
    color: white;
}

.appdev-package-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #4facfe;
    color: white;
    padding: 0.3rem 2rem;
    font-weight: bold;
    transform: rotate(45deg);
    font-size: 0.8rem;
    width: 120px;
    text-align: center;
}

.appdev-package-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.featured-package .appdev-package-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.appdev-package-name {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
}

.appdev-package-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

.appdev-price-term {
    font-size: 1rem;
    font-weight: normal;
}

.appdev-package-features {
    padding: 2rem;
    list-style: none;
    margin: 0;
}

.appdev-feature-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.featured-package .appdev-feature-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.appdev-feature-item i {
    color: #4b6cb7;
}

.featured-package .appdev-feature-item i {
    color: white;
}

.appdev-package-button 
{
    display: block;
    width: calc(100% - 4rem);
    margin: 0 auto 2rem;
    padding: 1rem;
    border: none;
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    color: white;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all
}


 
        /* Contact Section Container */
        .contact-section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .contact-main-heading {
            text-align: center;
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .contact-intro-text {
            text-align: center;
            color: #7f8c8d;
            font-size: 1.1rem;
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Contact Content Layout */
        .contact-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        @media (max-width: 900px) {
            .contact-content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        
        /* Contact Form Styles */
        .contact-form-container {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .contact-form-heading {
            color: #2c3e50;
            margin-top: 0;
            margin-bottom: 25px;
            font-size: 1.8rem;
        }
        
        .contact-input-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .form-input-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .form-input-label {
            font-weight: 600;
            color: #2c3e50;
            font-size: 1rem;
        }
        
        .form-text-input, .form-select-input, .form-textarea-input {
            padding: 14px 16px;
            border: 1px solid #e1e5e9;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8fafc;
        }
        
        .form-text-input:focus, .form-select-input:focus, .form-textarea-input:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
            background: white;
        }
        
        .form-textarea-input {
            resize: vertical;
            min-height: 150px;
        }
        
        .form-submit-button {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 16px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            box-shadow: 0 4px 6px rgba(52, 152, 219, 0.2);
        }
        
        .form-submit-button:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(52, 152, 219, 0.25);
        }
        
        /* Contact Information Styles */
        .contact-info-container {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .contact-info-heading {
            color: #2c3e50;
            margin-top: 0;
            margin-bottom: 25px;
            font-size: 1.8rem;
        }
        
        .contact-info-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            align-items: flex-start;
        }
        
        .contact-info-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #3498db, #2c3e50);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .info-icon {
            color: white;
            font-size: 1.4rem;
        }
        
        .info-item-title {
            color: #2c3e50;
            margin: 0 0 8px 0;
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .info-item-detail {
            color: #7f8c8d;
            margin: 0;
            line-height: 1.6;
        }
        
        .business-hours-list {
            list-style: none;
            padding: 0;
            margin-top: 10px;
        }
        
        .business-hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 6px 0;
            border-bottom: 1px solid #f1f1f1;
        }
        
        /* Google Maps Styles */
        .map-container {
            margin-top: 20px;
        }
        
        .map-heading {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 30px;
            font-size: 1.8rem;
        }
        
        .google-map-embed {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 450px;
        }
        
        .map-iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        /* Social Media Links */
        .social-media-section {
            margin-top: 40px;
            text-align: center;
        }
        
        .social-media-heading {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        
        .social-icons-container {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .social-icon-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
            font-size: 1.4rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icon-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(52, 152, 219, 0.3);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 600px) {
            .contact-section-container {
                padding: 30px 15px;
            }
            
            .contact-main-heading {
                font-size: 2rem;
            }
            
            .contact-form-container, .contact-info-container {
                padding: 25px;
            }
            
            .contact-info-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .info-item-content {
                text-align: center;
            }
            
            .google-map-embed {
                height: 300px;
            }
        }


        /* styles.css */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.dm-consult-btn {
    background-color: #4CAF50;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin: 20px;
    transition: background-color 0.3s;
}

.dm-consult-btn:hover {
    background-color: #45a049;
}

.dm-modal-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.dm-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: dmModalOpen 0.4s;
}

@keyframes dmModalOpen {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.dm-close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.dm-close-modal:hover {
    color: #333;
}

.dm-modal-title {
    color: #2c3e50;
    margin-bottom: 10px;
}

.dm-modal-subtitle {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.dm-form-field {
    margin-bottom: 20px;
}

.dm-form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.dm-form-field input[type="text"],
.dm-form-field input[type="email"],
.dm-form-field input[type="tel"],
.dm-form-field select,
.dm-form-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.dm-form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.dm-form-submit {
    background-color: #3498db;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s;
}

.dm-form-submit:hover {
    background-color: #2980b9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dm-modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 20px;
    }
}


.float{
	position:fixed;
	width:80px;
	height:80px;
	bottom:40px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:50px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}