/*
Theme Name: JDL Tech 
Theme URI: https://jdltechsolutions.com
Author: JDL TECH SOLUTIONS
Author URI: https://jdltechsolutions.com
Description: Custom WP theme converted from HTML template
Version: 1.0.0
Text Domain: jdl
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: transparent;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

/* Header */
.site-header {
    background: transparent !important;
    backdrop-filter: none;
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: none;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    width: 100%;
}

.site-header .logo {
    flex: 0 0 auto;
}

.site-header .main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.site-header .main-nav > ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.site-header .mobile-menu-toggle {
    flex: 0 0 auto;
    margin-left: auto;
}

.mobile-menu-btn {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
}

.logo img {
    height: 60px;
    margin-left: 2rem;
}



/* DESKTOP NAVIGATION */
@media (min-width: 1025px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .site-header .main-nav {
        display: flex !important;
        justify-content: flex-end;
    }
    
    .site-header .main-nav > ul {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        gap: 2rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .site-header .main-nav ul li {
        position: relative;
        width: auto !important;
        border-bottom: none !important;
        padding: 0 !important;
    }
    
    .site-header .main-nav .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        background: rgba(0, 0, 0, 0.9);
        display: none;
        z-index: 1000;
        border-radius: 5px;
        padding: 8px 0;
        list-style: none;
    }
    
    .site-header .main-nav li:hover > .sub-menu {
        display: block;
    }
    
    /* Dropdown arrow */
    .site-header .main-nav .menu-item-has-children > a::after {
        content: " ▼";
        font-size: 0.8em;
        margin-left: 0.5em;
    }
    
    .site-header .main-nav .menu-item-has-children:hover > .sub-menu {
        display: block;
    }
    
    .site-header .main-nav .sub-menu li {
        width: 100%;
        border-bottom: none;
        padding: 0;
    }
    
    .site-header .main-nav .sub-menu li a {
        padding: 8px 16px;
        color: #fff;
        display: block;
        white-space: nowrap;
    }
    
    .site-header .main-nav .sub-menu li a:hover {
        background: rgba(255, 107, 107, 0.2);
        color: #ff6b6b;
    }
}

.main-nav a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 800;
    transition: color 0.3s;
    opacity: 1 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.main-nav a:hover {
    color: #ff6b6b;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    min-width: 200px;
    list-style: none;
    padding: 0;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.2rem 0.8rem;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
    white-space: nowrap;
    font-size: 0.9rem;
    line-height: 1.2;
}

.dropdown-menu a:hover {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.dropdown-arrow {
    font-size: 0.7em;
    margin-left: 0.3em;
}

/* Search Toggle */
.search-toggle {
    margin-left: 1rem;
}

.search-icon-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #6c757d;
}

/* Search Container */
.search-container {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    gap: 0.5rem;
    min-width: 300px;
    transition: all 0.3s ease;
    z-index: 1002;
}

.search-container.hidden {
    display: none;
}

.search-container input {
    flex: 1;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
    outline: none;
}

.search-container input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-btn {
    background: #6c757d;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #5a6268;
}

@media (max-width: 1024px) {
    .search-container {
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        min-width: auto;
    }
    .site-header {
        flex-direction: row;
        justify-content: space-between;
    }
    .mobile-menu-toggle {
        display: flex !important;
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
    }
    .site-header .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(44, 62, 80, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
        overflow-y: auto;
    }
    .site-header .main-nav.active {
        left: 0;
    }
    .site-header .main-nav ul {
        flex-direction: column !important;
        padding: 1rem;
        gap: 0;
    }
    .site-header .main-nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.5rem 0;
        width: 100% !important;
    }
    .site-header .main-nav .sub-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: rgba(0, 0, 0, 0.8) !important;
        margin-top: 0.5rem;
        display: none !important;
        overflow: hidden;
        transition: all 0.3s ease;
        padding: 0;
        border-radius: 5px;
    }
    .site-header .main-nav .menu-item-has-children.active .sub-menu {
        display: block !important;
        padding: 0.5rem 0;
    }
    .site-header .main-nav .sub-menu a {
        padding: 0.8rem 2rem !important;
        font-size: 0.9rem;
        display: block;
        color: rgba(255, 255, 255, 0.9) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-decoration: none;
    }
    .site-header .main-nav .sub-menu a:hover {
        background: rgba(255, 107, 107, 0.2) !important;
        color: #ff6b6b !important;
    }
    
    .site-header .main-nav .menu-item-has-children > a::after {
        content: " ▼";
        font-size: 0.8em;
        margin-left: 0.5em;
        transition: transform 0.3s ease;
    }
    .site-header .main-nav .menu-item-has-children.active > a::after {
        transform: rotate(180deg);
    }
}



