/*=============================================
   FICKLE DEVELOPMENT TECHNOLOGY
   Main Stylesheet - Premium UI/UX Design
   Colors: Orange (#FF6600), White (#FFFFFF), Black (#000000)
   =============================================*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Custom Properties */
:root {
    /* Primary Colors */
    --primary-orange: #FF6600;
    --primary-orange-light: #FF8533;
    --primary-orange-dark: #E55A00;
    --primary-orange-rgb: 255, 102, 0;
    
    /* Neutral Colors */
    --primary-white: #FFFFFF;
    --primary-black: #000000;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #666666;
    --text-dark: #333333;
    --text-light: #888888;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6600 0%, #FF8533 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    --gradient-light: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-orange: 0 5px 15px rgba(255, 102, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(255, 102, 0, 0.4);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--primary-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background: var(--primary-orange);
    color: var(--primary-white);
}

::-moz-selection {
    background: var(--primary-orange);
    color: var(--primary-white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange-dark);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-orange-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* Utility Classes */
.text-orange { color: var(--primary-orange) !important; }
.text-white { color: var(--primary-white) !important; }
.text-black { color: var(--primary-black) !important; }
.text-dark { color: var(--text-dark) !important; }
.text-light { color: var(--text-light) !important; }

.bg-orange { background: var(--primary-orange) !important; }
.bg-black { background: var(--primary-black) !important; }
.bg-white { background: var(--primary-white) !important; }
.bg-light { background: var(--light-gray) !important; }
.bg-dark { background: var(--text-dark) !important; }

.bg-gradient-orange { background: var(--gradient-primary) !important; }
.bg-gradient-dark { background: var(--gradient-dark) !important; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-orange { box-shadow: var(--shadow-orange); }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }


/* =============================================
   COMPONENTS
   ============================================= */

/* Buttons */
.btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
}

.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: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--primary-white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.4);
    background: var(--gradient-primary);
    color: var(--primary-white);
}

.btn-outline-orange {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    background: transparent;
}

.btn-outline-orange:hover {
    background: var(--primary-orange);
    color: var(--primary-white);
    transform: translateY(-3px);
}

.btn-outline-light {
    border: 2px solid var(--primary-white);
    color: var(--primary-white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--primary-white);
    color: var(--primary-orange);
}

.btn-dark {
    background: var(--primary-black);
    border: none;
    color: var(--primary-white);
}

.btn-dark:hover {
    background: var(--text-dark);
    transform: translateY(-3px);
}

.btn-light {
    background: var(--primary-white);
    border: none;
    color: var(--primary-black);
}

.btn-light:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}


/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.glass-effect-dark {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


/* Section Styles */
section {
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 60px;
}

.section-header .subtitle {
    display: inline-block;
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    margin-bottom: 15px;
    position: relative;
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}


/* =============================================
   NAVIGATION
   ============================================= */

/* Top Bar */
.top-bar {
    font-size: 13px;
    position: relative;
    z-index: 1030;
}

.top-bar a {
    transition: var(--transition-base);
}

.top-bar a:hover {
    color: var(--primary-orange) !important;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    transition: var(--transition-base);
    z-index: 1020;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-white) !important;
}

.navbar-brand i {
    color: var(--primary-orange);
}

.navbar-brand span {
    color: var(--primary-orange);
}

.nav-link {
    color: var(--primary-white) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    padding: 8px 0 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-orange) !important;
}

.nav-link.active {
    color: var(--primary-orange) !important;
}

/* Dropdown */
.dropdown-menu {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 10px 0;
}

.dropdown-item {
    color: var(--primary-white);
    padding: 10px 20px;
    transition: var(--transition-base);
}

.dropdown-item:hover {
    background: var(--primary-orange);
    color: var(--primary-white);
}

/* Navbar Toggler */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* =============================================
   HERO SLIDER
   ============================================= */

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.slide-title {
    font-size: 60px;
    font-weight: 800;
    color: var(--primary-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 300;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    color: var(--primary-white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-base);
}

.slider-nav:hover {
    background: var(--primary-orange);
}

.slider-nav.prev { left: 30px; }
.slider-nav.next { right: 30px; }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-base);
}

.dot.active {
    background: var(--primary-orange);
    transform: scale(1.3);
}


/* =============================================
   WELCOME SECTION
   ============================================= */

.welcome-section {
    padding: 100px 0;
}

