:root {
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary-color: #059669;
    --accent-color: #dc2626;

    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-white: #ffffff;
    --text-light: #f9fafb;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-primary: #1e40af;
    --bg-dark: #1f2937;
    --border-color: #e5e7eb;
    --shadow-light: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-medium: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-large: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --card-bg-color: #0043a826;
}

[data-theme="dark"] {
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --bg-light: #111827;
    --bg-white: #1f2937;
    --border-color: #374151;
}

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
} */

/* html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
} */

body {
    font-family: 'Poppins', sans-serif;
    /* line-height: 1.6; */
    color: var(--text-primary);
    background-color: var(--bg-light);
    overflow-x: hidden;
    transition: all 0.3s ease;
    /* width: 100%; */
}

/* Navbar - Fixed visibility */
/* .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

[data-theme="dark"] .navbar {
    background: rgba(31, 41, 55, 0.95);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-primary) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(30, 64, 175, 0.1);
    transform: translateY(-2px);
} */
/*  ------------------mega menu start -------------- */
/*  ------------------mega menu start -------------- */
/* .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 0.8rem 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .navbar {
    background: rgba(31, 41, 55, 0.95);
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

.brand-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: subtle-pulse 3s ease-in-out infinite;
}

.brand-text {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.custom-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.custom-toggler:focus {
    box-shadow: none;
}

.toggler-line {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary) !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 50px;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    overflow: hidden;
}

.nav-icon {
    font-size: 0.9rem;
    transition: all 0.2s ease;
    opacity: 0.8;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(30, 64, 175, 0.05);
    transform: translateY(-1px);
}

.nav-link:hover .nav-icon {
    opacity: 1;
    transform: scale(1.05);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(30, 64, 175, 0.1);
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.15);
}

.nav-link.active .nav-icon {
    opacity: 1;
    color: var(--primary-color);
}



.mega-dropdown {
    position: static;
}

.mega-menu {
    position: fixed;
    top: var(--navbar-height, 80px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: none;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    max-height: calc(100vh - var(--navbar-height, 80px) - 40px);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(30, 64, 175, 0.3) transparent;
}

.mega-menu::-webkit-scrollbar {
    width: 6px;
}

.mega-menu::-webkit-scrollbar-track {
    background: transparent;
}

.mega-menu::-webkit-scrollbar-thumb {
    background: rgba(30, 64, 175, 0.3);
    border-radius: 3px;
}

.mega-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(30, 64, 175, 0.5);
}

.mega-menu-content {
    padding: 2.5rem 0;
    min-height: 300px;
}

[data-theme="dark"] .mega-menu {
    background: rgba(31, 41, 55, 0.98);
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
}

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

.mega-menu-section {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.3);
    height: 100%;
    transition: all 0.2s ease;
    border-left: 3px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: block;
    text-decoration: none;
    color: inherit;
}

[data-theme="dark"] .mega-menu-section {
    background: rgba(55, 65, 81, 0.9);
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.mega-menu-section:hover {
    text-decoration: none;
    color: inherit;
}

.mega-menu-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    border-bottom: 2px solid rgba(30, 64, 175, 0.1);
    padding-bottom: 0.75rem;
    position: relative;
    overflow: hidden;
}

.mega-menu-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transition: left 0.3s ease;
    border-radius: 1px;
}

.mega-menu-section:hover .mega-menu-title::after {
    left: 0;
}

.mega-menu-title i {
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 20px;
    text-align: center;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 0.5rem;
}

.mega-menu-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    padding: 0.75rem 0;
    border-radius: 6px;
    display: block;
    transition: all 0.2s ease;
    position: relative;
    line-height: 1.5;
    font-size: 0.9rem;
    pointer-events: none; 
}

.mega-menu-list a:hover {
    color: var(--text-secondary);
    background: transparent;
    padding-left: 0;
    font-weight: 400;
}

.mega-menu-footer {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(59, 130, 246, 0.02));
    border-radius: 16px;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

@media (max-width: 991.98px) {
    .mega-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        border-radius: 16px;
        margin-top: 0.5rem;
        max-height: 70vh;
        overflow-y: auto;
        padding: 0;
    }

    .mega-menu-content {
        padding: 1rem 0;
        min-height: auto;
    }

    .mega-menu .container {
        padding: 0;
    }

    .mega-menu-section {
        margin-bottom: 1.5rem;
        background: rgba(248, 250, 252, 0.9);
    }

    .mega-menu-footer {
        margin-top: 1rem;
        padding: 1.5rem;
        text-align: center;
    }

   
    .mega-menu::-webkit-scrollbar {
        width: 4px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(226, 232, 240, 0.3);
    }

    [data-theme="dark"] .navbar-collapse {
        background: rgba(31, 41, 55, 0.98);
        border: 1px solid rgba(75, 85, 99, 0.3);
    }

    .navbar-nav {
        gap: 0.5rem;
    }

    .nav-link {
        padding: 1rem 1.5rem !important;
        margin: 0.25rem 0;
        justify-content: flex-start;
    }

   
}

@keyframes subtle-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.9;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-collapse.show,
.navbar-collapse.collapsing {
    animation: slideInDown 0.25s ease-out;
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
}

[data-theme="dark"] .navbar-scrolled {
    background: rgba(31, 41, 55, 0.98) !important;
}

@media (min-width: 992px) {
    .mega-menu-footer .row {
        align-items: center;
    }
    
  
} */