main {
    margin: 0;
    padding: 0;
    position: relative;
}

@media (max-width: 768px) {
    .site-header {
        padding: 0.25rem 0;
    }
    
    .hero {
        min-height: calc(100vh - 60px);
        padding-top: 60px;
    }
    
    main {
        margin-top: 0;
    }
    
    .logo img {
        height: 50px;
        margin-left: 1rem;
    }
}

/* Blog page header fix */
.blog-hero ~ * .site-header,
.blog-articles .site-header,
body:has(.blog-hero) .site-header,
body:has(.blog-articles) .site-header {
    background: transparent !important;
    backdrop-filter: blur(10px) !important;
}

/* Force transparent header on blog page */
body[class*="blog"] .site-header,
body:has([class*="blog"]) .site-header {
    background: transparent !important;
    backdrop-filter: blur(10px) !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    margin: 0;
    padding: 80px 0 0 0;
    border: none;
    box-sizing: border-box;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    padding: 0 2rem;
}

.hero-quick {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 2rem 3rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #6c757d;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b6b 0%, #6c757d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #6c757d 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
    animation: pulse 2s infinite;
}

.hero-quick {
    animation: fadeInUp 1s ease 0.5s both;
}

/* About Us Section */
.about-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(30, 39, 46, 0.95) 0%, rgba(40, 55, 71, 0.95) 100%);
    position: relative;
}