.tech-badge .badge-orange {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.tech-features {
    list-style: none;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-item i {
    font-size: 20px;
}

.tech-image-wrapper {
    position: relative;
}

.tech-image-wrapper img {
    border-radius: var(--radius-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: var(--primary-white);
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-orange);
    animation: float 3s ease-in-out infinite;
}

.experience-badge .years {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 500;
}


/* =============================================
   SERVICES SECTION
   ============================================= */

.services-section {
    padding: 100px 0;
}

.service-card {
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--primary-orange);
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: var(--primary-white);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-link {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link i {
    transition: var(--transition-base);
    margin-left: 5px;
}

.service-link:hover i {
    transform: translateX(5px);
}


/* =============================================
   WHY CHOOSE US
   ============================================= */

.why-choose-us {
    padding: 100px 0;
}

.choose-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.choose-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-orange);
    transition: var(--transition-base);
}

.choose-item:hover .choose-icon {
    background: var(--primary-orange);
    color: var(--primary-white);
    transform: rotate(10deg) scale(1.1);
}

.choose-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.choose-text p {
    font-size: 14px;
    color: var(--text-light);
}

/* Stats */
.tech-stats .stat-card {
    background: var(--gradient-light);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-base);
}

.tech-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}


/* =============================================
   PROJECTS SECTION
   ============================================= */

.featured-projects {
    padding: 100px 0;
}

.project-card {
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    transition: var(--transition-slow);
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 25px;
}

.project-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.project-tech {
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}


/* =============================================
   BLOG SECTION
   ============================================= */

.blog-section {
    padding: 100px 0;
}

.blog-card {
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    transition: var(--transition-slow);
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-orange);
    color: var(--primary-white);
    padding: 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    line-height: 1;
}

.blog-date span {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.blog-date small {
    font-size: 11px;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-meta span {
    margin-right: 15px;
}

.blog-meta i {
    color: var(--primary-orange);
    margin-right: 5px;
}

.blog-content h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.blog-content h4 a {
    color: var(--primary-black);
}

.blog-content h4 a:hover {
    color: var(--primary-orange);
}

.read-more {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.read-more i {
    transition: var(--transition-base);
    margin-left: 5px;
}

.read-more:hover i {
    transform: translateX(5px);
}


/* =============================================
   CTA SECTION
   ============================================= */

.cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}


/* =============================================
   FOOTER
   ============================================= */

.footer-section {
    position: relative;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
}

.widget-title {
    color: var(--primary-white);
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
    font-size: 18px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-links i {
    font-size: 10px;
    margin-right: 8px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--primary-orange);
    color: var(--primary-white);
    transform: translateY(-3px);
}

.footer-bottom {
    font-size: 14px;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--primary-orange);
}


/* =============================================
   BACK TO TOP & WHATSAPP FLOAT
   ============================================= */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: var(--primary-white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-orange);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-5px);
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--primary-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
    transition: var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--primary-white);
}


/* =============================================
   PAGE HEADER
   ============================================= */

.page-header {
    padding: 180px 0 100px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 100%);
}

.about-header { background-image: url('../images/about-bg.jpg'); }
.services-header { background-image: url('../images/services-bg.jpg'); }
.software-header { background-image: url('../images/software-bg.jpg'); }
.blog-header { background-image: url('../images/blog-bg.jpg'); }

.page-title {
    font-size: 48px;
    color: var(--primary-white);
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary-orange);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}


/* =============================================
   ABOUT PAGE SPECIFIC
   ============================================= */

.experience-badge-about {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--gradient-primary);
    color: var(--primary-white);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-orange);
}

.experience-badge-about .years {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.mission-card, .vision-card {
    transition: var(--transition-base);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-list, .vision-list {
    list-style: none;
    padding: 0;
}

.mission-list li, .vision-list li {
    margin-bottom: 8px;
}

.mission-list i, .vision-list i {
    margin-right: 8px;
}

.value-card {
    padding: 40px 25px;
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-orange);
    transition: var(--transition-base);
}

.value-card:hover .value-icon {
    background: var(--gradient-primary);
    color: var(--primary-white);
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--primary-orange);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding: 0 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-orange);
    border-radius: var(--radius-full);
    border: 4px solid var(--primary-white);
    box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    background: var(--primary-white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.timeline-date {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--primary-white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}


/* =============================================
   SERVICES PAGE SPECIFIC
   ============================================= */

.service-detailed-item {
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.service-image-wrapper {
    position: relative;
}

.service-image-wrapper img {
    border-radius: var(--radius-lg);
}

.service-icon-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--primary-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-orange);
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    margin-bottom: 10px;
}

.features-list i {
    margin-right: 10px;
}


/* =============================================
   SOFTWARE PAGE SPECIFIC
   ============================================= */

.software-project-card {
    transition: var(--transition-base);
}

