/* 
  IC Bilişim - Premium E-commerce Consulting Website Styles
  Primary Color: #DA1E00
*/

:root {
    --primary: #DA1E00;
    --primary-dark: #b31800;
    --primary-light: #ff3314;
    --text-dark: #111111;
    --text-muted: #555555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #eaeaea;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(218, 30, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }
.bg-primary { 
    background-color: var(--primary); 
    color: white;
}
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(218, 30, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(218, 30, 0, 0.4);
}

.bg-primary .btn-primary {
    background-color: var(--text-dark);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.bg-primary .btn-primary:hover {
    background-color: white;
    color: var(--text-dark);
}

.btn-secondary {
    background-color: var(--text-dark);
    color: white;
}

.btn-secondary:hover {
    background-color: #333;
    transform: translateY(-3px);
}

.btn-outline {
    border-color: var(--border-color);
    background: transparent;
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.btn-text {
    background: transparent;
    color: var(--primary);
    padding: 0;
}

.btn-text:hover {
    color: var(--primary-dark);
    gap: 0.8rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 65px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.88rem; /* slightly reduce size because of uppercase width */
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Abstract Hero Image */
.hero-image {
    position: relative;
    height: 500px;
}

.abstract-shape {
    position: absolute;
    border-radius: 30px;
    transition: var(--transition);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background-image: url('chatgpt1.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    top: 50px;
    right: 50px;
    border: 1px solid var(--border-color);
    z-index: 2;
}

.shape-2 {
    width: 220px;
    height: 220px;
    background-image: url('chatgpt2.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    bottom: 50px;
    left: 0;
    border: 1px solid var(--border-color);
    z-index: 1;
}

.shape-3 {
    width: 150px;
    height: 150px;
    border: 2px dashed var(--border-color);
    top: 0;
    left: 50px;
    border-radius: 50%;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary);
}

.card-1 {
    top: 100px;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 100px;
    right: 0;
    animation-delay: 3s;
}

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

/* Marquee */
.marquee-wrapper {
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
}

.marquee {
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    animation: scroll 20s linear infinite;
}

.marquee-content span {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

/* Services */
.services {
    padding: 100px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 10px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card ul {
    margin-bottom: 2rem;
}

.service-card ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.service-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-image {
    position: relative;
}

.img-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.stats-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.stats-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.stat-item p {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Video CTA */
.video-cta {
    padding: 120px 0;
    position: relative;
}

.video-cta.bg-primary {
    background: linear-gradient(135deg, #0f0200 0%, #1e0501 50%, #2f0400 100%);
    color: white;
    overflow: hidden;
}

.video-cta.bg-primary::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(218, 30, 0, 0.12) 0%, rgba(218, 30, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.video-cta.bg-primary::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(218, 30, 0, 0.08) 0%, rgba(218, 30, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.video-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 3rem;
}

.video-placeholder {
    width: 100%;
    max-width: 800px;
    height: 450px;
    background-image: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.35)), url('video-thumbnail.png');
    background-size: cover;
    background-position: center;
    margin: 0 auto;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.video-placeholder:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 40px 80px rgba(218, 30, 0, 0.15);
}

@keyframes pulse-play {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.play-btn {
    width: 84px;
    height: 84px;
    background: white;
    border: none;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse-play 2s infinite;
}

.play-btn:hover {
    transform: scale(1.1);
    background-color: var(--primary);
    color: white;
    animation: none;
    box-shadow: 0 10px 30px rgba(218, 30, 0, 0.5);
}

/* Page Header */
.page-header {
    padding: 180px 0 100px;
    background-image: linear-gradient(rgba(17, 17, 17, 0.75), rgba(17, 17, 17, 0.85)), url('header_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 1.2rem;
    color: var(--bg-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--bg-white);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--bg-white);
}

.breadcrumbs i {
    margin: 0 0.8rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

.blog-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.blog-post {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-post:hover {
    box-shadow: var(--shadow-md);
}

.post-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.bg-placeholder {
    background-color: #eee;
}

.post-image img, .news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.post-content {
    padding: 2.5rem;
}

.post-date {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.post-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.post-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pagination {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 4rem;
}

.page-num {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-color);
    font-weight: 600;
}

.page-num.active, .page-num:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Sidebar */
.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.search-form button {
    padding: 0 1.5rem;
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--primary);
}

.category-list li {
    margin-bottom: 1rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
}

.category-list a i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.category-list a:hover {
    color: var(--primary);
}

.recent-news {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.news-thumb {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    flex-shrink: 0;
}

.news-date {
    font-size: 0.8rem;
    color: var(--primary);
    display: block;
    margin-bottom: 0.3rem;
}

.news-info h4 {
    font-size: 1rem;
    margin: 0;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags-cloud a {
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    color: var(--text-muted);
    border-radius: 5px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tags-cloud a:hover {
    background: var(--primary);
    color: white;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-banner.bg-primary {
    background: var(--primary);
    color: white;
}

.cta-banner.bg-primary p {
    color: rgba(255, 255, 255, 0.85);
}

.cta-banner h2 {
    font-size: 3rem;
}

/* Footer */
.footer {
    padding: 80px 0 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about p {
    color: var(--text-muted);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-dark);
    margin-right: 0.5rem;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
}

.footer-links h3, .footer-contact h3 {
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.contact-info i {
    color: var(--primary);
    margin-top: 5px;
}

.contact-info a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.bottom-links a {
    margin-left: 1.5rem;
}

.bottom-links a:hover {
    color: var(--primary);
}

/* Animations */
[data-animate] {
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

[data-animate="fade-in"] {
    transform: scale(0.95);
}

[data-animate="slide-up"] {
    transform: translateY(50px);
}

[data-animate="slide-left"] {
    transform: translateX(50px);
}

.animated {
    opacity: 1;
    transform: translate(0) scale(1);
}


/* Vision & Mission Section */
.vision-mission {
    padding: 120px 0;
    background-color: #fcfcfc;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.vm-intro {
    max-width: 480px;
}

.vm-tag {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.vm-intro h2 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.vm-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.vm-cards-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vm-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(218, 30, 0, 0.15);
}

.vm-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background-color: rgba(218, 30, 0, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.vm-card:hover .vm-icon-wrapper {
    background-color: var(--primary);
    color: var(--bg-white);
}

.vm-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.vm-card-content p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.65;
    margin: 0;
}


/* Why Us Section */
.why-us-section {
    padding: 120px 0;
    background-color: var(--bg-white);
}

.why-us-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: stretch;
}

.why-us-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: var(--transition);
}

.why-us-image:hover img {
    transform: scale(1.03);
}

.why-us-content .section-tag {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.why-us-content h2 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.why-us-content .why-us-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.why-us-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.why-us-box:hover {
    transform: translateY(-5px);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-color: rgba(218, 30, 0, 0.15);
}

.why-us-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background-color: rgba(218, 30, 0, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.why-us-box:hover .why-us-icon {
    background-color: var(--primary);
    color: white;
}

.why-us-box h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.why-us-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}


/* Sticky Contact Widget */
.sticky-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.contact-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #111111;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.03);
    pointer-events: none;
    transition: var(--transition);
    opacity: 1;
    visibility: visible;
}

.contact-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.75);
}

.sticky-contact.active .contact-tooltip {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(-10px);
}

.contact-trigger {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.contact-trigger:hover {
    transform: scale(1.05);
    background-color: var(--primary-dark);
}

.contact-trigger .close-icon {
    display: none;
}

.sticky-contact.active .contact-trigger {
    background-color: #1a252f;
    transform: rotate(90deg);
}

.sticky-contact.active .contact-trigger .trigger-icon {
    display: none;
}

.sticky-contact.active .contact-trigger .close-icon {
    display: block;
}

.contact-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sticky-contact.active .contact-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.menu-header {
    background-color: var(--primary);
    color: white;
    padding: 1.5rem;
    text-align: left;
}

.menu-header h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
}

.menu-header span {
    font-size: 0.85rem;
    opacity: 0.8;
}

.menu-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    transition: var(--transition);
    text-decoration: none;
}

.menu-item:hover {
    background-color: var(--bg-light);
}

.item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.wa-item .item-icon {
    background-color: #e8f7f0;
    color: #25d366;
}

.tel-item .item-icon {
    background-color: #e8f0fe;
    color: #1a73e8;
}

.form-item .item-icon {
    background-color: #fff4ec;
    color: #ff8c00;
}

.item-text {
    display: flex;
    flex-direction: column;
}

.item-text strong {
    font-size: 1rem;
    color: var(--text-dark);
}

.item-text span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Service Detail Page Navigation Tabs styling */
.service-tabs {
    display: flex;
    gap: 0.5rem !important;
    margin-bottom: 3rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.service-tabs::-webkit-scrollbar {
    height: 5px;
}

.service-tabs::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.service-tabs .btn {
    white-space: nowrap !important;
    font-size: 0.82rem !important;
    padding: 0.5rem 1.2rem !important;
    flex-shrink: 0 !important;
    height: auto !important;
    min-height: unset !important;
}

/* Services Slider on Homepage */
.services-slider-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 15px 0;
    position: relative;
}

.services-slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.services-slider-track .service-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    width: calc(33.333% - 1.333rem);
    box-sizing: border-box;
}

.slider-arrow:hover {
    background-color: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
    transform: scale(1.05);
}

.slider-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed !important;
    background-color: #f5f5f5 !important;
    color: #ccc !important;
    border-color: var(--border-color) !important;
    transform: none !important;
}

/* Navigation Dropdown Menu styling */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

.dropdown-trigger i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
    color: var(--primary);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-white);
    min-width: 280px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1010;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent var(--bg-white) transparent;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-menu a {
    display: block !important;
    padding: 0.8rem 1.5rem !important;
    font-size: 0.9rem !important;
    color: var(--text-dark) !important;
    font-weight: 500 !important;
    transition: var(--transition) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
    position: relative !important;
    text-align: left !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.dropdown-menu a::after {
    display: none !important; /* Remove nav-link hover bottom bar */
}

.dropdown-menu a:last-child {
    border-bottom: none !important;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light) !important;
    color: var(--primary) !important;
    padding-left: 1.8rem !important;
}

/* ==========================================
   Responsive Styles (Bottom to override)
   ========================================== */
@media (max-width: 992px) {
    .hero-container, .stats-container, .blog-container {
        grid-template-columns: 1fr;
    }
    .hero-content {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image {
        display: none;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .why-us-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .why-us-image img {
        height: 400px;
    }
    .services-slider-track .service-card {
        flex: 0 0 calc(50% - 1rem);
        width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }
    .nav-links {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        padding: 2rem;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        border-top: 1px solid var(--border-color);
        gap: 1.5rem;
        z-index: 999;
    }
    .nav-links a::after {
        display: none !important;
    }
    .nav-links.active {
        display: flex !important;
    }
    .navbar .btn {
        display: inline-flex;
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
        margin-right: 1.5rem;
        margin-left: auto;
    }
    .hamburger {
        display: block;
    }
    .hamburger.active i::before {
        content: "\f00d"; /* FontAwesome times/close icon */
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .vm-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    /* New Multi-page Grids Responsive */
    .contact-container, .service-details-grid, .blog-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .contact-container {
        padding: 1.5rem !important;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .testimonial-grid {
        grid-template-columns: 1fr !important;
    }
    .feature-list {
        grid-template-columns: 1fr !important;
    }
    .contact-form > div {
        grid-template-columns: 1fr !important;
    }
    .services-slider-track .service-card {
        flex: 0 0 100%;
        width: 100%;
    }

    /* Dropdown inside Mobile Viewport */
    .dropdown {
        width: 100%;
        text-align: center;
    }
    .dropdown-trigger {
        justify-content: center;
        width: 100%;
        padding: 0.8rem 0;
    }
    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        display: none !important;
        box-shadow: none !important;
        border: none !important;
        background: rgba(0, 0, 0, 0.02);
        padding: 0.5rem 0;
        min-width: unset !important;
        flex-direction: column;
        gap: 0.2rem;
        border-radius: 8px;
        margin-top: 0.5rem;
        transition: none !important;
    }
    .dropdown-menu::before {
        display: none !important;
    }
    .dropdown-menu a {
        padding: 0.6rem 1rem !important;
        font-size: 0.88rem !important;
        color: var(--text-muted) !important;
        border-bottom: none !important;
        text-align: center !important;
    }
    .dropdown-menu a:hover {
        padding-left: 1rem !important;
        background: transparent !important;
        color: var(--primary) !important;
    }
    .dropdown:hover .dropdown-menu {
        transform: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        display: none !important;
    }
    .dropdown:hover .dropdown-trigger i {
        transform: none;
    }
    .dropdown.open .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
    .dropdown.open .dropdown-trigger i {
        transform: rotate(180deg);
        color: var(--primary);
    }

    /* Blog Details Responsive Fixes */
    .blog-details-content {
        min-width: 0;
        width: 100% !important;
    }
    .blog-details-content .post-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    .blog-details-content .post-image img {
        width: 100% !important;
        height: auto !important;
    }
    .blog-details-content .post-meta {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
        padding: 1rem !important;
        border-radius: 10px !important;
        transform: none !important;
        margin-bottom: 1.5rem !important;
        width: 100% !important;
        justify-content: center;
    }
    .blog-details-content .post-meta + div {
        padding: 1.5rem !important;
        margin-top: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word;
    }
    .blog-details-content h2 {
        font-size: 1.8rem !important;
        margin: 1.5rem 0 !important;
        word-wrap: break-word;
    }
    .blog-details-content h3 {
        font-size: 1.3rem !important;
        word-wrap: break-word;
    }
    .blog-details-content blockquote {
        padding: 1.5rem !important;
        margin: 1.5rem 0 !important;
        font-size: 1rem !important;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr !important;
    }
}