.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 0.8rem 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .navbar {
    background: rgba(31, 41, 55, 0.95);
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
}

/* Enhanced Brand */
.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

.brand-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: subtle-pulse 3s ease-in-out infinite;
}

.brand-text {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

/* Custom Mobile Toggle */
.custom-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.custom-toggler:focus {
    box-shadow: none;
}

.toggler-line {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Enhanced Navigation Links */
.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary) !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 50px;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    overflow: hidden;
}

.nav-icon {
    font-size: 0.9rem;
    transition: all 0.2s ease;
    opacity: 0.8;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(30, 64, 175, 0.05);
    transform: translateY(-1px);
}

.nav-link:hover .nav-icon {
    opacity: 1;
    transform: scale(1.05);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(30, 64, 175, 0.1);
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.15);
}

.nav-link.active .nav-icon {
    opacity: 1;
    color: var(--primary-color);
}

/* Simple Dropdown Menu */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    margin-top: 0.5rem;
    min-width: 280px;
}

[data-theme="dark"] .dropdown-menu {
    background: rgba(31, 41, 55, 0.98);
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 0;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
    opacity: 0.8;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(30, 64, 175, 0.08);
    color: var(--primary-color);
    transform: translateX(4px);
}

.dropdown-item:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(226, 232, 240, 0.3);
    }

    [data-theme="dark"] .navbar-collapse {
        background: rgba(31, 41, 55, 0.98);
        border: 1px solid rgba(75, 85, 99, 0.3);
    }

    .navbar-nav {
        gap: 0.5rem;
    }

    .nav-link {
        padding: 1rem 1.5rem !important;
        margin: 0.25rem 0;
        justify-content: flex-start;
    }

    .dropdown-menu {
        background: rgba(248, 250, 252, 0.95);
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin-top: 0.5rem;
        border-radius: 12px;
    }

    .dropdown-item {
        padding: 0.75rem 1rem;
    }
}

/* Animations */
@keyframes subtle-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.9;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-collapse.show,
.navbar-collapse.collapsing {
    animation: slideInDown 0.25s ease-out;
}

/* Scroll Effect */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
}

[data-theme="dark"] .navbar-scrolled {
    background: rgba(31, 41, 55, 0.98) !important;
}
/*  ------------------mega menu end -------------- */


/* Hero Section - Fixed overlay and text visibility */
.hero-section {
    position: relative;
    /* margin-top: 60px; */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Fixed overlay - darker for better text contrast */
    background: rgba(31, 41, 55, 0.4);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--text-white);
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 2.5rem;
    color: var(--text-white);
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    border: 3px solid var(--primary-color);
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-large);
    position: relative;
    overflow: hidden;
}

.hero-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: left 0.5s;
}

.hero-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.4);
    color: var(--text-white);
}

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

