/* Variables */
:root {
    --primary-color: #4A90E2;
    --secondary-color: #64B5F6;
    --accent-color: #00BCD4;
    --dark-bg: #0A1120;
    --darker-bg: #060911;
    --light-bg: #F8F9FA;
    --text-white: #FFFFFF;
    --text-light: #E0E0E0;
    --text-gray: #B0B0B0;
    --card-bg: #111827;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --light-blue: #F0F8FF;
    --dark-blue: #2C3E50;
    --white: #FFFFFF;
    --gray: #6C7A89;
    --heading-font: 'Orbitron', sans-serif;
    --logo-font: 'Press Start 2P', cursive;
    --title-font: 'Russo One', sans-serif;
    --body-font: 'Arial', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white);
}

p {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Navigation */
nav {
    background-color: var(--white);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--logo-font);
    color: var(--primary-color);
    font-size: 1.5rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--heading-font);
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-blue);
    transition: all 0.3s ease;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('./img/Large-Viewing-Screen-and-Multiple-Speakers-19152.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 17, 32, 0.95) 0%,
        rgba(10, 17, 32, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-subtitle {
    display: inline-block;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 8px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-family: 'Russo One', sans-serif;
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #4A90E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    border: none;
    color: #ffffff;
}

.btn-outline {
    border: 2px solid #4A90E2;
    color: #ffffff;
    background: transparent;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Card */
.hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #4A90E2;
    margin-bottom: 5px;
}

.stat-text {
    color: #ffffff;
    font-size: 1rem;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    display: inline-block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #ffffff;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

.scroll-text {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-card {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 12px 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

/* Sections Common Styles */
section {
    padding: 100px 0;
}

section h2 {
    font-family: var(--title-font);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto;
}

/* Services Section */
.services-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Service Box */
.service-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
}

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

/* Service Content */
.service-box h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-box p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #e0e0e0;
}

.service-list li i {
    color: #4A90E2;
    margin-right: 10px;
    font-size: 1.1rem;
}

.service-list li span {
    color: #e0e0e0;
    font-size: 0.95rem;
}

/* Service Button */
.service-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: linear-gradient(135deg, #357ABD, #4A90E2);
    transform: translateX(5px);
    color: #ffffff;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-box {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-box h3 {
        font-size: 1.3rem;
    }
}

/* Hover Effects */
.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-box:hover::before {
    opacity: 1;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: #161b22;
    padding: 80px 0;
}

.why-choose-card {
    background: #0d1117;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-wrapper i {
    font-size: 2rem;
    color: #ffffff;
}

.why-choose-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Russo One', sans-serif;
}

.why-choose-card p {
    color: #a3b3c7;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.section-subtitle {
    color: #a3b3c7;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-card, .why-choose-card {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .why-choose-card {
        padding: 20px;
    }
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.8rem 1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    flex-grow: 1;
    font-family: var(--body-font);
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .services-grid,
    .features-grid,
    .features-slider {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
    top: 0;
        right: -100%;
        height: 100vh;
    width: 100%;
        background-color: var(--white);
        flex-direction: column;
    justify-content: center;
        transition: right 0.3s ease;
        gap: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
    opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .service-card,
    .feature,
    .feature-card {
        padding: 1.5rem;
    }

    .footer-section {
        padding: 0 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
    opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card,
.feature,
.feature-card {
    opacity: 0;
}

/* Card Hover Effects */
.service-card:hover,
.feature:hover,
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Newsletter Form Styling */
.newsletter-form input {
    padding: 0.8rem 1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    flex-grow: 1;
    font-family: var(--body-font);
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Button Styles */
.cta-button,
.newsletter-form button,
button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-family: var(--heading-font);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.cta-button::before,
.newsletter-form button::before,
button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover,
.newsletter-form button:hover,
button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:hover::before,
.newsletter-form button:hover::before,
button:hover::before {
    left: 100%;
}

.cta-button:active,
.newsletter-form button:active,
button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Newsletter Form Button Specific Styles */
.newsletter-form button {
    padding: 0.8rem 1.5rem;
    min-width: 120px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Social Links Interactive Styles */
.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.social-links a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.social-links a:hover::before {
    transform: scale(1);
}

/* Navigation Links Interactive Styles */
.nav-links a {
    position: relative;
    padding: 5px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Card Interactive Styles */
.service-card,
.feature,
.feature-card {
    position: relative;
    cursor: pointer;
}

.service-card::before,
.feature::before,
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    z-index: -1;
}

.service-card:hover::before,
.feature:hover::before,
.feature-card:hover::before {
    opacity: 0.1;
}

/* Responsive Button Styles */
@media (max-width: 768px) {
    .cta-button,
    .newsletter-form button,
    button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cta-button,
    .newsletter-form button,
    button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Ripple Effect */
.cta-button,
.newsletter-form button,
button {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Newsletter Success State */
.newsletter-form button.success {
    background: #4CAF50;
    pointer-events: none;
}

.newsletter-form button.success i {
    margin-right: 8px;
}

/* About Section Styles */
.about-section {
    background-color: #0a1120;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 8px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Image Section */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: #ffffff;
}

.floating-card {
    position: absolute;
    top: 30px;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: #4A90E2;
    font-size: 2rem;
    margin-bottom: 10px;
}

.floating-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.floating-card p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

/* Content Section */
.about-content {
    padding-left: 30px;
}

.highlight-title {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.highlight-title::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    height: 100%;
    width: 4px;
    background: #4A90E2;
    border-radius: 2px;
}

.lead-text {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    color: #4A90E2;
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.stat-number {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #4A90E2;
}

.stat-plus {
    color: #4A90E2;
    font-size: 1.5rem;
    margin-left: 5px;
}

.stat-label {
    color: #e0e0e0;
    font-size: 1rem;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .floating-card {
        display: none;
    }
}

/* Contact Section Styles */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.section-tag {
    display: inline-block;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 8px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

/* Contact Info Cards */
.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #4A90E2;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.info-card:hover .icon-box {
    transform: rotateY(180deg);
}

.icon-box i {
    color: #ffffff;
    font-size: 1.8rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4A90E2;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateX(5px);
    color: #ffffff;
}

/* Social Links */
.social-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
    position: relative;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-5px);
}

/* Tooltip */
.social-icon[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    font-size: 0.8rem;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.social-icon:hover[data-tooltip]:before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4A90E2;
    font-size: 1.1rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 15px 15px 45px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: url('images/contact-bg.jpg') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 17, 32, 0.9), rgba(74, 144, 226, 0.7));
}

.hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-family: 'Russo One', sans-serif;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

/* Breadcrumb Styles */
.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
}

.breadcrumb-custom a {
    color: #4A90E2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-custom a:hover {
    color: #ffffff;
    transform: scale(1.05);
}

/* Form Styles */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4A90E2, transparent);
    animation: borderFlow 2s linear infinite;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 15px 15px 45px;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Updated Placeholder Styles */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.form-control:focus::placeholder {
    color: rgba(255, 255, 255, 0.6);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* Input Icons Animation */
.input-icon {
    color: #4A90E2;
    animation: iconPulse 2s infinite;
}

/* Interactive Button */
.submit-btn {
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 5px #4A90E2, 0 0 10px #4A90E2, 0 0 15px #4A90E2;
    }
    to {
        text-shadow: 0 0 10px #4A90E2, 0 0 20px #4A90E2, 0 0 30px #4A90E2;
    }
}

@keyframes borderFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Success Message Animation */
.success-message {
    background: rgba(10, 17, 32, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.success-message.show {
    transform: translateY(0);
    opacity: 1;
}

/* Info Card Hover Effects */
.info-card {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: url('images/contact-bg.jpg') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 17, 32, 0.9), rgba(74, 144, 226, 0.7));
}

.hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-family: 'Russo One', sans-serif;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

/* Breadcrumb Styles */
.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
}

.breadcrumb-custom a {
    color: #4A90E2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-custom a:hover {
    color: #ffffff;
    transform: scale(1.05);
}

/* Form Styles */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4A90E2, transparent);
    animation: borderFlow 2s linear infinite;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 15px 15px 45px;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Updated Placeholder Styles */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.form-control:focus::placeholder {
    color: rgba(255, 255, 255, 0.6);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* Input Icons Animation */
.input-icon {
    color: #4A90E2;
    animation: iconPulse 2s infinite;
}

/* Interactive Button */
.submit-btn {
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 5px #4A90E2, 0 0 10px #4A90E2, 0 0 15px #4A90E2;
    }
    to {
        text-shadow: 0 0 10px #4A90E2, 0 0 20px #4A90E2, 0 0 30px #4A90E2;
    }
}

