* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-size: 28px;
    color: #2c3e66;
}

.logo span {
    color: #e74c3c;
}

.logo p {
    font-size: 12px;
    color: #666;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #e74c3c;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    padding: 10px;
}

.dropdown-menu a {
    display: block;
    padding: 5px 10px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('https://images.stockcake.com/public/a/c/9/ac9eaa08-ff1a-4286-bafc-2d02d1dbcb9e_large/corporate-team-meeting-stockcake.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(218, 207, 207, 0.377);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-buttons {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    margin: 0 10px;
    transition: 0.3s;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

/* Stats Section */
.stats {
    background: #2c3e66;
    color: white;
    padding: 60px 0;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    color: #e74c3c;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 36px;
    color: #2c3e66;
    margin-top: 10px;
}

/* About Preview */
.about-preview .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    color: #2c3e66;
    margin: 15px 0 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 48px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card a {
    color: #e74c3c;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    font-weight: 500;
}

/* Why Choose Us */
.why-choose {
    background: #f0f2f5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
}

.feature i {
    font-size: 48px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
}

/* Page Header */
.page-header {
    height: 50vh;
    background-image: url('https://static.vecteezy.com/system/resources/thumbnails/053/631/398/small/business-people-sitting-at-a-table-with-graphs-on-the-wall-photo.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.37);
}

.page-header-content {
    position: relative;
    text-align: center;
    color: white;
}

.page-header-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.about-main-content h2 {
    color: #2c3e66;
    margin: 30px 0 15px;
}

.about-main-content h2:first-child {
    margin-top: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.value-item {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.value-item i {
    font-size: 36px;
    color: #e74c3c;
    margin-bottom: 10px;
}

.about-sidebar img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}

.achievement-box {
    background: #2c3e66;
    color: white;
    padding: 30px;
    border-radius: 10px;
}

.achievement-box ul {
    list-style: none;
    margin-top: 20px;
}

.achievement-box li {
    margin: 15px 0;
}

.achievement-box i {
    margin-right: 10px;
    color: #e74c3c;
}

/* Services Detail Page */
.all-services .service-detail {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #ddd;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-content i {
    font-size: 48px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #2c3e66;
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-detail-content li {
    margin: 10px 0;
}

/* Gallery Page */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 20px;
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    color: #e74c3c;
    font-size: 14px;
}

.blog-content h3 {
    margin: 10px 0;
}

.read-more {
    color: #e74c3c;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.contact-detail {
    margin: 25px 0;
}

.contact-detail i {
    font-size: 24px;
    color: #e74c3c;
    margin-right: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    height: 150px;
}

.map {
    margin-top: 30px;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-about h3,
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    margin-bottom: 20px;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
}

.footer-links a,
.footer-services a {
    color: #ccc;
    text-decoration: none;
    line-height: 2;
}

.footer-links a:hover,
.footer-services a:hover {
    color: #e74c3c;
}

.social-links a {
    color: #fff;
    margin-right: 15px;
    font-size: 20px;
}

.footer-contact li {
    margin: 10px 0;
    color: #ccc;
}

.footer-contact i {
    margin-right: 10px;
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .about-preview .about-content,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        margin: 10px;
    }
}
/* Gallery Page Additional Styles */
.gallery-filter-section {
    padding: 40px 0 0;
}

.filter-buttons {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: #f0f2f5;
    border: none;
    padding: 10px 25px;
    margin: 5px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #e74c3c;
    color: white;
}

.gallery-main {
    padding-top: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    transition: bottom 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 14px;
    margin-bottom: 10px;
}

.gallery-overlay i {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
    background: #e74c3c;
    padding: 8px;
    border-radius: 50%;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

#caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 15px;
}

#caption h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2001;
}

.close-lightbox:hover {
    color: #e74c3c;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c3e66, #1a1a2e);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 18px;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 15px;
    }
    
    .gallery-item img {
        height: 220px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 70%;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* Blog Page Additional Styles */
.blog-main {
    padding: 60px 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

/* Blog Posts */
.blog-search {
    display: flex;
    margin-bottom: 30px;
}

.blog-search input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-family: 'Poppins', sans-serif;
}

.blog-search button {
    padding: 12px 20px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: 0.3s;
}

.blog-search button:hover {
    background: #c0392b;
}

.blog-categories-filter {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.filter-label {
    font-weight: 600;
    color: #2c3e66;
}

.cat-filter-btn {
    padding: 6px 15px;
    background: #f0f2f5;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.cat-filter-btn:hover,
.cat-filter-btn.active {
    background: #e74c3c;
    color: white;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.blog-meta i {
    margin-right: 5px;
    color: #e74c3c;
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e66;
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-btn {
    padding: 8px 15px;
    background: #f0f2f5;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.page-btn:hover,
.page-btn.active {
    background: #e74c3c;
    color: white;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 20px;
    color: #2c3e66;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
    display: inline-block;
}

.popular-posts {
    list-style: none;
}

.popular-posts li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.popular-posts img {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    object-fit: cover;
}

.post-info a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.post-info a:hover {
    color: #e74c3c;
}

.post-info span {
    font-size: 12px;
    color: #666;
}

.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 12px;
}

.categories-list a {
    color: #333;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: color 0.3s;
}

.categories-list a:hover {
    color: #e74c3c;
}

.categories-list span {
    color: #666;
}

.newsletter-widget input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-widget button {
    width: 100%;
    padding: 12px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.newsletter-widget button:hover {
    background: #c0392b;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-cloud a {
    padding: 5px 12px;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    transition: 0.3s;
}

.tags-cloud a:hover {
    background: #e74c3c;
    color: white;
}

/* Blog Modal */
.blog-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow-y: auto;
}

.blog-modal-content {
    background-color: white;
    margin: 50px auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: 0.3s;
    z-index: 1;
}

.close-modal:hover {
    color: #e74c3c;
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    color: #2c3e66;
    font-size: 28px;
    margin-bottom: 15px;
    padding-right: 30px;
}

.modal-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
}

.modal-meta i {
    margin-right: 5px;
    color: #e74c3c;
}

.modal-body {
    padding: 30px;
    line-height: 1.8;
}

.modal-body h3 {
    color: #2c3e66;
    margin: 25px 0 15px;
}

.modal-body p {
    margin-bottom: 15px;
    color: #555;
}

.modal-body pre {
    background: #f4f4f4;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    margin: 20px 0;
    font-family: monospace;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    text-align: right;
}

/* Responsive Blog */
@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-content h3 {
        font-size: 18px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .blog-categories-filter {
        justify-content: center;
    }
    
    .modal-header h2 {
        font-size: 22px;
    }
    
    .modal-body {
        padding: 20px;
    }
}
/* Contact Page Additional Styles */
.contact-info-section {
    padding: 60px 0 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 30px;
    color: white;
}

.contact-card h3 {
    font-size: 20px;
    color: #2c3e66;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin: 5px 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-container .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.contact-form-container .section-header h2 {
    font-size: 32px;
}

.contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    font-size: 16px;
}

.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Container */
.map-container {
    position: sticky;
    top: 100px;
}

.map-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.map-card h3 {
    padding: 20px 25px 0;
    color: #2c3e66;
    font-size: 22px;
}

.map-wrapper {
    padding: 20px;
}

.map-wrapper iframe {
    border-radius: 10px;
}

.office-hours {
    padding: 0 25px 20px;
    border-bottom: 1px solid #eee;
}

.office-hours h4 {
    color: #2c3e66;
    margin-bottom: 15px;
    font-size: 18px;
}

.office-hours h4 i {
    color: #e74c3c;
    margin-right: 8px;
}

.office-hours ul {
    list-style: none;
}

.office-hours li {
    padding: 8px 0;
    color: #666;
}

.office-hours li span {
    font-weight: 500;
    color: #333;
}

.social-connect {
    padding: 20px 25px;
}

.social-connect h4 {
    color: #2c3e66;
    margin-bottom: 15px;
    font-size: 18px;
}

.social-connect h4 i {
    color: #e74c3c;
    margin-right: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon.instagram {
    background: #e4405f;
}

.social-icon.youtube {
    background: #cd201f;
}

/* FAQ Section */
.faq-section {
    background: #f0f2f5;
    padding: 60px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question h3 {
    font-size: 18px;
    color: #2c3e66;
    margin: 0;
}

.faq-question i {
    color: #e74c3c;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Contact Page */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-container {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 22px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container .section-header h2 {
        font-size: 24px;
    }
    
    .social-icons {
        flex-wrap: wrap;
        gap: 10px;
    }
}
/* Service Page Additional Styles */
.service-header {
    height: 60vh;
    background-image: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?w=1920');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.service-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
}

.service-header-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 1;
}

.service-icon-large {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-header-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-header-content p {
    font-size: 18px;
}

/* Service Overview */
.service-overview {
    padding: 80px 0;
    background: #f9f9f9;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-content h2 {
    font-size: 32px;
    color: #2c3e66;
    margin-bottom: 20px;
}

.overview-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.key-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit i {
    color: #e74c3c;
    font-size: 18px;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-circle {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.stat-circle:hover {
    transform: translateY(-5px);
}

.stat-circle .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #e74c3c;
}

.stat-circle .stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* Course Curriculum */
.course-curriculum {
    padding: 80px 0;
}

.curriculum-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: #f0f2f5;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background: #e74c3c;
    color: white;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.curriculum-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
}

.curriculum-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.curriculum-item i {
    font-size: 48px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.curriculum-item h3 {
    font-size: 22px;
    color: #2c3e66;
    margin-bottom: 15px;
}

.curriculum-item ul {
    list-style: none;
    padding: 0;
}

.curriculum-item li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.curriculum-item li:before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #e74c3c;
}

/* Why Us Service */
.why-us-service {
    padding: 80px 0;
    background: #f0f2f5;
}

.features-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-service {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    transition: 0.3s;
}

.feature-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-service i {
    font-size: 48px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.feature-service h3 {
    font-size: 22px;
    color: #2c3e66;
    margin-bottom: 15px;
}

.feature-service p {
    color: #666;
}

/* Learning Path */
.learning-path {
    padding: 80px 0;
}

.path-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.path-timeline:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e74c3c;
}

.path-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    z-index: 1;
}

.step-content {
    flex: 1;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

.step-content h3 {
    font-size: 20px;
    color: #2c3e66;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    margin-bottom: 10px;
}

.salary {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Service CTA */
.service-cta {
    padding: 0 0 80px;
}

.cta-box {
    background: linear-gradient(135deg, #2c3e66, #1a1a2e);
    color: white;
    text-align: center;
    padding: 60px;
    border-radius: 20px;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #2c3e66;
}

/* Demo Modal */
.demo-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.demo-modal-content {
    background-color: white;
    margin: 100px auto;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    position: relative;
    animation: slideDown 0.3s ease;
}

.close-demo {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    transition: 0.3s;
}

.close-demo:hover {
    color: #e74c3c;
}

.demo-modal-content h2 {
    color: #2c3e66;
    margin-bottom: 10px;
}

.demo-modal-content p {
    color: #666;
    margin-bottom: 25px;
}

.demo-modal-content input,
.demo-modal-content select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Service Page */
@media (max-width: 992px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-header-content h1 {
        font-size: 36px;
    }
    
    .cta-box h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .service-header {
        height: 50vh;
    }
    
    .service-icon-large {
        font-size: 50px;
    }
    
    .service-header-content h1 {
        font-size: 28px;
    }
    
    .key-benefits {
        grid-template-columns: 1fr;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .demo-modal-content {
        margin: 50px auto;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .path-timeline:before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
}
/* Certifications Section */
.certifications {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f2f5, #ffffff);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cert-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.cert-level {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.cert-card i {
    font-size: 60px;
    color: #e74c3c;
    margin: 30px 0 20px;
}

.cert-card h3 {
    font-size: 22px;
    color: #2c3e66;
    margin-bottom: 15px;
}

.cert-card p {
    color: #666;
    margin-bottom: 20px;
}

.cert-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.cert-card li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.cert-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

/* Tools Section */
.tools-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.tool-item {
    background: white;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.tool-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: #e74c3c;
    color: white;
}

.tool-item:hover i {
    color: white;
}

.tool-item i {
    font-size: 40px;
    color: #e74c3c;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.tool-item span {
    display: block;
    font-weight: 500;
}

/* Responsive additions */
@media (max-width: 768px) {
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tool-item {
        padding: 15px;
    }
    
    .tool-item i {
        font-size: 30px;
    }
    
    .cert-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}
/* Applications Section */
.applications {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, #f0f2f5);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.app-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #2c3e66;
    color: white;
}

.app-card:hover i {
    color: #e74c3c;
}

.app-card i {
    font-size: 48px;
    color: #e74c3c;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.app-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.app-card p {
    color: #666;
}

.app-card:hover p {
    color: #ddd;
}

/* Libraries Section */
.libraries-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.libraries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.library-item {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.library-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-left: 3px solid #e74c3c;
}

.library-item i {
    font-size: 36px;
    color: #e74c3c;
    display: block;
    margin-bottom: 10px;
}

.library-item strong {
    display: block;
    font-size: 18px;
    color: #2c3e66;
    margin-bottom: 5px;
}

.library-item span {
    font-size: 13px;
    color: #666;
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background: #ffffff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.project-icon {
    width: 70px;
    height: 70px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.project-icon i {
    font-size: 30px;
    color: white;
}

.project-card h3 {
    font-size: 20px;
    color: #2c3e66;
    margin-bottom: 15px;
}

.project-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive additions for Python page */
@media (max-width: 768px) {
    .apps-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .libraries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .app-card {
        padding: 20px;
    }
    
    .app-card i {
        font-size: 36px;
    }
    
    .app-card h3 {
        font-size: 18px;
    }
    
    .library-item {
        padding: 15px;
    }
    
    .library-item strong {
        font-size: 16px;
    }
    
    .project-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .libraries-grid {
        grid-template-columns: 1fr;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
}
/* Testing Page Specific Styles */
.tools-covered {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, #f0f2f5);
}

.tools-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.tool-showcase-item {
    background: white;
    padding: 25px 15px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.tool-showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    background: #2c3e66;
    color: white;
}

.tool-showcase-item:hover i {
    color: #e74c3c;
}

.tool-showcase-item i {
    font-size: 48px;
    color: #e74c3c;
    margin-bottom: 15px;
    display: block;
    transition: color 0.3s;
}

.tool-showcase-item span {
    font-weight: 500;
    font-size: 16px;
}

/* Methodologies Section */
.methodologies {
    padding: 80px 0;
    background: #f9f9f9;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.method-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-bottom: 3px solid #e74c3c;
}

.method-card i {
    font-size: 48px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.method-card h3 {
    font-size: 20px;
    color: #2c3e66;
    margin-bottom: 15px;
}

.method-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive additions for Testing page */
@media (max-width: 768px) {
    .tools-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .tool-showcase-item {
        padding: 15px 10px;
    }
    
    .tool-showcase-item i {
        font-size: 36px;
    }
    
    .tool-showcase-item span {
        font-size: 12px;
    }
    
    .method-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .method-card {
        padding: 20px;
    }
    
    .method-card i {
        font-size: 36px;
    }
    
    .method-card h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .tools-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .tool-showcase-item {
        padding: 12px 8px;
    }
    
    .tool-showcase-item i {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .tool-showcase-item span {
        font-size: 11px;
    }
}
/* XML Page Specific Styles */
.xml-applications {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, #f0f2f5);
}

.tech-stack {
    padding: 80px 0;
    background: #f9f9f9;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.tech-item {
    background: white;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    background: #2c3e66;
    color: white;
}

.tech-item:hover .tech-icon i {
    color: #e74c3c;
}

.tech-icon {
    width: 70px;
    height: 70px;
    background: #f0f2f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: background 0.3s;
}

.tech-item:hover .tech-icon {
    background: rgba(255,255,255,0.2);
}

.tech-icon i {
    font-size: 32px;
    color: #e74c3c;
    transition: color 0.3s;
}

.tech-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.tech-item p {
    font-size: 13px;
    color: #666;
}

.tech-item:hover p {
    color: #ddd;
}

/* Responsive additions for XML page */
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tech-item {
        padding: 15px;
    }
    
    .tech-icon {
        width: 50px;
        height: 50px;
    }
    
    .tech-icon i {
        font-size: 24px;
    }
    
    .tech-item h3 {
        font-size: 16px;
    }
    
    .tech-item p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .tech-item {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 15px;
        padding: 15px;
    }
    
    .tech-icon {
        margin: 0;
        width: 45px;
        height: 45px;
    }
    
    .tech-icon i {
        font-size: 20px;
    }
    
    .tech-item h3 {
        margin-bottom: 3px;
    }
}