.mute-toggle {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mute-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Video Section */
.video-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.video-card video {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: var(--primary-dark);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content {
    padding: 2rem;
    text-align: center;
    color: var(--text-primary);
}

/* About Section - Fixed backgrounds and text */
.tcg-about-hero {
    /* margin-top: 80px; */
    background: var(--primary-color);
    color: var(--text-white);
    padding: 6rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.tcg-about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://thecaulkingguy.com.au/wp-content/uploads/2024/05/img05.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: 1;
}

.tcg-about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    color: var(--text-white);
}

.tcg-about-hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    color: var(--text-white);
}

.tcg-about-content {
    padding: 6rem 0;
    background: var(--bg-light);
}

.tcg-about-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.tcg-about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.tcg-about-card h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.tcg-about-card p {
    color: var(--text-secondary);
}

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

.tcg-about-card ul li {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-primary);
}

.tcg-about-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.tcg-about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 2rem;
}

.tcg-about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.tcg-cta-section {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 4rem 0;
    text-align: center;
}

.tcg-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.tcg-cta-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-white);
}

.tcg-btn-cta {
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tcg-btn-cta:hover {
    background: var(--secondary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/*  -------------------------- About Section start ------------------*/
/* Enhanced About Section with Image-Text Layout */
.about-section {
    /* padding: 8rem 0; */
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about-hero {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 2rem;
    /* border-radius: 0 0 80px 80px; */
    position: relative;
    box-shadow: var(--shadow-large);
}

.about-hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-white);
    opacity: 0.95;
}

.about-content {
    margin-bottom: 5rem;
}

.about-item {
    display: flex;
    align-items: center;
    margin-bottom: 6rem;
    gap: 4rem;
    position: relative;
}

.about-item:last-child {
    margin-bottom: 0;
}

/* Reverse layout for alternating items */
.about-item.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
    padding: 2rem;
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-item.reverse .about-text h3::after {
    left: auto;
    right: 0;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.about-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: var(--shadow-large);
    transition: all 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Decorative elements */
.about-image::before {
    content: '';
    position: absolute;
    top: -52px;
    left: -52px;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
}

.about-item.reverse .about-image::before {
    left: auto;
    right: -20px;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
}

.about-item.reverse .about-image::after {
    right: auto;
    left: -15px;
}

/* Icon for each section */
.about-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.2);
    transition: all 0.3s ease;
}

.about-text:hover .about-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.3);
}

/* Stats or highlight box */
.highlight-box {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
    box-shadow: var(--shadow-medium);
}

.highlight-box h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-box p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .about-hero {
        padding: 3rem 0;
        margin-bottom: 4rem;
        border-radius: 0 0 40px 40px;
    }
    
    .about-hero h2 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .about-item,
    .about-item.reverse {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .about-text {
        padding: 1rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .about-text h3::after {
        left: 0 !important;
        right: auto !important;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .about-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
/* ---------------------------About Section End ------------------------------- */
/* Portfolio Section */
.portfolio-section {
    padding: 3rem 0;
    background: #f1ebeb;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.filter-btn.clicked {
    transform: scale(0.95);
}

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

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    max-width: 100%;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-white);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: var(--text-white);
    opacity: 0.9;
}

/* Services Section */
 .services-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.service-card {
    background: var(--card-bg-color);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    display: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.service-card h3,
.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.service-icon.floating {
    animation: float 3s ease-in-out infinite;
} 

/*  ================================ Testimonials Section start ====================================*/
.thecguytestimonial-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.thecguytestimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f59e0b" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%231e40af" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.thecguytestimonial-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-primary);
    margin-bottom: 1rem;
    position: relative;
}

.thecguytestimonial-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.thecguytestimonial-carousel {
    position: relative;
    z-index: 2;
}

.thecguytestimonial-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-large);
    margin: 2rem 1rem;
    position: relative;
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
}

.thecguytestimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.thecguytestimonial-quote-icon {
    position: absolute;
    top: -15px;
    left: 3rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-medium);
}

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

.thecguytestimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.thecguytestimonial-rating {
    margin-bottom: 2rem;
}