@keyframes borderFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Success Message Animation */
.success-message {
    background: rgba(10, 17, 32, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.success-message.show {
    transform: translateY(0);
    opacity: 1;
}

/* Info Card Hover Effects */
.info-card {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
}

/* Privacy Policy Specific Styles */
.privacy-policy {
    padding: 80px 0;
    background: var(--dark-bg);
    min-height: 100vh;
}

.policy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.policy-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: height 0.3s ease;
}

.policy-section:hover::before {
    height: 100%;
}

.policy-section:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.policy-section h3 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.policy-section h3 i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    animation: iconFloat 2s ease-in-out infinite;
}

.policy-section p {
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 20px;
}

.policy-section ul li {
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
}

.policy-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.policy-section ul li:hover {
    transform: translateX(10px);
}

.policy-section ul li:hover::before {
    transform: translateX(5px);
    color: var(--primary-color);
}

.policy-section strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-email {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    padding: 15px 25px;
    border-radius: 30px;
    color: var(--white);
    font-family: var(--font-heading);
    margin-top: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.contact-email:hover {
    background: rgba(74, 144, 226, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.2);
}

/* Copy tooltip */
.copy-tooltip {
    position: absolute;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    opacity: 0;
    animation: tooltipFade 2s ease;
}

.copy-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--primary-color);
}

/* Animations */
@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes tooltipFade {
    0% { opacity: 0; transform: translate(-50%, 10px); }
    20% { opacity: 1; transform: translate(-50%, 0); }
    80% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, -10px); }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .policy-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .policy-section h3 {
        font-size: 1.5rem;
    }

    .policy-section p {
        font-size: 1rem;
    }

    .contact-email {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 10px;
    }

    .policy-section h3 {
        font-size: 1.3rem;
    }

    .policy-section {
        padding: 15px;
    }

    .policy-section ul li {
        padding-left: 20px;
    }
}

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

/* Service Content */
.service-box h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-box p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #e0e0e0;
}

.service-list li i {
    color: #4A90E2;
    margin-right: 10px;
    font-size: 1.1rem;
}

.service-list li span {
    color: #e0e0e0;
    font-size: 0.95rem;
}

/* Service Button */
.service-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: linear-gradient(135deg, #357ABD, #4A90E2);
    transform: translateX(5px);
    color: #ffffff;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-box {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-box h3 {
        font-size: 1.3rem;
    }
}

/* Hover Effects */
.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-box:hover::before {
    opacity: 1;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: #161b22;
    padding: 80px 0;
}

.why-choose-card {
    background: #0d1117;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-wrapper i {
    font-size: 2rem;
    color: #ffffff;
}

.why-choose-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Russo One', sans-serif;
}