.about-us .about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #6c757d;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.mission h3,
.vision h3 {
    color: #ff6b6b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.mission p,
.vision p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Company Page Styles */
.company-intro {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.company-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.mission-vision-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem auto;
    max-width: 1000px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mv-card h2 {
    color: #6c757d;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.mv-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.1rem;
}

.company-hero {
    height: 60vh;
    background: url('assets/images/Modern Business.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    margin-top: -100px;
    padding-top: 100px;
}

.company-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.company-hero .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.company-hero .hero-content h1 {
    color: #6c757d;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.company-hero .hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
}

.service-overview {
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: center;
}

.service-overview h2 {
    color: #6c757d;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-overview p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.service-offerings {
    max-width: 1000px;
    margin: 0 auto;
}

.service-offerings h2 {
    color: #6c757d;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.feature-item ul {
    list-style: none;
    padding: 0;
}

.feature-item ul li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-item ul li:before {
    content: '✓';
    color: #6c757d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-image {
    text-align: center;
    margin-bottom: 2rem;
}

.service-image img {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.feature-image {
    margin-bottom: 1rem;
}

.feature-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.company-image {
    text-align: center;
    margin-bottom: 3rem;
}

.company-image img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.company-intro h2 {
    color: #6c757d;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.company-intro h3 {
    color: #ff6b6b;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
}

.why-choose-section {
    max-width: 1000px;
    margin: 4rem auto;
    text-align: center;
}

.why-choose-section h2 {
    color: #6c757d;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.why-choose-image {
    margin-bottom: 2rem;
}

.why-choose-image img {
    width: 100%;
    max-width: 700px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

.why-choose-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.why-choose-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.why-choose-cta h3 {
    color: #6c757d;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.why-choose-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid rgba(108, 117, 125, 0.3);
}

/* Blog Hero Section */
.blog-hero {
    height: 60vh;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.blog-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.blog-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.blog-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Blog Articles Section */
.blog-articles {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.9) 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-article {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-article h2 {
    color: #6c757d;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.article-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.article-content h3 {
    color: #ff6b6b;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

.article-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-us .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-article {
        padding: 2rem;
    }
    
    .site-header { flex-direction: row; padding: 1rem; }
    .logo img { height: 50px; margin-left: 0; }
    .main-nav { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .services, .about-us, .why-choose-us, .consultation, .contact, .blog { padding: 4rem 1rem; }
    .consultation-container { flex-direction: column; }
    .consultation-text { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
    .team-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.9) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.services > * {
    position: relative;
    z-index: 2;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card img {
    height: 120px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    filter: brightness(1.2);
}

.service-card h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card h3 a {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-card h3 a:hover {
    color: #6c757d;
}

.service-card > a {
    display: block;
    text-decoration: none;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #6c757d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.9) 100%);
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #6c757d;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto 4rem auto;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(108, 117, 125, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

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

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

.feature-icon {
    display: none;
}

.feature-card h3 {
    color: #6c757d;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Consultation Form Section */
.consultation {
    padding: 6rem 0;
    background: url('assets/images/IT Strategy and Consulting.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.consultation-container {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 1200px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.consultation-text {
    flex: 1;
    padding: 3rem;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.consultation-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-align: left;
}

.consultation-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.consultation-form-wrapper {
    flex: 1;
    padding: 3rem;
}

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

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    color: #333;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: #666;
}

.consultation-form button {
    padding: 1.2rem 2rem;
    background: #6c757d;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.consultation-form button:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .consultation-container {
        flex-direction: column;
    }
    
    .consultation-text {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: url('assets/images/24 hour Support.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    text-align: left;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #6c757d;
    text-align: left;
}

.contact-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-item h3 {
    color: #6c757d;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
}

/* Blog Section */
.blog {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.9) 100%);
    text-align: center;
}

.blog h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #6c757d;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-post {
    background: none;
    border: none;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.blog-post h3 {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-post p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #6c757d;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #6c757d;
}

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

.social-links img {
    width: 24px;
    height: 24px;
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

.social-links img:hover {
    filter: brightness(1.5);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0 1rem;
    border-top: 1px solid #34495e;
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    color: #bdc3c7;
}

/* Team Page Styles */
.team-hero {
    height: 60vh;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.team-members {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.9) 100%);
}

.team-members h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #6c757d;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: none;
    border: none;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.team-photo {
    width: 250px;
    height: 250px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Specific adjustment for Joshua's photo */
.team-photo img[alt="Joshua Yandam Benang"] {
    object-position: center center;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    color: #6c757d;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.position {
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.bio {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    display: inline-block;
    transition: transform 0.3s;
}

.team-social a:hover {
    transform: scale(1.2);
}

.team-social img {
    height: 24px;
    filter: brightness(0.8);
    transition: filter 0.3s;
}

.team-social img:hover {
    filter: brightness(1.2);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    filter: brightness(1.2);
}

/* Virtual Assistant Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.chat-widget.expanded {
    width: 250px;
    height: auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 998;
    font-family: Arial, sans-serif;
}

.chat-header {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
}

.chat-widget.expanded .chat-header {
    border-radius: 20px 20px 0 0;
    justify-content: space-between;
    width: 100%;
    height: auto;
}

.chat-header img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.chat-widget:not(.expanded) .chat-header img {
    margin-right: 0;
}

.chat-widget:not(.expanded) .chat-header span {
    display: none;
}

.chat-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.chat-body {
    display: none;
    max-height: 400px;
    background: white;
    border-radius: 0 0 20px 20px;
}

.chat-widget.expanded .chat-body {
    display: block;
}

.chat-messages {
    height: 250px;
    overflow-y: auto;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.bot-message, .user-message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.bot-message {
    background: #f1f3f4;
    color: #333;
}

.user-message {
    background: #6c757d;
    color: white;
    margin-left: 20px;
}

.chat-input-area {
    padding: 15px;
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
}

.chat-input-area button {
    background: #6c757d;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.chat-input-area button:hover {
    background: #5a6268;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #6c757d;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .chat-widget {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }
    
    .whatsapp-float {
        display: flex !important;
        bottom: 20px;
        right: 90px;
    }
}

/* Careers Page Styles */
.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.job-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    border-color: #6c757d;
}

.job-card h3 {
    color: #6c757d;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.job-type {
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.job-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.job-card ul {
    list-style: none;
    padding: 0;
}

.job-card ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.job-card ul li:before {
    content: '•';
    color: #6c757d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
    padding: 2rem 1rem;
}

.step h3 {
    color: #6c757d;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.careers-positions h2,
.application-process h2 {
    color: #6c757d;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Service Pages Styles */
.service-hero {
    height: 60vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    margin-top: 0;
    padding-top: 20px;
}

.service-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.service-hero .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.service-hero .hero-content h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-hero .hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
}

.service-details {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.9) 100%);
}

.service-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #6c757d;
    text-align: center;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
    width: 100%;
}

.feature-item:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    max-width: 50%;
}

.feature-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.feature-content {
    flex: 1;
    max-width: 50%;
}

.feature-item h3 {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-item ul {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .feature-item,
    .feature-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-image,
    .feature-content {
        max-width: 100%;
    }
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.cta-section h3 {
    color: #6c757d;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Page Templates */
.page-content, .error-404 {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.9) 100%);
    min-height: 60vh;
}

.page-header h1, .error-content h1 {
    color: #6c757d;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.page-content .container, .error-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-content p, .error-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.error-actions {
    margin: 3rem 0;
}

.error-actions .cta-btn {
    margin-bottom: 2rem;
}

.search-form {
    margin: 2rem 0;
}

.search-form h3 {
    color: #6c757d;
    margin-bottom: 1rem;
}

.search-form input {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-right: 0.5rem;
    width: 250px;
}

.search-form button {
    padding: 0.8rem 1.5rem;
    background: #6c757d;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.helpful-links {
    margin-top: 3rem;
}

.helpful-links h3 {
    color: #6c757d;
    margin-bottom: 1rem;
}

.helpful-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.helpful-links a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
}

.helpful-links a:hover {
    color: #6c757d;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-navigation a {
    color: #6c757d;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.post-navigation a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ff6b6b;
}

.post-tags {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-tags strong {
    color: #6c757d;
}

.post-tags a {
    color: #ff6b6b;
    text-decoration: none;
    margin-right: 0.5rem;
}

.featured-image {
    margin: 2rem 0;
    text-align: center;
}

.featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .site-header { padding: 1rem; }
    .logo img { height: 60px; margin-left: 1rem; }
    .main-nav ul { gap: 1.5rem; }
    .hero h1 { font-size: 3rem; }
    .consultation-container { max-width: 900px; }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 1rem;
        height: auto;
    }
    
    .logo img {
        height: 40px;
        margin-left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(44, 62, 80, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 1000;
        padding-top: 60px;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }
    
    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav ul li a {
        display: block;
        padding: 0.8rem 0;
        font-size: 1rem;
    }
    
    /* Force mobile dropdown display */
    .main-nav .menu-item-has-children.active .sub-menu {
        display: block !important;
        position: static !important;
        background: rgba(0, 0, 0, 0.8) !important;
        padding: 10px 0 !important;
        margin: 5px 0 !important;
        border-radius: 5px;
    }
    
    .main-nav .sub-menu li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: 0 !important;
    }
    
    .main-nav .sub-menu a {
        padding: 12px 30px !important;
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 14px !important;
        display: block !important;
        text-decoration: none !important;
    }
    
    .main-nav .sub-menu a:hover {
        background: rgba(255, 107, 107, 0.3) !important;
        color: #ff6b6b !important;
    }
    
    .search-toggle {
        margin-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1rem;
    }
    
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .about-us .about-content { flex-direction: column; text-align: center; }
    .services, .about-us, .why-choose-us, .consultation, .contact, .blog { padding: 4rem 1rem; }
    .consultation-container { flex-direction: column; }
    .consultation-text { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
    .team-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 480px) {
    .site-header { padding: 0.8rem; }
    
    .main-nav {
        width: 90%;
    }
    
    .main-nav ul {
        padding: 1.5rem;
    }
    
    .hero { height: 80vh; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .cta-btn { padding: 1rem 2rem; font-size: 1rem; }
    .service-grid, .features-grid, .blog-grid { grid-template-columns: 1fr; }
    .contact-details { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .whatsapp-float { 
        width: 50px; 
        height: 50px; 
        bottom: 20px; 
        right: 20px;
        display: flex !important;
        z-index: 9999;
    }
    .whatsapp-icon { width: 30px; height: 30px; }
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }
}

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