.thecguytestimonial-rating i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 0 0.2rem;
    animation: sparkle 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

.thecguytestimonial-rating i:nth-child(1) {
    --i: 0;
}

.thecguytestimonial-rating i:nth-child(2) {
    --i: 1;
}

.thecguytestimonial-rating i:nth-child(3) {
    --i: 2;
}

.thecguytestimonial-rating i:nth-child(4) {
    --i: 3;
}

.thecguytestimonial-rating i:nth-child(5) {
    --i: 4;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.thecguytestimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.thecguytestimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    position: relative;
}

.thecguytestimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thecguytestimonial-card:hover .thecguytestimonial-avatar img {
    transform: scale(1.1);
}

.thecguytestimonial-info {
    text-align: left;
}

.thecguytestimonial-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.thecguytestimonial-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Carousel Controls */
.thecguytestimonial-control-prev,
.thecguytestimonial-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    top: 50%;
    transform: translateY(-50%);
}

.thecguytestimonial-control-prev {
    left: -25px;
}

.thecguytestimonial-control-next {
    right: -25px;
}

.thecguytestimonial-control-prev:hover,
.thecguytestimonial-control-next:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-large);
}

/* Carousel Indicators */
.thecguytestimonial-indicators {
    bottom: -60px;
    margin-bottom: 0;
}

.thecguytestimonial-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.thecguytestimonial-indicators button.active {
    display: none;
    background: var(--primary-color);
    transform: scale(1.2);
}

.thecguytestimonial-indicators button:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .thecguytestimonial-section {
        padding: 4rem 0;
    }

    .thecguytestimonial-card {
        padding: 2.5rem;
        margin: 1.5rem 0.5rem;
    }

    .thecguytestimonial-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .thecguytestimonial-card {
        padding: 2rem;
        margin: 1rem 0;
    }

    .thecguytestimonial-text {
        font-size: 1rem;
    }

    .thecguytestimonial-author {
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .thecguytestimonial-info {
        text-align: center;
    }

    .thecguytestimonial-control-prev,
    .thecguytestimonial-control-next {
        display: none;
    }

    .thecguytestimonial-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .thecguytestimonial-card {
        padding: 1.5rem;
    }

    .thecguytestimonial-quote-icon {
        left: 1.5rem;
    }
}

/*  ================================ Testimonials Section End ====================================*/

/*  ================================  FAQ Section start ========================================== */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.accordion-button {
    background: var(--bg-white);
    border: none;
    padding: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: 15px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--text-white);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--bg-white);
    color: var(--text-primary);
}

/*  ================================  FAQ Section End ========================================== */

/*  ================================ Contact Section Start  ================================*/
/* Contact Hero Section */
.tcg-about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    /* padding: 8rem 0 4rem; */
    padding: 60px;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.tcg-about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.tcg-about-hero .container {
    position: relative;
    z-index: 2;
}

.tcg-about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tcg-about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    /* padding: 6rem 0;
    background: var(--bg-white); */
    padding: 3rem 0;
    background: #dae3ff;
}

.blue-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-primary);
    margin-bottom: 1rem;
    position: relative;
}

/* .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
} */

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.section-subtitle-light {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 3rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    /* margin-top: 3rem; */
}

/* Contact Info */
.contact-info {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    height: fit-content;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-info-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1.5rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item h5 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.contact-info-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Map Placeholder */
.map-placeholder {
    height: 200px;
    background: linear-gradient(45deg, #e5e7eb, #f3f4f6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 1rem;
    border: 2px dashed var(--border-color);
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '📍 Interactive Map Coming Soon';
    font-size: 1rem;
}

/* Contact Form */
.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1.5rem;
}

/* Form Groups with Floating Labels */
.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem 1rem 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    transform: translateY(-2px);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--bg-white);
    padding: 0 0.25rem;
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group select:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label,
.form-group select:not([value=""])+label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    padding: 0.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-submit::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: left 0.5s;
}

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

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit .loading {
    display: none;
    margin-left: 0.5rem;
}