.why-choose-card p {
    color: #a3b3c7;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.section-subtitle {
    color: #a3b3c7;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-card, .why-choose-card {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .why-choose-card {
        padding: 20px;
    }
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.8rem 1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    flex-grow: 1;
    font-family: var(--body-font);
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .services-grid,
    .features-grid,
    .features-slider {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
    top: 0;
        right: -100%;
        height: 100vh;
    width: 100%;
        background-color: var(--white);
        flex-direction: column;
    justify-content: center;
        transition: right 0.3s ease;
        gap: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
    opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .service-card,
    .feature,
    .feature-card {
        padding: 1.5rem;
    }

    .footer-section {
        padding: 0 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
    opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card,
.feature,
.feature-card {
    opacity: 0;
}

/* Card Hover Effects */
.service-card:hover,
.feature:hover,
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Newsletter Form Styling */
.newsletter-form input {
    padding: 0.8rem 1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    flex-grow: 1;
    font-family: var(--body-font);
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Button Styles */
.cta-button,
.newsletter-form button,
button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-family: var(--heading-font);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.cta-button::before,
.newsletter-form button::before,
button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover,
.newsletter-form button:hover,
button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:hover::before,
.newsletter-form button:hover::before,
button:hover::before {
    left: 100%;
}

.cta-button:active,
.newsletter-form button:active,
button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Newsletter Form Button Specific Styles */
.newsletter-form button {
    padding: 0.8rem 1.5rem;
    min-width: 120px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Social Links Interactive Styles */
.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.social-links a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.social-links a:hover::before {
    transform: scale(1);
}

/* Navigation Links Interactive Styles */
.nav-links a {
    position: relative;
    padding: 5px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Card Interactive Styles */
.service-card,
.feature,
.feature-card {
    position: relative;
    cursor: pointer;
}

.service-card::before,
.feature::before,
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    z-index: -1;
}

.service-card:hover::before,
.feature:hover::before,
.feature-card:hover::before {
    opacity: 0.1;
}

/* Responsive Button Styles */
@media (max-width: 768px) {
    .cta-button,
    .newsletter-form button,
    button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cta-button,
    .newsletter-form button,
    button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Ripple Effect */
.cta-button,
.newsletter-form button,
button {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Newsletter Success State */
.newsletter-form button.success {
    background: #4CAF50;
    pointer-events: none;
}

.newsletter-form button.success i {
    margin-right: 8px;
}

/* About Section Styles */
.about-section {
    background-color: #0a1120;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 8px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Image Section */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: #ffffff;
}

.floating-card {
    position: absolute;
    top: 30px;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: #4A90E2;
    font-size: 2rem;
    margin-bottom: 10px;
}

.floating-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.floating-card p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

/* Content Section */
.about-content {
    padding-left: 30px;
}

.highlight-title {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.highlight-title::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    height: 100%;
    width: 4px;
    background: #4A90E2;
    border-radius: 2px;
}

.lead-text {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    color: #4A90E2;
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.stat-number {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #4A90E2;
}

.stat-plus {
    color: #4A90E2;
    font-size: 1.5rem;
    margin-left: 5px;
}

.stat-label {
    color: #e0e0e0;
    font-size: 1rem;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .floating-card {
        display: none;
    }
}

/* Contact Section Styles */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.section-tag {
    display: inline-block;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 8px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

/* Contact Info Cards */
.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #4A90E2;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.info-card:hover .icon-box {
    transform: rotateY(180deg);
}

.icon-box i {
    color: #ffffff;
    font-size: 1.8rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4A90E2;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateX(5px);
    color: #ffffff;
}

/* Social Links */
.social-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
    position: relative;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-5px);
}

/* Tooltip */
.social-icon[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    font-size: 0.8rem;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.social-icon:hover[data-tooltip]:before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4A90E2;
    font-size: 1.1rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 15px 15px 45px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Variables */
:root {
    --primary-color: #4A90E2;
    --secondary-color: #64B5F6;
    --accent-color: #00BCD4;
    --dark-bg: #0A1120;
    --darker-bg: #060911;
    --light-bg: #F8F9FA;
    --text-white: #FFFFFF;
    --text-light: #E0E0E0;
    --text-gray: #B0B0B0;
    --card-bg: #111827;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --light-blue: #F0F8FF;
    --dark-blue: #2C3E50;
    --white: #FFFFFF;
    --gray: #6C7A89;
    --heading-font: 'Orbitron', sans-serif;
    --logo-font: 'Press Start 2P', cursive;
    --title-font: 'Russo One', sans-serif;
    --body-font: 'Arial', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white);
}

p {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Navigation */
nav {
    background-color: var(--white);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--logo-font);
    color: var(--primary-color);
    font-size: 1.5rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--heading-font);
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-blue);
    transition: all 0.3s ease;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('./img/Large-Viewing-Screen-and-Multiple-Speakers-19152.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 17, 32, 0.95) 0%,
        rgba(10, 17, 32, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-subtitle {
    display: inline-block;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 8px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-family: 'Russo One', sans-serif;
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #4A90E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    border: none;
    color: #ffffff;
}

.btn-outline {
    border: 2px solid #4A90E2;
    color: #ffffff;
    background: transparent;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Card */
.hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #4A90E2;
    margin-bottom: 5px;
}

.stat-text {
    color: #ffffff;
    font-size: 1rem;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    display: inline-block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #ffffff;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

.scroll-text {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-card {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 12px 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

/* Sections Common Styles */
section {
    padding: 100px 0;
}

section h2 {
    font-family: var(--title-font);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto;
}

/* Services Section */
.services-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Service Box */
.service-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
}

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

/* Service Content */
.service-box h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-box p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #e0e0e0;
}

.service-list li i {
    color: #4A90E2;
    margin-right: 10px;
    font-size: 1.1rem;
}

.service-list li span {
    color: #e0e0e0;
    font-size: 0.95rem;
}

/* Service Button */
.service-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: linear-gradient(135deg, #357ABD, #4A90E2);
    transform: translateX(5px);
    color: #ffffff;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-box {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-box h3 {
        font-size: 1.3rem;
    }
}

/* Hover Effects */
.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-box:hover::before {
    opacity: 1;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: #161b22;
    padding: 80px 0;
}

.why-choose-card {
    background: #0d1117;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-wrapper i {
    font-size: 2rem;
    color: #ffffff;
}

.why-choose-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Russo One', sans-serif;
}

.why-choose-card p {
    color: #a3b3c7;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.section-subtitle {
    color: #a3b3c7;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-card, .why-choose-card {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .why-choose-card {
        padding: 20px;
    }
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.8rem 1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    flex-grow: 1;
    font-family: var(--body-font);
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .services-grid,
    .features-grid,
    .features-slider {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
    top: 0;
        right: -100%;
        height: 100vh;
    width: 100%;
        background-color: var(--white);
        flex-direction: column;
    justify-content: center;
        transition: right 0.3s ease;
        gap: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
    opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .service-card,
    .feature,
    .feature-card {
        padding: 1.5rem;
    }

    .footer-section {
        padding: 0 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
    opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card,
.feature,
.feature-card {
    opacity: 0;
}

/* Card Hover Effects */
.service-card:hover,
.feature:hover,
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Newsletter Form Styling */
.newsletter-form input {
    padding: 0.8rem 1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    flex-grow: 1;
    font-family: var(--body-font);
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Button Styles */
.cta-button,
.newsletter-form button,
button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-family: var(--heading-font);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.cta-button::before,
.newsletter-form button::before,
button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover,
.newsletter-form button:hover,
button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:hover::before,
.newsletter-form button:hover::before,
button:hover::before {
    left: 100%;
}

.cta-button:active,
.newsletter-form button:active,
button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Newsletter Form Button Specific Styles */
.newsletter-form button {
    padding: 0.8rem 1.5rem;
    min-width: 120px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Social Links Interactive Styles */
.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.social-links a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.social-links a:hover::before {
    transform: scale(1);
}

/* Navigation Links Interactive Styles */
.nav-links a {
    position: relative;
    padding: 5px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Card Interactive Styles */
.service-card,
.feature,
.feature-card {
    position: relative;
    cursor: pointer;
}

.service-card::before,
.feature::before,
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    z-index: -1;
}

.service-card:hover::before,
.feature:hover::before,
.feature-card:hover::before {
    opacity: 0.1;
}

/* Responsive Button Styles */
@media (max-width: 768px) {
    .cta-button,
    .newsletter-form button,
    button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cta-button,
    .newsletter-form button,
    button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Ripple Effect */
.cta-button,
.newsletter-form button,
button {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Newsletter Success State */
.newsletter-form button.success {
    background: #4CAF50;
    pointer-events: none;
}

.newsletter-form button.success i {
    margin-right: 8px;
}

/* About Section Styles */
.about-section {
    background-color: #0a1120;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 8px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Image Section */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: #ffffff;
}

.floating-card {
    position: absolute;
    top: 30px;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: #4A90E2;
    font-size: 2rem;
    margin-bottom: 10px;
}

.floating-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.floating-card p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

/* Content Section */
.about-content {
    padding-left: 30px;
}

.highlight-title {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.highlight-title::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    height: 100%;
    width: 4px;
    background: #4A90E2;
    border-radius: 2px;
}

.lead-text {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    color: #4A90E2;
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.stat-number {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #4A90E2;
}

.stat-plus {
    color: #4A90E2;
    font-size: 1.5rem;
    margin-left: 5px;
}

.stat-label {
    color: #e0e0e0;
    font-size: 1rem;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .floating-card {
        display: none;
    }
}

/* Contact Section Styles */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.section-tag {
    display: inline-block;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 8px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

/* Contact Info Cards */
.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #4A90E2;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.info-card:hover .icon-box {
    transform: rotateY(180deg);
}

.icon-box i {
    color: #ffffff;
    font-size: 1.8rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4A90E2;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateX(5px);
    color: #ffffff;
}

/* Social Links */
.social-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
    position: relative;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-5px);
}

/* Tooltip */
.social-icon[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    font-size: 0.8rem;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.social-icon:hover[data-tooltip]:before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4A90E2;
    font-size: 1.1rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 15px 15px 45px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: url('images/contact-bg.jpg') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 17, 32, 0.9), rgba(74, 144, 226, 0.7));
}

.hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-family: 'Russo One', sans-serif;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

/* Breadcrumb Styles */
.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
}

.breadcrumb-custom a {
    color: #4A90E2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-custom a:hover {
    color: #ffffff;
    transform: scale(1.05);
}

/* Form Styles */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4A90E2, transparent);
    animation: borderFlow 2s linear infinite;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 15px 15px 45px;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Updated Placeholder Styles */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.form-control:focus::placeholder {
    color: rgba(255, 255, 255, 0.6);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* Input Icons Animation */
.input-icon {
    color: #4A90E2;
    animation: iconPulse 2s infinite;
}

/* Interactive Button */
.submit-btn {
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 5px #4A90E2, 0 0 10px #4A90E2, 0 0 15px #4A90E2;
    }
    to {
        text-shadow: 0 0 10px #4A90E2, 0 0 20px #4A90E2, 0 0 30px #4A90E2;
    }
}

@keyframes borderFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Success Message Animation */
.success-message {
    background: rgba(10, 17, 32, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.success-message.show {
    transform: translateY(0);
    opacity: 1;
}

/* Info Card Hover Effects */
.info-card {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: url('images/contact-bg.jpg') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 17, 32, 0.9), rgba(74, 144, 226, 0.7));
}

.hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-family: 'Russo One', sans-serif;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

/* Breadcrumb Styles */
.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
}

.breadcrumb-custom a {
    color: #4A90E2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-custom a:hover {
    color: #ffffff;
    transform: scale(1.05);
}

/* Form Styles */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4A90E2, transparent);
    animation: borderFlow 2s linear infinite;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 15px 15px 45px;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Updated Placeholder Styles */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.form-control:focus::placeholder {
    color: rgba(255, 255, 255, 0.6);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* Input Icons Animation */
.input-icon {
    color: #4A90E2;
    animation: iconPulse 2s infinite;
}

/* Interactive Button */
.submit-btn {
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 5px #4A90E2, 0 0 10px #4A90E2, 0 0 15px #4A90E2;
    }
    to {
        text-shadow: 0 0 10px #4A90E2, 0 0 20px #4A90E2, 0 0 30px #4A90E2;
    }
}

@keyframes borderFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Success Message Animation */
.success-message {
    background: rgba(10, 17, 32, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.success-message.show {
    transform: translateY(0);
    opacity: 1;
}

/* Info Card Hover Effects */
.info-card {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;

/* Variables */
:root {
    --primary-color: #4A90E2;
    --secondary-color: #64B5F6;
    --accent-color: #00BCD4;
    --dark-bg: #0A1120;
    --darker-bg: #060911;
    --light-bg: #F8F9FA;
    --text-white: #FFFFFF;
    --text-light: #E0E0E0;
    --text-gray: #B0B0B0;
    --card-bg: #111827;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --light-blue: #F0F8FF;
    --dark-blue: #2C3E50;
    --white: #FFFFFF;
    --gray: #6C7A89;
    --heading-font: 'Orbitron', sans-serif;
    --logo-font: 'Press Start 2P', cursive;
    --title-font: 'Russo One', sans-serif;
    --body-font: 'Arial', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white);
}

p {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Navigation */
nav {
    background-color: var(--white);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--logo-font);
    color: var(--primary-color);
    font-size: 1.5rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--heading-font);
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-blue);
    transition: all 0.3s ease;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('./img/Large-Viewing-Screen-and-Multiple-Speakers-19152.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 17, 32, 0.95) 0%,
        rgba(10, 17, 32, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-subtitle {
    display: inline-block;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 8px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-family: 'Russo One', sans-serif;
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #4A90E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    border: none;
    color: #ffffff;
}

.btn-outline {
    border: 2px solid #4A90E2;
    color: #ffffff;
    background: transparent;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Card */
.hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #4A90E2;
    margin-bottom: 5px;
}

.stat-text {
    color: #ffffff;
    font-size: 1rem;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    display: inline-block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #ffffff;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

.scroll-text {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-card {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 12px 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

/* Sections Common Styles */
section {
    padding: 100px 0;
}

section h2 {
    font-family: var(--title-font);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto;
}

/* Services Section */
.services-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Service Box */
.service-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
}

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

/* Service Content */
.service-box h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-box p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #e0e0e0;
}

.service-list li i {
    color: #4A90E2;
    margin-right: 10px;
    font-size: 1.1rem;
}

.service-list li span {
    color: #e0e0e0;
    font-size: 0.95rem;
}

/* Service Button */
.service-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: linear-gradient(135deg, #357ABD, #4A90E2);
    transform: translateX(5px);
    color: #ffffff;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-box {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-box h3 {
        font-size: 1.3rem;
    }
}

/* Hover Effects */
.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-box:hover::before {
    opacity: 1;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: #161b22;
    padding: 80px 0;
}

.why-choose-card {
    background: #0d1117;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-wrapper i {
    font-size: 2rem;
    color: #ffffff;
}

.why-choose-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Russo One', sans-serif;
}

.why-choose-card p {
    color: #a3b3c7;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.section-subtitle {
    color: #a3b3c7;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-card, .why-choose-card {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .why-choose-card {
        padding: 20px;
    }
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.8rem 1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    flex-grow: 1;
    font-family: var(--body-font);
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .services-grid,
    .features-grid,
    .features-slider {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
    top: 0;
        right: -100%;
        height: 100vh;
    width: 100%;
        background-color: var(--white);
        flex-direction: column;
    justify-content: center;
        transition: right 0.3s ease;
        gap: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
    opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .service-card,
    .feature,
    .feature-card {
        padding: 1.5rem;
    }

    .footer-section {
        padding: 0 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
    opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card,
.feature,
.feature-card {
    opacity: 0;
}

/* Card Hover Effects */
.service-card:hover,
.feature:hover,
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Newsletter Form Styling */
.newsletter-form input {
    padding: 0.8rem 1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    flex-grow: 1;
    font-family: var(--body-font);
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Button Styles */
.cta-button,
.newsletter-form button,
button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-family: var(--heading-font);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.cta-button::before,
.newsletter-form button::before,
button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover,
.newsletter-form button:hover,
button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:hover::before,
.newsletter-form button:hover::before,
button:hover::before {
    left: 100%;
}

.cta-button:active,
.newsletter-form button:active,
button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Newsletter Form Button Specific Styles */
.newsletter-form button {
    padding: 0.8rem 1.5rem;
    min-width: 120px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Social Links Interactive Styles */
.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.social-links a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.social-links a:hover::before {
    transform: scale(1);
}

/* Navigation Links Interactive Styles */
.nav-links a {
    position: relative;
    padding: 5px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Card Interactive Styles */
.service-card,
.feature,
.feature-card {
    position: relative;
    cursor: pointer;
}

.service-card::before,
.feature::before,
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    z-index: -1;
}

.service-card:hover::before,
.feature:hover::before,
.feature-card:hover::before {
    opacity: 0.1;
}

/* Responsive Button Styles */
@media (max-width: 768px) {
    .cta-button,
    .newsletter-form button,
    button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cta-button,
    .newsletter-form button,
    button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Ripple Effect */
.cta-button,
.newsletter-form button,
button {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Newsletter Success State */
.newsletter-form button.success {
    background: #4CAF50;
    pointer-events: none;
}

.newsletter-form button.success i {
    margin-right: 8px;
}

/* About Section Styles */
.about-section {
    background-color: #0a1120;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 8px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Image Section */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: #ffffff;
}

.floating-card {
    position: absolute;
    top: 30px;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: #4A90E2;
    font-size: 2rem;
    margin-bottom: 10px;
}

.floating-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.floating-card p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

/* Content Section */
.about-content {
    padding-left: 30px;
}

.highlight-title {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.highlight-title::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    height: 100%;
    width: 4px;
    background: #4A90E2;
    border-radius: 2px;
}

.lead-text {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    color: #4A90E2;
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.stat-number {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #4A90E2;
}

.stat-plus {
    color: #4A90E2;
    font-size: 1.5rem;
    margin-left: 5px;
}

.stat-label {
    color: #e0e0e0;
    font-size: 1rem;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .floating-card {
        display: none;
    }
}

/* Contact Section Styles */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.section-tag {
    display: inline-block;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 8px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

/* Contact Info Cards */
.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #4A90E2;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.info-card:hover .icon-box {
    transform: rotateY(180deg);
}

.icon-box i {
    color: #ffffff;
    font-size: 1.8rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4A90E2;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateX(5px);
    color: #ffffff;
}

/* Social Links */
.social-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
    position: relative;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-5px);
}

/* Tooltip */
.social-icon[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    font-size: 0.8rem;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.social-icon:hover[data-tooltip]:before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4A90E2;
    font-size: 1.1rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 15px 15px 45px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
/* Variables */
:root {
    --primary-color: #4A90E2;
    --secondary-color: #64B5F6;
    --accent-color: #00BCD4;
    --dark-bg: #0A1120;
    --darker-bg: #060911;
    --light-bg: #F8F9FA;
    --text-white: #FFFFFF;
    --text-light: #E0E0E0;
    --text-gray: #B0B0B0;
    --card-bg: #111827;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --light-blue: #F0F8FF;
    --dark-blue: #2C3E50;
    --white: #FFFFFF;
    --gray: #6C7A89;
    --heading-font: 'Orbitron', sans-serif;
    --logo-font: 'Press Start 2P', cursive;
    --title-font: 'Russo One', sans-serif;
    --body-font: 'Arial', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white);
}

p {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Navigation */
nav {
    background-color: var(--white);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--logo-font);
    color: var(--primary-color);
    font-size: 1.5rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--heading-font);
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-blue);
    transition: all 0.3s ease;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('./img/Large-Viewing-Screen-and-Multiple-Speakers-19152.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 17, 32, 0.95) 0%,
        rgba(10, 17, 32, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-subtitle {
    display: inline-block;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 8px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-family: 'Russo One', sans-serif;
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #4A90E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    border: none;
    color: #ffffff;
}

.btn-outline {
    border: 2px solid #4A90E2;
    color: #ffffff;
    background: transparent;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Card */
.hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #4A90E2;
    margin-bottom: 5px;
}

.stat-text {
    color: #ffffff;
    font-size: 1rem;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    display: inline-block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #ffffff;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

.scroll-text {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-card {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 12px 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

/* Sections Common Styles */
section {
    padding: 100px 0;
}

section h2 {
    font-family: var(--title-font);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto;
}

/* Services Section */
.services-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Service Box */
.service-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
}

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

/* Service Content */
.service-box h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-box p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #e0e0e0;
}

.service-list li i {
    color: #4A90E2;
    margin-right: 10px;
    font-size: 1.1rem;
}

.service-list li span {
    color: #e0e0e0;
    font-size: 0.95rem;
}

/* Service Button */
.service-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: linear-gradient(135deg, #357ABD, #4A90E2);
    transform: translateX(5px);
    color: #ffffff;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-box {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-box h3 {
        font-size: 1.3rem;
    }
}

/* Hover Effects */
.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-box:hover::before {
    opacity: 1;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: #161b22;
    padding: 80px 0;
}

.why-choose-card {
    background: #0d1117;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-wrapper i {
    font-size: 2rem;
    color: #ffffff;
}

.why-choose-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Russo One', sans-serif;
}

.why-choose-card p {
    color: #a3b3c7;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.section-subtitle {
    color: #a3b3c7;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-card, .why-choose-card {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .why-choose-card {
        padding: 20px;
    }
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.8rem 1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    flex-grow: 1;
    font-family: var(--body-font);
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .services-grid,
    .features-grid,
    .features-slider {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
    top: 0;
        right: -100%;
        height: 100vh;
    width: 100%;
        background-color: var(--white);
        flex-direction: column;
    justify-content: center;
        transition: right 0.3s ease;
        gap: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
    opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .service-card,
    .feature,
    .feature-card {
        padding: 1.5rem;
    }

    .footer-section {
        padding: 0 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
    opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card,
.feature,
.feature-card {
    opacity: 0;
}

/* Card Hover Effects */
.service-card:hover,
.feature:hover,
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Newsletter Form Styling */
.newsletter-form input {
    padding: 0.8rem 1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    flex-grow: 1;
    font-family: var(--body-font);
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Button Styles */
.cta-button,
.newsletter-form button,
button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-family: var(--heading-font);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.cta-button::before,
.newsletter-form button::before,
button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover,
.newsletter-form button:hover,
button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:hover::before,
.newsletter-form button:hover::before,
button:hover::before {
    left: 100%;
}

.cta-button:active,
.newsletter-form button:active,
button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Newsletter Form Button Specific Styles */
.newsletter-form button {
    padding: 0.8rem 1.5rem;
    min-width: 120px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Social Links Interactive Styles */
.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.social-links a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.social-links a:hover::before {
    transform: scale(1);
}

/* Navigation Links Interactive Styles */
.nav-links a {
    position: relative;
    padding: 5px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Card Interactive Styles */
.service-card,
.feature,
.feature-card {
    position: relative;
    cursor: pointer;
}

.service-card::before,
.feature::before,
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    z-index: -1;
}

.service-card:hover::before,
.feature:hover::before,
.feature-card:hover::before {
    opacity: 0.1;
}

/* Responsive Button Styles */
@media (max-width: 768px) {
    .cta-button,
    .newsletter-form button,
    button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cta-button,
    .newsletter-form button,
    button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Ripple Effect */
.cta-button,
.newsletter-form button,
button {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Newsletter Success State */
.newsletter-form button.success {
    background: #4CAF50;
    pointer-events: none;
}

.newsletter-form button.success i {
    margin-right: 8px;
}

/* About Section Styles */
.about-section {
    background-color: #0a1120;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 8px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Image Section */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: #ffffff;
}

.floating-card {
    position: absolute;
    top: 30px;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: #4A90E2;
    font-size: 2rem;
    margin-bottom: 10px;
}

.floating-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.floating-card p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

/* Content Section */
.about-content {
    padding-left: 30px;
}

.highlight-title {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.highlight-title::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    height: 100%;
    width: 4px;
    background: #4A90E2;
    border-radius: 2px;
}

.lead-text {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    color: #4A90E2;
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.stat-number {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #4A90E2;
}

.stat-plus {
    color: #4A90E2;
    font-size: 1.5rem;
    margin-left: 5px;
}

.stat-label {
    color: #e0e0e0;
    font-size: 1rem;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .floating-card {
        display: none;
    }
}

/* Contact Section Styles */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.section-tag {
    display: inline-block;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 8px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

/* Contact Info Cards */
.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #4A90E2;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.info-card:hover .icon-box {
    transform: rotateY(180deg);
}

.icon-box i {
    color: #ffffff;
    font-size: 1.8rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4A90E2;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateX(5px);
    color: #ffffff;
}

/* Social Links */
.social-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
    position: relative;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-5px);
}

/* Tooltip */
.social-icon[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    font-size: 0.8rem;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.social-icon:hover[data-tooltip]:before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4A90E2;
    font-size: 1.1rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 15px 15px 45px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
/* Variables */
:root {
    --primary-color: #4A90E2;
    --secondary-color: #64B5F6;
    --accent-color: #00BCD4;
    --dark-bg: #0A1120;
    --darker-bg: #060911;
    --light-bg: #F8F9FA;
    --text-white: #FFFFFF;
    --text-light: #E0E0E0;
    --text-gray: #B0B0B0;
    --card-bg: #111827;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --light-blue: #F0F8FF;
    --dark-blue: #2C3E50;
    --white: #FFFFFF;
    --gray: #6C7A89;
    --heading-font: 'Orbitron', sans-serif;
    --logo-font: 'Press Start 2P', cursive;
    --title-font: 'Russo One', sans-serif;
    --body-font: 'Arial', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white);
}

p {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Navigation */
nav {
    background-color: var(--white);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--logo-font);
    color: var(--primary-color);
    font-size: 1.5rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--heading-font);
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-blue);
    transition: all 0.3s ease;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('./img/Large-Viewing-Screen-and-Multiple-Speakers-19152.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 17, 32, 0.95) 0%,
        rgba(10, 17, 32, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-subtitle {
    display: inline-block;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 8px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-family: 'Russo One', sans-serif;
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #4A90E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    border: none;
    color: #ffffff;
}

.btn-outline {
    border: 2px solid #4A90E2;
    color: #ffffff;
    background: transparent;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Hero Card */
.hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #4A90E2;
    margin-bottom: 5px;
}

.stat-text {
    color: #ffffff;
    font-size: 1rem;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    display: inline-block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #ffffff;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

.scroll-text {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-card {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 12px 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

/* Sections Common Styles */
section {
    padding: 100px 0;
}

section h2 {
    font-family: var(--title-font);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto;
}

/* Services Section */
.services-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Service Box */
.service-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
}

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

/* Service Content */
.service-box h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-box p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #e0e0e0;
}

.service-list li i {
    color: #4A90E2;
    margin-right: 10px;
    font-size: 1.1rem;
}

.service-list li span {
    color: #e0e0e0;
    font-size: 0.95rem;
}

/* Service Button */
.service-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: linear-gradient(135deg, #357ABD, #4A90E2);
    transform: translateX(5px);
    color: #ffffff;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-box {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-box h3 {
        font-size: 1.3rem;
    }
}

/* Hover Effects */
.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-box:hover::before {
    opacity: 1;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: #161b22;
    padding: 80px 0;
}

.why-choose-card {
    background: #0d1117;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-wrapper i {
    font-size: 2rem;
    color: #ffffff;
}

.why-choose-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Russo One', sans-serif;
}

.why-choose-card p {
    color: #a3b3c7;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.section-subtitle {
    color: #a3b3c7;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-card, .why-choose-card {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .why-choose-card {
        padding: 20px;
    }
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.8rem 1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    flex-grow: 1;
    font-family: var(--body-font);
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .services-grid,
    .features-grid,
    .features-slider {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
    top: 0;
        right: -100%;
        height: 100vh;
    width: 100%;
        background-color: var(--white);
        flex-direction: column;
    justify-content: center;
        transition: right 0.3s ease;
        gap: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
    opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .service-card,
    .feature,
    .feature-card {
        padding: 1.5rem;
    }

    .footer-section {
        padding: 0 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
    opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card,
.feature,
.feature-card {
    opacity: 0;
}

/* Card Hover Effects */
.service-card:hover,
.feature:hover,
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Newsletter Form Styling */
.newsletter-form input {
    padding: 0.8rem 1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    flex-grow: 1;
    font-family: var(--body-font);
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Button Styles */
.cta-button,
.newsletter-form button,
button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-family: var(--heading-font);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.cta-button::before,
.newsletter-form button::before,
button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover,
.newsletter-form button:hover,
button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:hover::before,
.newsletter-form button:hover::before,
button:hover::before {
    left: 100%;
}

.cta-button:active,
.newsletter-form button:active,
button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Newsletter Form Button Specific Styles */
.newsletter-form button {
    padding: 0.8rem 1.5rem;
    min-width: 120px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Social Links Interactive Styles */
.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.social-links a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.social-links a:hover::before {
    transform: scale(1);
}

/* Navigation Links Interactive Styles */
.nav-links a {
    position: relative;
    padding: 5px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Card Interactive Styles */
.service-card,
.feature,
.feature-card {
    position: relative;
    cursor: pointer;
}

.service-card::before,
.feature::before,
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    z-index: -1;
}

.service-card:hover::before,
.feature:hover::before,
.feature-card:hover::before {
    opacity: 0.1;
}

/* Responsive Button Styles */
@media (max-width: 768px) {
    .cta-button,
    .newsletter-form button,
    button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cta-button,
    .newsletter-form button,
    button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Ripple Effect */
.cta-button,
.newsletter-form button,
button {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Newsletter Success State */
.newsletter-form button.success {
    background: #4CAF50;
    pointer-events: none;
}

.newsletter-form button.success i {
    margin-right: 8px;
}

/* About Section Styles */
.about-section {
    background-color: #0a1120;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 8px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Image Section */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: #ffffff;
}

.floating-card {
    position: absolute;
    top: 30px;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: #4A90E2;
    font-size: 2rem;
    margin-bottom: 10px;
}

.floating-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.floating-card p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

/* Content Section */
.about-content {
    padding-left: 30px;
}

.highlight-title {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.highlight-title::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    height: 100%;
    width: 4px;
    background: #4A90E2;
    border-radius: 2px;
}

.lead-text {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    color: #4A90E2;
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.stat-number {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #4A90E2;
}

.stat-plus {
    color: #4A90E2;
    font-size: 1.5rem;
    margin-left: 5px;
}

.stat-label {
    color: #e0e0e0;
    font-size: 1rem;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .floating-card {
        display: none;
    }
}

/* Contact Section Styles */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.section-tag {
    display: inline-block;
    background: linear-gradient(45deg, #4A90E2, #357ABD);
    padding: 8px 20px;
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

/* Contact Info Cards */
.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #4A90E2;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.info-card:hover .icon-box {
    transform: rotateY(180deg);
}

.icon-box i {
    color: #ffffff;
    font-size: 1.8rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4A90E2;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateX(5px);
    color: #ffffff;
}

/* Social Links */
.social-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
    position: relative;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-5px);
}

/* Tooltip */
.social-icon[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    font-size: 0.8rem;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.social-icon:hover[data-tooltip]:before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4A90E2;
    font-size: 1.1rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 15px 15px 45px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(53, 122, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tools-section .section-header h2 {
        font-size: 2rem;
    }

    .tool-card {
        margin-bottom: 20px;
    }

    .tool-icon {
        width: 80px;
        height: 80px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes toolCardHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.tool-card:hover {
    animation: toolCardHover 0.3s ease forwards;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(rgba(10, 17, 32, 0.8), rgba(10, 17, 32, 0.8)),
                url('images/contact-bg.jpg') center/cover;
    padding: 150px 0 80px;
}

.contact-hero .hero-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Russo One', sans-serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a, 
.breadcrumb-custom span {
    color: #e0e0e0;
    font-size: 1rem;
}

.breadcrumb-custom i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: #0a1120;
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.5rem;
}

.info-card h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

textarea.form-control {
    padding-left: 15px;
}

textarea.form-control + .input-icon {
    top: 25px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Success Message */
.success-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 32, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
}

.success-content i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Global Styles */
body {
    font-family: 'Exo 2', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

.section {
    padding: 100px 0;
}

/* Navbar Styles */
.navbar {
    background: rgba(10, 17, 32, 0.95);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-family: 'Russo One', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: 'Chakra Petch', sans-serif;
    color: var(--text-white) !important;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    padding: 8px 25px !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 32, 0.9), rgba(10, 17, 32, 0.9)),
                url('hero-bg.jpg') center/cover;
    position: relative;
}

.hero-content {
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* About Section */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: var(--primary-color);
    margin: 0 15px;
}

.section-divider i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 20px 0;
    font-family: 'Russo One', sans-serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-family: 'Chakra Petch', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    font-family: 'Chakra Petch', sans-serif;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Development Tools Section */
.tools-section {
    background-color: #0a1120;
    padding: 80px 0;
    position: relative;
}

/* Section Header */
.tools-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-section .section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-section .section-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tool Cards */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Tool Icon */
.tool-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
}

.tool-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Tool Content */
.tool-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tool-card p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tool Features */
.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: #4A90E2;
    margin: 0 15px;
}

.section-divider i {
    color: #4A90E2;
    font-size: 1.5rem;
}

/* Hover Effects */
.tool-card::before {
    content: '';
   