.software-project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.project-thumbnail {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.software-project-card:hover .project-thumbnail {
    transform: scale(1.1);
}

.project-status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.project-status-badge.completed {
    background: #28a745;
    color: white;
}

.project-status-badge.ongoing {
    background: #ffc107;
    color: black;
}

.project-status-badge.maintenance {
    background: #6c757d;
    color: white;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.tech-tags {
    margin-top: 8px;
}

.tech-tag {
    display: inline-block;
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary-orange);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.project-actions {
    display: flex;
    gap: 10px;
}

.filter-btn {
    display: inline-block;
    padding: 10px 25px;
    margin: 5px;
    border-radius: 50px;
    background: var(--primary-white);
    color: var(--text-dark);
    font-weight: 500;
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-orange);
    color: var(--primary-white);
    border-color: var(--primary-orange);
}

.admin-credentials input {
    background: white !important;
}


/* =============================================
   BLOG PAGE SPECIFIC
   ============================================= */

.blog-post-card {
    transition: var(--transition-base);
    height: 100%;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.post-image-wrapper {
    position: relative;
    overflow: hidden;
}

.post-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-post-card:hover .post-image {
    transform: scale(1.1);
}

.post-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.post-tags {
    margin-bottom: 10px;
}

.tag {
    display: inline-block;
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary-orange);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    margin-right: 5px;
}

.post-title a {
    color: var(--primary-black);
}

.post-title a:hover {
    color: var(--primary-orange);
}

.read-more-link {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.read-more-link i {
    transition: var(--transition-base);
}

.read-more-link:hover i {
    transform: translateX(5px);
}

/* Blog Sidebar */
.blog-sidebar .sidebar-widget {
    background: var(--primary-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.widget-title {
    color: var(--primary-black);
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 18px;
}

.widget-title::after {
    background: var(--primary-orange);
}

.category-list, .recent-posts-list, .popular-posts-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text-dark);
    padding: 10px 15px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.category-list a.active,
.category-list a:hover {
    background: var(--primary-orange);
    color: white;
}

.count {
    background: rgba(0,0,0,0.1);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 12px;
}

.recent-post-item, .popular-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--medium-gray);
}

.recent-post-item:last-child, .popular-post-item:last-child {
    border-bottom: none;
}

.post-thumb img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.post-info h6 {
    font-size: 14px;
    margin-bottom: 5px;
}

.post-info h6 a {
    color: var(--text-dark);
}

.post-info h6 a:hover {
    color: var(--primary-orange);
}

.post-date, .post-views {
    font-size: 12px;
    color: var(--text-light);
}

/* Pagination */
.pagination .page-link {
    color: var(--primary-orange);
    border: 1px solid var(--medium-gray);
    margin: 0 5px;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.pagination .page-item.active .page-link {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

.pagination .page-link:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary-orange);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 13px;
    transition: var(--transition-base);
}

.tag-link:hover {
    background: var(--primary-orange);
    color: white;
}


/* =============================================
   NEWSLETTER
   ============================================= */

.newsletter-wrapper {
    background: var(--gradient-primary);
    color: white;
}

.newsletter-wrapper p {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form .form-control {
    border: none;
    padding: 12px 20px;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
}


/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.animated {
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

.fadeInDown { animation-name: fadeInDown; }
.fadeInUp { animation-name: fadeInUp; }
.fadeInLeft { animation-name: fadeInLeft; }
.fadeInRight { animation-name: fadeInRight; }
.zoomIn { animation-name: zoomIn; }


/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 1200px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .slide-title { font-size: 48px; }
}

@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: var(--radius-md);
    }
    
    .slide-title { font-size: 36px; }
    .slide-subtitle { font-size: 16px; }
    
    .hero-slider { height: 70vh; min-height: 500px; }
    
    .timeline::before { left: 0; }
    .timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 40px; }
    .timeline-item:nth-child(odd) .timeline-dot { left: -10px; right: auto; }
    .timeline-item:nth-child(even) .timeline-dot { left: -10px; }
    
    .experience-badge-about { left: 0; bottom: -20px; }
    
    .footer-bottom-links { justify-content: center; margin-top: 10px; }
}

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    
    .slide-title { font-size: 28px; }
    .hero-slider { height: 60vh; min-height: 400px; }
    
    .page-header { padding: 140px 0 60px; }
    .page-title { font-size: 32px; }
    
    .slider-nav { width: 40px; height: 40px; font-size: 16px; }
    .slider-nav.prev { left: 15px; }
    .slider-nav.next { right: 15px; }
    
    .service-detailed-item { padding: 25px; }
    
    .back-to-top { bottom: 20px; right: 20px; }
    .whatsapp-float { bottom: 80px; right: 20px; }
}

@media (max-width: 576px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    
    .slide-title { font-size: 22px; }
    .slide-subtitle { font-size: 14px; }
    
    .btn { padding: 10px 20px; font-size: 13px; }
    .btn-lg { padding: 12px 25px; font-size: 14px; }
    
    .section-header { margin-bottom: 40px; }
    
    .stat-number { font-size: 30px; }
}

/* Print Styles */
@media print {
    .navbar, .footer-section, .whatsapp-float, .back-to-top, .cta-section {
        display: none !important;
    }
    
    body { font-size: 12px; }
    
    .page-header { padding: 20px 0; }
    
    a { text-decoration: underline; }
}