.btn-submit.loading .loading {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tcg-about-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }

    .contact-info,
    .contact-form {
        padding: 2rem;
    }

    .tcg-about-hero {
        padding: 6rem 0 3rem;
    }

    .tcg-about-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-info-item {
        padding: 1rem;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* ================================ Contact Secton End  ================================ */
/* ---------------------------------    Footer start --------------------------- */
/* .footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-light);
}

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

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

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: var(--text-light);
} */


/* Footer CSS */

/* Footer CSS */
.thecguyfooter {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 0;
    width: 100%;
    clear: both;
}

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

.thecguyfooter-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.thecguyfooter-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.thecguyfooter-section.thecguyfooter-company-info {
    flex: 2;
    max-width: 350px;
}

.thecguyfooter-section h3.thecguyfooter-title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.thecguyfooter-section h4.thecguyfooter-heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.thecguyfooter-section h4.thecguyfooter-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--bg-primary);
}

.thecguyfooter-description {
    display: none; /* temporary off */
    line-height: 1.7;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 15px;
}

.thecguyfooter-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thecguyfooter-links li {
    margin-bottom: 8px;
}

.thecguyfooter-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    line-height: 1.6;
}

.thecguyfooter-links a:hover {
    color: #3498db;
    padding-left: 5px;
}

.thecguyfooter-contact-info {
    margin: 0;
    padding: 0;
    background: none;
}

.thecguyfooter-contact-item {
    color: #ffffff;
    margin: 0 0 12px 0;
    padding: 0;
    font-size: 15px;
    line-height: 1.6;
    display: block;
    background: none;
    border: none;
}

.thecguyfooter-contact-item i {
    color: #ffffff;
    margin-right: 10px;
    width: 16px;
    text-align: left;
    font-size: 14px;
    background: none;
}

.thecguyfooter-social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thecguyfooter-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #34495e;
    color: #ecf0f1;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.thecguyfooter-social-link:hover {
    background: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.thecguyfooter-bottom {
    border-top: 1px solid #34495e;
    padding: 20px 0;
}

.thecguyfooter-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.thecguyfooter-bottom p {
    color: #95a5a6;
    margin: 0;
    font-size: 14px;
}

.thecguyfooter-bottom-links {
    display: flex;
    gap: 20px;
}

.thecguyfooter-bottom-links a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.thecguyfooter-bottom-links a:hover {
    color: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .thecguyfooter {
        padding: 40px 0 0;
    }

    .thecguyfooter-content {
        flex-direction: column;
        gap: 25px;
    }

    .thecguyfooter-section {
        min-width: 100%;
    }

    .thecguyfooter-section.thecguyfooter-company-info {
        max-width: 100%;
    }

    .thecguyfooter-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .thecguyfooter-bottom-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .thecguyfooter-container {
        padding: 0 10px;
    }

    .thecguyfooter-section h3.thecguyfooter-title {
        font-size: 22px;
    }

    .thecguyfooter-bottom-links {
        flex-direction: column;
        gap: 8px;
    }
}

/* ---------------------------------    Footer end --------------------------- */

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} */

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}


/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .timeline-content {
        margin-left: 2rem;
        margin-right: 0;
    }
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .navbar-collapse {
        background: var(--bg-white);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: var(--shadow-medium);
    }

    [data-theme="dark"] .navbar-collapse {
        background: var(--bg-dark);
    }

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

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    /* .testimonial-grid {
        grid-template-columns: 1fr;
    } */

    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

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

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

@media (max-width: 576px) {
    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

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

    .portfolio-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
        text-align: center;
    }

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

    .timeline-content {
        margin-left: 1rem;
        padding: 1rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

    .mute-toggle {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: var(--text-white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Print Styles */
@media print {

    .navbar,
    .back-to-top,
    .mute-toggle,
    .loading-overlay {
        display: none !important;
    }

    .hero-section {
        height: auto;
        margin-top: 0;
    }

    .hero-video {
        display: none;
    }

    * {
        box-shadow: none !important;
    }

    .section {
        break-inside: avoid;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000080;
        --text-primary: #000000;
        --text-secondary: #333333;
        --border-color: #000000;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.9);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .culd {
        animation: none;
    }

    .service-icon.floating {
        animation: none;
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}