a {
        text-decoration: none;
    }

    :root {
        --primary-color: #0066ff;
        --secondary-color: #ff4081;
        --dark-color: #333;
        --light-color: #f8f9fa;
        --header-height: 60px;
        --section-padding: clamp(3rem, 5vw, 5rem);
        --bs-body-font-size: 0.875rem;
        --bs-border-radius: 0.25rem;
        --bs-navbar-padding-y: 0.5rem;
        --section-padding: 2rem;
        --component-spacing: 0.75rem;
    }

    /* General Styles */
    html, body {
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }

    body {
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Navbar Styling */
    .navbar {
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }

    .navbar-brand {
        font-weight: 600;
        color: var(--primary-color) !important;
    }

    .navbar-brand img {
        width: 45px;
        height: 45px;
        transition: transform 0.3s ease;
    }

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

    /* Search Bar Enhancement */
    .search-form {
        width: 300px;
        display: flex;
        align-items: center;
    }

    .search-form .form-control {
        border-radius: 20px 0 0 20px;
        border: 2px solid #e0e0e0;
        border-right: none;
        padding-left: 1rem;
        transition: all 0.3s ease;
        height: 40px;
    }

    .search-form .form-control:focus {
        box-shadow: none;
        border-color: var(--primary-color);
    }

    .search-form .btn {
        border-radius: 0 20px 20px 0;
        background: var(--primary-color);
        color: white;
        border: none;
        height: 40px;
        width: 45px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .search-form .btn:hover {
        background: #0056b3;
        transform: scale(1.05);
    }

    .search-form .btn i {
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .search-form .btn:hover i {
        transform: scale(1.1);
    }

    @media (max-width: 991px) {
        .search-form {
            width: 100%;
            margin: 0.5rem 0;
        }
        
        .search-form .form-control,
        .search-form .btn {
            height: 38px;
        }

        .search-form .btn {
            width: 42px;
        }

        .search-form .btn i {
            font-size: 0.9rem;
        }
    }

    /* Dropdown Styling */
    .dropdown-menu {
        border: none;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .dropdown-menu.show {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .dropdown-item:hover {
        background-color: rgba(33, 150, 243, 0.1);
        color: var(--primary-color);
        background: rgba(33, 150, 243, 0.1);
       
    }

    /* User Menu Icon */
    .nav-item .fa-user-circle {
        font-size: 1.5rem;
        color: var(--primary-color);
        transition: transform 0.3s ease;
    }

    .nav-item:hover .fa-user-circle {
        transform: scale(1.1);
    }

    /* Footer Enhancement */
    .footer {
        background-color: var(--light-color);
        padding: 2.5rem 0 1.5rem;
        margin-top: 2rem;
        animation: fadeIn 1s ease-in-out;
    }

    .footer h5, .footer h6 {
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 1.2rem;
    }

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

    .footer ul li {
        margin-bottom: 0.6rem;
        font-size: 1rem;
    }

    .footer a {
        color: var(--dark-color);
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer a:hover {
        color: var(--primary-color);
        text-decoration: underline;
    }

    .footer i {
        color: var(--primary-color);
    }

    /* Responsive Adjustments */
  

    /* Add these styles to your existing CSS */
    .nav-link {
        padding: 0.5rem 1rem;
        position: relative;
    }

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

    .nav-link:hover:after {
        width: 100%;
    }

    .nav-link i {
        transition: transform 0.3s ease;
    }

    .nav-link:hover i {
        transform: scale(1.2);
    }

    /* Enhanced Responsive Styles */
    @media (max-width: 991px) {
        .navbar-collapse {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            margin: 0.5rem 1rem;
        }

        .search-form {
            order: 1;
            width: 100%;
            margin: 1rem 0;
        }

        .navbar-nav {
            order: 2;
        }

        .nav-item {
            width: 100%;
            margin: 0.2rem 0;
        }

        .dropdown-menu {
            border: none;
            background: #f8f9fa;
            padding-left: 1rem;
        }

        .navbar-brand img {
            width: 35px;
            height: 35px;
        }

        .nav-link {
            padding: 0.8rem 1rem;
            border-radius: 6px;
        }

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

    /* Small devices */
  

    /* Additional Responsive Enhancements */
    .nav-link {
        transition: all 0.3s ease;
    }

        .navbar-toggler {
            border: none;
            padding: 0.5rem;
            background-color: transparent;
            position: relative;
            z-index: 1000;
            margin-right: 0;
        }

        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }

        .navbar-toggler-icon {
            width: 1.5em;
            height: 1.5em;
            background-size: contain;
            transition: transform 0.3s ease;
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
            transform: rotate(90deg);
        }    /* Smooth height transition for dropdowns */
    

    .dropdown-menu.show {
        max-height: 300px;
    }

    /* Fluid Typography */
    @media screen and (min-width: 320px) {
        html {
            font-size: calc(14px + 2 * ((100vw - 320px) / 680));
        }
    }

    @media screen and (min-width: 1000px) {
        html {
            font-size: 16px;
        }
    }

    /* Enhanced Mobile Navigation */
    @media (max-width: 991px) {
        .navbar-collapse {
            max-height: 80vh;
            overflow-y: auto;
            scrollbar-width: thin;
            padding: 1rem;
        }

        .navbar-collapse::-webkit-scrollbar {
            width: 0.3125rem; /* 5px */
        }

        .navbar-collapse::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 10px;
        }

        .nav-item {
            transform: translateX(-10px);
            opacity: 0;
            animation: slideIn 0.3s forwards;
        }

        @keyframes slideIn {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .dropdown-menu {
            margin-left: 1rem;
            box-shadow: none;
            border-left: 2px solid var(--primary-color);
        }
    }

    /* Better Touch Targets */
   

    /* Ultra Mobile Adjustments */
    @media (max-width: 380px) {
        .navbar-brand span {
            display: none;
        }

        .search-form .form-control {
            font-size: 0.9rem;
        }
    }

    /* Improved Grid Layout */
    .container-fluid, .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    [class*="col-"] {
        padding: 0.625rem; /* 10px */
    }

    /* Touch-friendly Footer */
   

    /* Enhanced Mobile-First Styles */
    @media (max-width: 320px) {
        .navbar-brand {
            font-size: 1rem;
            max-width: 120px;
        }

        .search-form {
            max-width: 200px;
        }

        .footer {
            padding: 30px 15px;
        }
    }

    @media (max-width: 375px) {
        .nav-link {
            font-size: 0.9rem;
            padding: 0.6rem 0.8rem;
        }

        .dropdown-item {
            font-size: 0.9rem;
            padding: 0.5rem 0.8rem;
        }

        .search-form .form-control {
            height: 35px;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 425px) {
        .navbar-brand img {
            width: 30px;
            height: 30px;
        }


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

        .footer h5 {
            font-size: 1.1rem;
        }

        .footer p,
        .footer li {
            font-size: 0.9rem;
        }
    }

    /* Stack Navigation Items Vertically on Mobile */
    @media (max-width: 991px) {
        .navbar-nav {
            gap: 0.5rem;
        }

        .nav-item {
            width: 100%;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .nav-item:last-child {
            border-bottom: none;
        }

        /* Compact Dropdowns */
        .dropdown-menu {
            padding: 0.5rem 0;
            margin: 0;
            border-radius: 4px;
            background: rgba(33, 150, 243, 0.05);
        }
    }

    /* Improved Grid for Small Devices */
    @media (max-width: 576px){
        .user-icons-container {
            right: 100px !important;
            margin-right: 0 !important;
        }
    }
    @media (max-width: 786px){
        .user-icons-container {
            right: 100px !important;
            margin-right: 0 !important;
        }
    }
    /* E
    /* Enhanced Touch Areas */
    @media (max-width: 991px) {

        .nav-link,
        .dropdown-item {
            min-height: 44px;
            display: flex;
            align-items: center;
        }

        .navbar-toggler {
            width: 44px;
            height: 44px;
            padding: 0.4rem;
        }
    }

    /* Enhanced User Menu Styles */
    .user-menu-mobile {
        display: none;
        /* Remove this entire class if not needed */
    }

    .user-icons-container {
        display: flex;
        gap: 1rem;
        align-items: center;
        margin-left: 1rem;
        position: static;
        /* Changed from absolute */
    }

    @media (max-width: 991px) {
        .user-icons-container {
            position: static;
            /* Changed from absolute */
            margin-right: 3rem;
            /* Add space for hamburger menu */
        }
    }

  

    .user-icons-container {
        display: flex;
        gap: 1rem;
        align-items: center;
        margin-left: 1rem;
    }

    .user-icon {
        cursor: pointer;
        position: relative;
    }

    .user-icon i {
        font-size: 1.5rem;
        color: var(--primary-color);
        transition: transform 0.3s ease;
    }

    .user-icon:hover i {
        transform: scale(1.1);
    }

    .user-icon .badge {
        position: absolute;
        top: -0.3125rem;
        right: -0.3125rem;
        font-size: 0.7rem;
    }

    @media (max-width: 991px) {
        .user-icons-container {
            position: absolute;
            top: 1rem;
            right: 4rem;
        }
    }

    

    /* Add Scrollable Dropdown Styles */
    .scrollable-dropdown {
        max-height: 400px;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) #f0f0f0;
    }

    .scrollable-dropdown::-webkit-scrollbar {
        width: 0.375rem; /* 6px */
    }

    .scrollable-dropdown::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 10px;
    }

    .scrollable-dropdown::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }

    

    /* Add these new styles at the end of your existing styles */
    .custom-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        min-width: 220px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 1000;
        max-height: 0;
        transition: all 0.3s ease, max-height 0.3s ease;
    }

    .user-icon.active .custom-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        max-height: 80vh;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.1);
    }

    .custom-dropdown::-webkit-scrollbar {
        width: 0.375rem; /* 6px */
    }

    .custom-dropdown::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 0.1875rem; /* 3px */
    }

    .custom-dropdown::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 0.1875rem; /* 3px */
    }

    .dropdown-inner {
        padding: 0.5rem 0; /* 8px 0 */
        scroll-behavior: smooth;
    }

    .user-icon.active .custom-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-item {
        padding: 0.5rem 1rem; /* 8px 16px */
        display: flex;
        align-items: center;
        color: #333;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    
    .dropdown-divider {
        height: 0.0625rem; /* 1px */
        background: rgba(0, 0, 0, 0.1);
        margin: 0.5rem 0; /* 8px 0 */
    }

    .dropdown-section {
        padding: 0.5rem 0; /* 8px 0 */
    }

    .section-header {
        padding: 0.5rem 1rem; /* 8px 16px */
        font-weight: 600;
        color: var(--primary-color);
        font-size: 0.9rem;
    }

    .dropdown-section .dropdown-item {
        padding-left: 40px;
    }

    .custom-dropdown::before,
    .custom-dropdown::after {
        content: '';
        position: fixed;
        left: 0;
        right: 0;
        height: 1.25rem; /* 20px */
        pointer-events: none;
        z-index: 1;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .custom-dropdown::before {
        top: 0;
        background: linear-gradient(to bottom, white, transparent);
    }

    .custom-dropdown::after {
        bottom: 0;
        background: linear-gradient(to top, white, transparent);
    }

    .custom-dropdown.show-top-indicator::before {
        opacity: 1;
    }

    .custom-dropdown.show-bottom-indicator::after {
        opacity: 1;
    }

    @media (max-width: 768px) {
        
        .fa-bell, .fa-bars { font-size: 1.5rem !important; }
       
        .footer .container-fluid { margin: 0 !important; padding: 1.25rem 0.9375rem !important; }
        .footer .row { margin: 0 !important; display: flex; flex-direction: row; }
        .footer .col-md-4 { padding: 0 0.9375rem !important; text-align: left !important; margin-bottom: 0 !important; }
        .footer ul.list-unstyled { padding: 0 !important; display: block !important; }
        .footer ul.list-unstyled li { justify-content: flex-start !important; text-align: left !important; }
        .footer p, .footer h5, .footer ul { text-align: left !important; margin-left: 0 !important; }
        .footer { padding: 3.75rem 0 1.875rem !important; }
    
        .container-fluid { padding-left: 0.9375rem !important; padding-right: 0.9375rem !important; }
        .navbar-brand { margin-left: 0 !important; }
        .user-icons-container { right: 60px !important; margin-right: 0 !important; }
        .navbar-toggler { margin-right: 0 !important; }
        .search-form { margin: 10px 0 !important; width: 100% !important; }
    
        .menu-content { padding: 1rem; }
        .category-grid { grid-template-columns: 1fr; gap: 1rem; }
        .category-card { padding: 1rem; }
    
        .drpd { position: static; box-shadow: none; border: none; background: transparent; margin-left: 1rem; }
        .drli { padding: 0.5rem 0.75rem; }
        .project-count { right: 0.75rem; }
    
        .custom-dropdown { position: fixed; bottom: 0; left: 0; right: 0; border-radius: 0.75rem 0.75rem 0 0; transform: translateY(100%); max-height: 80vh; overflow-y: auto; }
        .user-icon.active .custom-dropdown { transform: translateY(0); }
        .dropdown-inner { padding: 16px 0; }
        .dropdown-item { padding: 12px 20px; }
    }
    

    /* Section Header Dropdown Styles */
    .section-header-dropdown {
        padding: 0.5rem 1rem; /* 8px 16px */
        font-weight: 600;
        color: var(--primary-color);
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .section-header-dropdown:hover {
        background-color: rgba(33, 150, 243, 0.05);
    }

    .section-header-dropdown i.fa-chevron-down {
        transition: transform 0.3s ease;
    }

    .section-header-dropdown.active i.fa-chevron-down {
        transform: rotate(180deg);
    }

    .section-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .section-content.active {
        max-height: 500px;
    }

    .drpd {
        display: block;
        width: 100%;
        list-style-type: none;
        padding-block: 0.625rem; /* 10px */
        padding-inline: 0px;
        z-index: 1000;
        margin-top: 0.3125rem; /* 5px */
    }

    .drpd li:hover {
        background-color: var(--primary-color);
        color: white;
    }
    
    .drpd li {
        padding: 3% 15%;
        margin: 0;
        color: var(--dark-color);
        transition: all 0.3s ease;
    }
    
    .drpd {
        position: absolute;
        background-color: var(--light-color);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    /* Enhanced Dropdown Styles */
    .drpd {
        display: none;
        min-width: 13.75rem; /* 220px */
        background: var(--light-color);
        border-radius: 0.5rem; /* 8px */
        padding: 0.5rem 0; /* 8px 0 */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.08);
        z-index: 1000;
        opacity: 0;
        transform: translateY(0.625rem); /* 10px */
        transition: all 0.3s ease;
    }

    .drp:hover .drpd {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .drli {
        padding: 0.625rem 1rem; /* 10px 16px */
        display: flex;
        align-items: center;
        color: var(--dark-color);
        font-size: 0.9rem;
        transition: all 0.2s ease;
        cursor: pointer;
        position: relative;
    }

    .drli i {
        width: 1.25rem; /* 20px */
        color: var(--primary-color);
        transition: transform 0.2s ease;
    }

    .drli:hover i {
        transform: translateX(3px);
    }

    .drli:hover {
        background: rgba(33, 150, 243, 0.08);
        color: var(--primary-color);
    }

    .project-count {
        position: absolute;
        right: 1rem; /* 16px */
        background: rgba(33, 150, 243, 0.1);
        padding: 0.125rem 0.5rem; /* 2px 8px */
        border-radius: 0.75rem; /* 12px */
        font-size: 0.75rem;
        color: var (--primary-color);
    }

    .dropdown-divider {
        height: 0.0625rem; /* 1px */
        background: rgba(0, 0, 0, 0.06);
        margin: 0.5rem 0; /* 8px 0 */
    }

    .view-all {
        color: var(--primary-color);
        font-weight: 500;
    }

    .view-all:hover {
        background: var(--primary-color);
        color: white;
    }

     
    /* Fullscreen Menu Styles */
    .fullscreen-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        z-index: 9999;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .fullscreen-menu.active {
        display: flex;
        flex-direction: column;
        opacity: 1;
    }

    .menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .menu-header h2 {
        color: var(--primary-color);
        margin: 0;
    }

    .close-menu {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--dark-color);
        cursor: pointer;
        padding: 0.5rem;
        transition: transform 0.3s ease;
    }

    .close-menu:hover {
        transform: rotate(90deg);
    }

    .menu-content {
        flex: 1;
        overflow-y: auto;
        padding: 2rem;
    }

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

    .category-card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        padding: 1.5rem;
        transition: transform 0.3s ease;
    }

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

    .category-header {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .category-header i {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-right: 1rem;
    }

    .category-header h3 {
        margin: 0;
        color: var(--dark-color);
    }

    .subcategories {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .sub-item {
        color: var(--dark-color);
        text-decoration: none;
        padding: 0.5rem;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .sub-item:hover {
        background: var(--primary-color);
        color: white;
        transform: translateX(5px);
    }

    
    /* Improve navbar responsiveness */
   
    /* Footer adjustments for mobile */
   
    /* Adjust dropdown menu for mobile */
 

    /* Improve user icon spacing */
   

   

    /* Adjust carousel for mobile */
  

    /* Add animations for navbar links */
    .nav-link {
        position: relative;
        overflow: hidden;
        transition: color 0.3s ease;
    }

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

    .nav-link:hover::after {
        width: 100%;
    }

    /* Add bounce animation to icons */
    .nav-link i {
        transition: transform 0.3s ease;
    }

    .nav-link:hover i {
        transform: translateY(-3px);
    }

    /* Dropdown animations */
    
    .dropdown-menu.show {
        opacity: 1;
        transform: translateY(0);
    }

    /* Footer hover effects */
    .footer a {
        position: relative;
        overflow: hidden;
        transition: color 0.3s ease;
        color: var(--dark-color);
        transition: color 0.3s ease;
    }

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

    .footer a:hover::after {
        width: 100%;
    }

    /* Add fade-in animation for the footer */
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

  

    /*

    

    /* Additional spacing fixes */
   
    #abd {
        scale: 2;
    }
         



    /* index css */
 Add these styles 

    
    /* Responsive Adjustments */
    
    /* Modern Section Styling */
    .section-header {
        margin-bottom: 3rem;
    }

    .divider {
        height: 4px;
        width: 70px;
        background: var(--primary-color);
        margin: 1rem auto;
    }

    /* Custom Accordion Styling */
    .custom-accordion .accordion-button {
        padding: 1.2rem;
        font-weight: 500;
        border: none;
        background: white;
    }

    .custom-accordion .accordion-button:not(.collapsed) {
        color: var(--primary-color);
        background: rgba(33, 150, 243, 0.05);
    }

    .custom-accordion .accordion-body {
        padding: 1.5rem;
    }

    /* Progress Bars */
    .skill-progress {
        margin-bottom: 1.5rem;
    }

    .progress {
        height: 10px;
        border-radius: 5px;
    }

    .progress-bar {
        background-color: var(--primary-color);
        transition: width 1s ease;
    }

    /* Modern List Group Styling */
    .list-group-item {
        border: none;
        padding: 1rem 1.5rem;
        margin-bottom: 0.5rem;
        border-radius: 8px !important;
        transition: all 0.3s ease;
    }

    .list-group-item:hover,
    .list-group-item.active {
        background-color: var(--primary-color);
        color: white;
        transform: translateX(5px);
    }

    /* Scrollspy Enhancement */
    .scrollspy-example {
        height: 500px;
        overflow-y: auto;
        border-radius: 10px;
    }

    /* Loading Animation */
    .spinner-grow {
        width: 3rem;
        height: 3rem;
    }

    /* Smart Animations */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Progress Bar Animation */
    .progress-bar {
        width: 0;
        transition: width 1.5s ease-in-out;
    }

    /* Typing Effect Cursor */
    .type-text::after {
        content: '|';
        animation: blink 1s step-end infinite;
    }

    @keyframes blink {
        50% {
            opacity: 0;
        }
    }

    /* Smart Hover Effects */
    .project-card {
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .project-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, var(--primary-color), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

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

    .project-card:hover::before {
        opacity: 0.2;
    }

    /* Smart Loading State */
    .loading-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        transition: opacity 0.5s ease;
    }

    .loading-overlay.loaded {
        opacity: 0;
        pointer-events: none;
    }

    /* Parallax Effect */
    .parallax-section {
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    /* Adjust carousel for mobile */
    
   


    .scrollspy-example {
        height: 500px;
        overflow-y: auto;
        border-radius: 10px;
        scroll-behavior: smooth;
        position: relative;
    }

    .project-item {
        scroll-margin-top: 20px;
    }

    .list-group-item.active {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        transform: translateX(5px);
    }

    .project-content {
        min-height: 300px;
        /* Ensure enough content for scrolling */
    }


    /* <style> */
    /* Global Responsive Styles */
     
 
    /* Skills Section Responsive Updates */
    .skills-section {
        padding: var(--section-padding) 0;
    }

    .section-header h2 {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    /* Projects Section Responsive Updates */
    .projects-section {
        padding: var(--section-padding) 0;
        background-color: var(--light-color);
    }

    .project-nav {
        position: sticky;
        top: var(--header-height);
        z-index: 10;
    }

    .scrollspy-example {
        height: clamp(400px, 70vh, 600px);
        overflow-y: auto;
        border-radius: 10px;
        scroll-behavior: smooth;
        position: relative;
        background: #fff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .project-item {
        scroll-margin-top: 20px;
    }

    .list-group-item.active {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
        transform: translateX(5px);
        transition: all 0.3s ease;
    }

    .list-group-item {
        border: none;
        padding: 1rem 1.5rem;
        margin-bottom: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .list-group-item:hover {
        background-color: rgba(33, 150, 243, 0.1);
        color: var(--primary-color);
    }

    /* Responsive Grid Layout */
    .project-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    /* Responsive Buttons */
    .btn {
        white-space: nowrap;
        padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 3vw, 2rem);
    }

    /* Responsive Typography */
    h1,
    .h1 {
        font-size: clamp(2rem, 5vw, 4rem);
    }

    h2,
    .h2 {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }

    h3,
    .h3 {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
    }

    p {
        font-size: clamp(1rem, 1.5vw, 1.2rem);
    }

    /* Media Queries */
    @media (max-width: 992px) {
        .project-nav {
            position: static;
            margin-bottom: 2rem;
        }

        .list-group {
            display: flex;
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 1rem;
        }

        .list-group-item {
            display: inline-block;
            border-radius: 20px !important;
            margin-right: 0.5rem;
        }
    }

    

 

    /* Touch Device Optimizations */
    @media (hover: none) {
        .list-group-item:hover {
            transform: none;
        }
  .btn:hover {
            transform: none;
        }

        .control-icon:hover {
            transform: none;
        }
    }

    /* Dark Mode Support */
    @media (prefers-color-scheme: dark) {
        .bg-light {
            background-color: #1a1a1a !important;
        }

        .bg-white {
            background-color: #242424 !important;
        }

        .text-dark {
            color: #f8f9fa !important;
        }

        .progress {
            background-color: #333;
        }
    }
/* </style> */
/* <style> */
     

    
    .control-icon {
        width: 30px;
        height: 30px;
    }

    /* Reduced Button Sizes */
    .btn {
        padding: 0.35rem 0.75rem;
        font-size: 0.8rem;
    }

    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .designfont {
        font-family: "Permanent Marker", cursive;
        font-weight: 400;
        font-style: normal;
        font-size: 2.0rem;

    }

    .btn-sm {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }

    /* Reduced Section Spacing */
    .section-header {
        margin-bottom: 1.5rem;
    }

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

    /* Reduced Accordion Size */
    /* .accordion-button {
      padding: 0.5rem 0.75rem;
      font-size: 0.9rem;
  }
  
  .accordion-body {
      padding: 0.75rem;
  } */

    /* Smaller Progress Bars */
    /* .progress {
      height: 0.5rem;
      margin-bottom: 0.5rem;
  } */

    /* .skill-progress h5 {
      font-size: 0.85rem;
      margin-bottom: 0.35rem;
  } */

    /* Reduced List Group */
    .list-group-item {
        padding: 0.5rem 0.75rem;
        margin-bottom: 0.25rem;
        font-size: 0.85rem;
    }

    /* Reduced Scrollspy Height */
    .scrollspy-example {
        height: 400px;
        padding: 0.75rem;
    }

    /* Reduced Project Items */
    .project-item {
        margin-bottom: 1rem;
    }

    .project-item h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    /* Reduced Badge Size */
    .badge {
        padding: 0.35em 0.65em;
        font-size: 0.75em;
    }

    /* Reduced Spinner Size */
    .spinner-grow {
        width: 1.5rem;
        height: 1.5rem;
    }

    /* Reduced Container Padding */
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    /* Reduced Typography */
  

   
  
    h4,
    .h4 {
        font-size: 1.125rem;
    }

     

    /* Reduced Icon Sizes */
    .fas,
    .fab {
        font-size: 0.9rem;
    }

    /* Media Queries Adjustments */
    
    @media (max-width: 576px) {
        /* Carousel */
        
    
        /* Buttons & Section Headers */
        .btn { padding: 0.25rem 0.5rem; font-size: 0.75rem; }
        .section-header { margin-bottom: 1rem; }
    
        /* Container */
        .container { padding-left: 1rem; padding-right: 1rem; }
    
        /* Footer */
        .footer {
            padding: 1.875rem 0 !important;
            text-align: center;
        }
        .footer h5 { font-size: 1rem; }
        .footer ul li { font-size: 0.85rem; text-align: left; }
        .footer ul { padding-left: 0; }
    
        /* Navbar */
        .navbar-brand img { width: 30px; height: 30px; }
        .navbar-brand span { font-size: 1rem; }
        .navbar-toggler { padding: 0.4rem; }
        .nav-link { font-size: 0.85rem; padding: 0.5rem 0.8rem; }
    
        /* Scrollable Dropdown */
        .scrollable-dropdown { max-height: 300px; }
    
        /* User Icons */
        .user-icons-container { gap: 0.5rem; margin-right: 2.5rem; right: 3.5rem; }
        .user-icon i { font-size: 1.2rem; }
    
        /* Menu & Category */
        .fullscreen-menu { padding: 1rem; }
        .menu-header h2 { font-size: 1.5rem; }
        .category-card { padding: 1rem; }
        .category-header h3 { font-size: 1rem; }
        .sub-item { font-size: 0.85rem; }
    
        /* Skills Section */
        .skills-section { padding: 1rem; }
        .accordion-button { font-size: 0.9rem; }
        .accordion-body { font-size: 0.85rem; }
    
        /* Projects Section */
        .projects-section { padding: 1rem; }
        .project-nav { margin-bottom: 1rem; }
        .list-group-item { font-size: 0.85rem; }
        .project-item h3 { font-size: 1.2rem; }    
    }



.carousel-caption {
    position: absolute;
    top: 34%; /* Center vertically */
    left: 0%; /* Center horizontally */
    transform: translate(-15%, -50%); /* Adjust for centering */
    z-index: 2; /* Ensure it appears above the carousel image */
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8); /* Optional: Add text shadow for readability */
    width: 98%; /* Ensure it spans the width of the carousel */
    padding: 1rem; /* Add some padding for spacing */
    box-sizing: border-box; /* Include padding in width calculation */
    
}
.carousel-inner{
    height: 60vh; /* Full height of the viewport */
    border-radius: 10px; /* Optional: Add rounded corners */
}


/* General Dropdown Styles */
.custom-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-icon.active .custom-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-dropdown .dropdown-inner {
    padding: 0.5rem 0;
}

.custom-dropdown .dropdown-item {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.custom-dropdown .dropdown-item:hover {
    background: rgba(33, 150, 243, 0.1);
    color: var(--primary-color);
}

.custom-dropdown .dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0.5rem 0;
}

.custom-dropdown .dropdown-header {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.custom-dropdown .view-all {
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
    display: block;
    padding: 0.5rem 0;
}

.custom-dropdown .view-all:hover {
    background: var(--primary-color);
    color: white;
}

/* Adjust Badge */
.user-icon .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.7rem;
    background-color: #dc3545;
    color: #fff;
    border-radius: 50%;
    padding: 2px 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .custom-dropdown {
        min-width: 180px;
    }

    .user-icon .badge {
        font-size: 0.6rem;
        padding: 1px 4px;
    }
}




.user-icons-container {
    right: 100px !important;
    margin-right: 0 !important;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align icons to the right */
    gap: 15px; /* Add spacing between icons */
}

.user-icon {
    position: relative; /* For badge positioning */
}

.user-icon a {
    font-size: 1.5rem; /* Adjust icon size */
    color: #007bff; /* Ensure consistent color */
}

.user-icon .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.75rem; /* Adjust badge size */
    padding: 2px 5px; /* Adjust padding for better appearance */
}

/* Adjust layout for mobile screens */
@media (max-width: 768px) {
    .user-icons-container {
        gap: 25px; /* Reduce spacing between icons on smaller screens */
    }

    .navbar-toggler {
        margin-left: auto; /* Ensure the hamburger menu stays on the far right */
    }

    .user-icons-container {
        order: 1; /* Ensure icons appear before the hamburger menu */
    }
    img{
        object-fit: fill;
    }
}   

.carousel-item img {
    width: 100%; /* Ensure the image spans the full width of the container */
    height: 100%; /* Ensure the image spans the full height of the container */
    object-fit: cover; /* Maintain aspect ratio and fill the container */
    object-position: center; /* Center the image within the container */
}
@media (max-width: 768px) {
    .carousel-inner {
        height: 50vh; /* Set carousel height to 50% of the viewport height for mobile screens */
    }

    .carousel-item img {
        object-fit: cover; /* Ensure the image maintains its aspect ratio and fills the container */
        height: 100%; /* Ensure the image spans the full height of the carousel */
    }
}
.carousel-item img {
    width: 100%;
    height: max(400px, 50vh); /* Set a minimum height for the carousel images */
}



        .nav1 {
            z-index: 1000;
            height: 70px;
            width: calc(100% - 40px);
            /* Subtract margin from width */
            position: fixed;
            background-color: #f8f9fa !important;
            border-radius: 100px;
            box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
            padding: 10px 20px;
            margin: 10px 20px;
            /* Add horizontal margin */
            top: 0;
            left: 0;
        }

        /* Add responsive adjustments */
        @media (max-width: 768px) {
            .nav1 {
                width: calc(100% - 20px);
                margin: 10px 10px;
                border-radius: 50px;
            }
        }
        .main{
    margin-top: 80px; /* Adjust this value based on your navbar height */
    padding: none;
    background-color: #f8f9fa;
}
        /* Fix navbar collapse behavior */

        @media (min-width: 0px) and (max-width: 991px) {
            main {
                padding: 0;
                margin-top: 0;

            }

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

            .navbar-collapse {
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background: #f8f9fa;
                padding: 1.5rem;
                border-radius: 7px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                margin: 0;
            }
        }


        /* Downsheet menu styling */
        .downsheet-menu {
            color:#f8f9fa;
            position: fixed;
            bottom: -100%;
            /* Initially hidden */
            left: 0;
            width: 100%;
            background-color: #0c0b0bec;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
            z-index: 1050;
            transition: bottom 0.3s ease-in-out;
            /* Smooth slide-up animation */
            padding: 20px;
        }

        .downsheet-menu.active {
            bottom: 0;
            /* Slide up when active */
        }

        .downsheet-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .downsheet-header h5 {
            margin: 0;
        }

        .downsheet-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #000;
        }

        .downsheet-content {
            max-height: 50vh;
            /* Limit height */
            overflow-y: auto;
            /* Enable scrolling if content overflows */
        }

        /* Ensure proper spacing for dropdown items */
        .downsheet-content .dropdown-item {
            color: aliceblue;
            padding: 10px 15px;
            font-size: 1rem;
        }

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

        .breadcrumb-container.active {
            display: block;
        }
        /* Mobile-specific adjustments */
        @media (max-width: 768px) {
            .downsheet-menu {
                padding: 15px;
            }
        } 



        /* dropdown */
         /* Dropdown menu styling */
         .dropdown-menu {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }

        .dropdown-item {
            padding: 10px 20px;
            font-size: 14px;
            color: #333;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .dropdown-item:hover {
            background-color: #007bff;
            color: #fff;
        }

        /* Adjust dropdown for mobile */
        @media (max-width: 768px) {
            .dropdown-menu {
                width: 100%;
                border-radius: 8px;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                background-color: #fff;
                margin-top: 5px;
                position: static;
            }

            .dropdown-item {
                padding: 12px 20px;
                font-size: 15px;
                color: var(--dark-color);
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }

            .dropdown-item:last-child {
                border-bottom: none;
            }

            .dropdown-toggle::after {
                float: right;
                margin-top: 8px;
            }

            .nav-item.dropdown {
                position: relative;
            }

            .navbar-nav .dropdown-menu {
                max-height: none;
                overflow: visible;
            }
        }

        /* General adjustments for mobile screens */
        @media (max-width: 768px) {
            .nav1 {
                width: calc(100% - 20px);
                margin: 10px 10px;
                border-radius: 50px;
            }

            .navbar-collapse {
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background: #f8f9fa;
                padding: 1.5rem;
                border-radius: 7px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                margin: 0;
            }

            .breadcrumb-container {
                padding: 10px;
                font-size: 14px;
            }

            .user-icons-container {
                display: flex;
                justify-content: space-between;
                padding: 10px 0;
            }

            .user-icon {
                flex: 1;
                text-align: center;
            }

            .user-icon .nav-link {
                font-size: 1.2rem;
            }
        }

        /* General breadcrumb styling */
        .breadcrumb-container {
            background-color: #f8f9fa;
            padding: 10px 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            margin: 10px 0;
            font-size: 1rem;
            flex-grow: 1;
        }

        .breadcrumb-container-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .breadcrumb-container .breadcrumb {
            margin-bottom: 0;
            padding: 0;
            background: none;
        }

        .breadcrumb-container .breadcrumb-item a {
            color: #007bff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-container .breadcrumb-item a:hover {
            color: #0056b3;
        }

        .breadcrumb-container .breadcrumb-item.active {
            color: #6c757d;
        }

        /* Breadcrumb button styling */
        #toggle-breadcrumb-btn {
            position: fixed; /* Make it floating */
            right: 20px; /* Adjust horizontal position */
            width: 50px; /* Reduce width */
            height: 50px; /* Make it square */
            background-color: #007bff;
            color: #fff;
            border: none;
            border-radius: 50%; /* Make it circular */
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for floating effect */
            transition: background-color 0.3s ease, transform 0.2s ease;
            z-index: 1000; /* Ensure it stays on top */

            margin-top: 70px;
        }

        #toggle-breadcrumb-btn:hover {
            background-color: #0056b3;
            transform: scale(1.1); /* Slight zoom effect on hover */
        }

        #toggle-breadcrumb-btn i {
            margin: 0; /* Center the icon */
        }

        /* Breadcrumb container adjustments */
        .breadcrumb-container {
            position: fixed; /* Make it floating */
            top: 80px; /* Position below the button */
            left: 20px; /* Adjust horizontal position */
            width: auto; /* Adjust width as needed */
            max-width: 300px; /* Limit maximum width */
            background-color: #f8f9fa;
            padding: 10px 15px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for floating effect */
            display: none; /* Initially hidden */
            z-index: 999; /* Ensure it stays on top */
        }

        .breadcrumb-container.active {
            display: block; /* Show when active */
        }

        /* Mobile-specific adjustments */
        @media (max-width: 768px) {
            #toggle-breadcrumb-btn {
                width: 40px; /* Smaller button for mobile */
                height: 40px;
                font-size: 1rem;
                top: 15px;
                right: 15px;
            }

            .breadcrumb-container {
                top: 70px; /* Adjust position for mobile */
                left: 10px;
                max-width: 90%; /* Use most of the screen width */
            }
        }

        @media (max-width: 768px) {
            .breadcrumb-container-wrapper {
                flex-direction: row-reverse;
                justify-content: space-between;
                align-items: center;
            }

            .breadcrumb-container {
                font-size: 0.9rem;
                padding: 8px 10px;
                border-radius: 5px;
                margin: 0;
            }

            #toggle-breadcrumb-btn {
                font-size: 0.9rem;
                margin-left: 0;
            }
        }



        

    /* Modern Portfolio Styling */
     .portfolio-container {
        background-color: #f8f9fa;
        color: #333;
        margin-inline: 2.3vh;
    }
    :root {
        --primary-color: #2196f3;
        --secondary-color: #1976d2;
        --text-color: #333;
        --bg-color: #f8f9fa;
        --card-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .portfolio-container {
        background-color: var(--bg-color);
        color: var(--text-color);
    }

    /* Profile Header */
    .profile-header {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 3rem 0;
    }

    .name-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .contact-info {
        display: flex;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-top: 1.5rem;
    }

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

    .social-link:hover {
        background: white;
        color: var(--primary-color);
        transform: translateY(-3px);
    }

    /* Section Styling */
    .section-title {
        font-size: 1.75rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: var(--primary-color);
    }

    .content-card {
        background: white;
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: var(--card-shadow);
    }

    .education-item, .project-item {
        margin-bottom: 1.5rem;
    }

    .skill-list, .projects-grid ul, .certifications-grid ul {
        list-style: none;
        padding: 0;
    }

    .skills-grid ul {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .skills-grid ul li, .projects-grid ul li, .certifications-grid ul li {
        background: white;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: var(--card-shadow);
        flex: 1 1 calc(33.333% - 1rem);
        margin-bottom: 1rem;
    }

    .subtitle {
        font-size: 1rem;
        color: var(--secondary-color);
        margin-bottom: 0.5rem;
    }

    .architecture-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .arch-card {
        background: white;
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: var(--card-shadow);
        transition: transform 0.3s ease;
    }

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

    .arch-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .arch-icon i {
        font-size: 1.5rem;
        color: white;
    }

    .arch-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
        color: var(--text-color);
    }

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

    .arch-list li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
        color: var(--text-color);
    }

    .arch-list li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: var(--primary-color);
    }

    @media (max-width: 768px) {
        .architecture-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Adjust profile header for mobile */
    @media (max-width: 576px) {
        .profile-header {
            padding: 2rem 1rem;
        }

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

        .contact-info {
            flex-direction: column;
            gap: 0.5rem;
        }

        .social-links {
            gap: 0.5rem;
        }

        .social-link {
            width: 35px;
            height: 35px;
        }
    }

    /* Adjust section titles for mobile */
    @media (max-width: 576px) {
        .section-title {
            font-size: 1.5rem;
        }
    }

    /* Improve grid layout for smaller screens */
    @media (max-width: 576px) {
        .architecture-grid, .projects-grid {
            grid-template-columns: 1fr;
        }

        .arch-card, .project-item {
            padding: 1rem;
        }

        .arch-icon {
            width: 40px;
            height: 40px;
        }

        .arch-icon i {
            font-size: 1.2rem;
        }
    }

    /* Adjust carousel for mobile */
    @media (max-width: 576px) {
        .carousel-inner img {
            height: 30vh; /* Set height to 30vh for mobile screens */
        }
    }
    .hero-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        overflow: hidden;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }
    
    .floating-card {
        animation: float 3s ease-in-out infinite;
    }
    
    .icon-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
    }
    
    .client-stats h3 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--bs-primary);
    }
    
    .client-stats p {
        color: #6c757d;
        font-size: 0.9rem;
    }
    
    @media (max-width: 991.98px) {
        .hero-section {
            padding: 4rem 0;
        }
        
        .hero-content {
            text-align: center;
            padding: 2rem 0;
        }
        
        .client-stats {
            justify-content: center;
        }
    }
    @media (min-width: 992px){
        .mobbilecrausal{
            display: none;
        }
    }
   




        
           .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 6px;
            background-color: #fff;
            border: none;
            opacity: 0.5;
            transition: opacity 0.3s ease;
        }

        .carousel-indicators .active {
            opacity: 1;
            background-color: #fff;
        }
        .accordion-item {
            border: none !important;
        }

        .carousel-caption {
            padding-top: 1.8rem;
        }
        .breadcrumb-container-wrapper{
            display: none;
        }

        /* Accordion Styles */
        .accordion-item {
            border: none !important;
            background: #f8f9fa;
            border-radius: 1.2em;
            margin-bottom: 1.2em;
            box-shadow: 0 2px 8px rgba(33,150,243,0.08);
        }
        .accordion-button {
            font-weight: 600;
            font-size: 1.1rem;
            background: #f8f9fa;
            color: #0066ff;
            border: none;
            border-radius: 0.7em !important;
            margin-bottom: 0.5em;
            transition: background 0.2s;
            box-shadow: none;
        }
        .accordion-button:not(.collapsed) {
            background: #e3f2fd;
            color: #0066ff;
        }
        .accordion-body {
            background: #fff;
            border-radius: 0.7em;
            box-shadow: 0 2px 8px #0066ff;
            padding: 1.2em 1.5em;
            font-size: 1rem;
        }

        /* Section Header */
        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.5em;
            color: #0066ff;
        }
        .divider {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #0066ff 0%, #0066ff 100%);
            border-radius: 2px;
            margin: 0.5em auto 1.5em auto;
        }

        /* Projects Section */
        .projects-section {
            background: #f8f9fa;
        }
        .project-nav .list-group-item {
            border: none;
            border-radius: 1.2em;
            margin-bottom: 0.5em;
            font-weight: 500;
            color: #0066ff;
            background: #e3f2fd;
            transition: background 0.2s, color 0.2s;
        }
        .project-nav .list-group-item.active,
        .project-nav .list-group-item:hover {
            background: #0066ff;
            color: #fff;
        }
        .scrollspy-example {
            background: #fff;
            border-radius: 1.2em;
            box-shadow: 0 2px 8px #0066ff;
            padding: 2em 2em 1em 2em;
            min-height: 400px;
        }
        .project-item h3 {
            color: #0066ff;
            font-size: 1.5rem;
            font-weight: 700;
        }
        .project-item ul {
            padding-left: 1.2em;
        }
        .project-item li {
            margin-bottom: 0.5em;
            font-size: 1.05rem;
        }

        /* Responsive tweaks */
        @media (max-width: 991.98px) {
            .projects-section {
                padding: 2rem 0;
            }
            .project-nav {
                margin-bottom: 2em;
                position: static !important;
            }
            .scrollspy-example {
                padding: 1em 0.5em;
                min-height: 200px;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
            .divider {
                width: 40px;
                height: 3px;
            }
        }

        /* General */
        body {
            font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
            background: #f8f9fa;
            color: #222;
            line-height: 1.6;
        }

        a {
            color: #0066ff;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #004bb5;
            text-decoration: underline;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            overflow: hidden;
            min-height: 100vh;
            padding: 0;
            position: relative;
        }
        .hero-content {
            padding: 2rem 0 2rem 0;
        }
        @media (max-width: 991.98px) {
            .hero-section {
                padding: 3rem 0 1.5rem 0;
                min-height: unset;
            }
            .hero-content {
                text-align: center;
                padding: 1.5rem 0;
            }
            .hero-image {
                width: 70%;
                margin: 0 auto 2rem auto;
                display: flex;
                justify-content: center;
            }
            .hero-image img {
                width: 100%;
                border-radius: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
            .floating-card {
                position: relative !important;
                right: 0 !important;
                bottom: 0 !important;
                width: 90% !important;
                margin: 1rem auto !important;
                transform: translateY(-20px);
            }
            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
                max-width: 300px;
                margin: 0 auto;
            }
            .client-stats {
                justify-content: center;
                gap: 1.2rem;
                margin-top: 1.5rem;
                flex-wrap: wrap;
            }
            .client-stats > div {
                text-align: center;
                flex: 0 0 45%;
                margin-bottom: 1rem;
            }
            .badge.bg-primary {
                font-size: 0.95rem;
                padding: 0.5em 1em;
            }
            .display-4 {
                font-size: 2rem;
            }
            .lead {
                font-size: 1rem;
            }
            .floating-card {
                min-width: unset;
                font-size: 0.95rem;
                padding: 1em 1em;
            }
            .position-absolute.d-none.d-lg-block {
                display: none !important;
            }
        }
        @media (min-width: 992px) {
            .hero-content {
                text-align: left;
                padding-right: 2rem;
            }
            .hero-image {
                display: flex;
                align-items: center;
                justify-content: flex-end;
            }
            .hero-image img {
                max-width: 90%;
            }
            .hero-buttons {
                flex-direction: row;
                gap: 1rem;
            }
            .client-stats {
                justify-content: flex-start;
                gap: 2rem;
            }
        }
        .display-4 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
        }
        .lead {
            font-size: 1.15rem;
            color: #555;
        }
        .badge.bg-primary {
            background: linear-gradient(90deg, #0066ff 0%, #2196f3 100%);
            font-size: 1rem;
            padding: 0.6em 1.2em;
            border-radius: 2em;
            letter-spacing: 0.05em;
        }
        .hero-buttons .btn {
            font-size: 1rem;
            padding: 0.8em 1.5em;
            border-radius: 2em;
            box-shadow: 0 2px 8px rgba(33,150,243,0.08);
            transition: background 0.2s, color 0.2s;
        }
        .hero-buttons .btn-outline-primary {
            border: 2px solid #0066ff;
            color: #0066ff;
            background: transparent;
        }
        .hero-buttons .btn-outline-primary:hover {
            background: #0066ff;
            color: #fff;
        }
        .hero-buttons .btn-primary {
            background: #0066ff;
            border: none;
        }
        .hero-buttons .btn-primary:hover {
            background: #004bb5;
        }
        .floating-card {
            background: #fff;
            border-radius: 1.2em;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 1.2em 1.5em;
            min-width: 220px;
            animation: float 3s ease-in-out infinite;
            z-index: 2;
        }
        @keyframes float {
            0% { transform: translateY(0px);}
            50% { transform: translateY(-10px);}
            100% { transform: translateY(0px);}
        }
        .icon-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #0066ff;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }
        .client-stats h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #0066ff;
        }
        .client-stats p {
            color: #6c757d;
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        /* Section Header */
        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.5em;
            color: #0066ff;
        }
        .divider {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #0066ff 0%, #2196f3 100%);
            border-radius: 2px;
            margin: 0.5em auto 1.5em auto;
        }

        /* Accordion */
        .accordion-item {
            border: none !important;
            background: #f8f9fa;
            border-radius: 1.2em;
            margin-bottom: 1.2em;
            box-shadow: 0 2px 8px rgba(33,150,243,0.08);
        }
        .accordion-button {
            font-weight: 600;
            font-size: 1.1rem;
            background: #f8f9fa;
            color: #0066ff;
            border: none;
            border-radius: 0.7em !important;
            margin-bottom: 0.5em;
            transition: background 0.2s;
            box-shadow: none;
        }
        .accordion-button:not(.collapsed) {
            background: #e3f2fd;
            color: #0066ff;
        }
        .accordion-body {
            background: #fff;
            border-radius: 0.7em;
            box-shadow: 0 2px 8px #0066ff;
            padding: 1.2em 1.5em;
            font-size: 1rem;
        }

        /* Projects Section */
        .projects-section {
            background: #f8f9fa;
        }
        .project-nav .list-group-item {
            border: none;
            border-radius: 1.2em;
            margin-bottom: 0.5em;
            font-weight: 500;
            color: #0066ff;
            background: #e3f2fd;
            transition: background 0.2s, color 0.2s;
        }
        .project-nav .list-group-item.active,
        .project-nav .list-group-item:hover {
            background: #0066ff;
            color: #fff;
        }
        .scrollspy-example {
            background: #fff;
            border-radius: 1.2em;
            box-shadow: 0 2px 8px #0066ff;
            padding: 2em 2em 1em 2em;
            min-height: 400px;
        }
        .project-item h3 {
            color: #0066ff;
            font-size: 1.5rem;
            font-weight: 700;
        }
        .project-item ul {
            padding-left: 1.2em;
        }
        .project-item li {
            margin-bottom: 0.5em;
            font-size: 1.05rem;
        }

        /* Loading Spinner */
        .loading-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(255,255,255,0.7);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s;
        }
        .loading-overlay.loaded {
            opacity: 0;
            pointer-events: none;
        }

        /* Responsive tweaks for accordion and projects */
        @media (max-width: 991.98px) {
            .section-header h2 {
                font-size: 1.5rem;
            }
            .divider {
                width: 40px;
                height: 3px;
            }
            .projects-section {
                padding: 1.5rem 0;
            }
            .project-nav {
                margin-bottom: 1.5em;
                position: static !important;
            }
            .scrollspy-example {
                padding: 1em 0.5em;
                min-height: 200px;
            }
            .project-item h3 {
                font-size: 1.15rem;
            }
        }

        /* Make ads responsive */
        @media (max-width: 1200px) {
            .adsbygoogle[style] {
                width: 100% !important;
                min-width: 0 !important;
                max-width: 100% !important;
                height: 50px !important;
            }
        }

        /* General improvements */
        @media (max-width: 575.98px) {
            .hero-image {
                width: 95%;
            }
            .hero-content {
                padding: 1rem 0.2rem;
            }
            .scrollspy-example {
                padding: 0.5em 0.2em;
            }
            .floating-card {
                font-size: 0.9rem;
                padding: 0.8em 0.8em;
            }
        }

        /* Mobile Image Container Interactivity */
        @media (max-width: 991.98px) {
            .hero-image-wrapper {
                position: relative;
                width: 100%;
                padding: 1rem;
                perspective: 1000px;
            }

            .hero-image {
                width: 70%;
                margin: 0 auto;
                transform-style: preserve-3d;
                transition: transform 0.3s ease;
            }

            .hero-image img {
                width: 100%;
                border-radius: 20px;
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
                transition: all 0.3s ease;
            }

            .hero-image.active img {
                transform: scale(1.02);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            }

            .floating-card {
                position: relative !important;
                width: 85% !important;
                margin: -30px auto 0 !important;
                backdrop-filter: blur(10px);
                background: rgba(255, 255, 255, 0.95);
                transform: translateY(0);
                transition: all 0.3s ease;
            }

            .floating-card.active {
                transform: translateY(-10px);
            }
        }










        /* About Page Styles */
        .bg-gradient {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }
    
        .about-content {
            padding-right: 2rem;
        }
    
        .about-image-wrapper {
            position: relative;
            padding: 1rem;
        }
    
        .about-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 80%;
            height: 80%;
            border: 4px solid rgba(255,255,255,0.2);
            border-radius: 1rem;
            transform: translate(1rem, 1rem);
            z-index: 0;
        }
    
        .icon-box {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
    
        .icon-box:hover {
            transform: scale(1.1);
            background-color: var(--secondary-color);
        }
    
        .skill-list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--text-color);
        }
    
        .skill-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }
    
        .card {
            transition: transform 0.3s ease;
            border-radius: 12px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease;
        }
    
        .card:hover {
            transform: translateY(-5px);
        }
    
        .card.visible {
            opacity: 1;
            transform: translateY(0);
        }
    
        @media (max-width: 768px) {
            .about-content {
                padding-right: 0;
                text-align: center;
            }
    
            .about-image-wrapper {
                margin-top: 2rem;
            }
    
            .about-image-wrapper::before {
                width: 70%;
                height: 70%;
            }
        }
    
        .arch-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
    
        .arch-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
    
        .arch-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
    
        .arch-icon i {
            font-size: 1.75rem;
            color: white;
        }
    
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }
    
        .feature-list li {
            padding-left: 1.5rem;
            position: relative;
            margin-bottom: 0.75rem;
            color: var(--text-color);
        }
    
        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }
    
        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }
    
        .tech-badge {
            background: rgba(33, 150, 243, 0.1);
            color: var(--primary-color);
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.875rem;
            font-weight: 500;
        }
    
        @media (max-width: 768px) {
            .arch-card {
                padding: 1.5rem;
            }
    
            .arch-icon {
                width: 50px;
                height: 50px;
            }
    
            .arch-icon i {
                font-size: 1.5rem;
            }
        }
    
        /* Combine all @media (max-width: 576px) */
        @media (max-width: 576px) {
            .about-hero {
                padding: 2rem 1rem;
            }
    
            .about-content {
                text-align: center;
            }
    
            .about-content h1 {
                font-size: 1.8rem;
            }
    
            .about-content p {
                font-size: 0.9rem;
            }
    
            .about-image-wrapper img {
                width: 100%;
            }
    
            .experience-section {
                padding: 1rem;
            }
    
            .card {
                padding: 1rem;
            }
    
            .icon-box {
                width: 40px;
                height: 40px;
            }
    
            .icon-box i {
                font-size: 1.2rem;
            }
    
            .architecture-section {
                padding: 1rem;
            }
    
            .arch-card {
                padding: 1rem;
            }
    
            .arch-icon {
                width: 40px;
                height: 40px;
            }
    
            .arch-icon i {
                font-size: 1.2rem;
            }
        }
    
        /* FAQ Section Styles */
        .faq-section {
          
            padding: 3rem 0;
        }
    
        .accordion-button {
            background: var(--primary-color);
            color: white;
            font-weight: bold;
        }
    
        .accordion-button:not(.collapsed) {
            background: #f9f9f9;
        }
    
        .accordion-body {
            color: var(--text-color);
        }
    
        @media (max-width: 768px) {
            .faq-section {
                padding: 2rem 1rem;
            }
        }



       
        :root {
            --primary-color: #0066FF;
            --primary-light: #E6F0FF;
            --text-dark: #333333;
            --text-light: #666666;
            --border-color: #E5E7EB;
            --success-color: #10B981;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        
        body {
            background-color: #F9FAFB;
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .progress-bar {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            padding: 20px 0;
        }
        
        .progress-step {
            display: flex;
            align-items: center;
            margin: 0 20px;
            font-size: 14px;
            color: var(--text-light);
        }
        
        .progress-step.active {
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .progress-step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: #E6E6E6;
            color: #666;
            margin-right: 8px;
            font-size: 12px;
        }
        
        .progress-step.active .progress-step-number {
            background-color: var(--primary-color);
            color: white;
        }
        
        .form-container {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            padding: 40px;
            margin-bottom: 40px;
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .form-header h1 {
            color: var(--primary-color);
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .form-header h2 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .form-header p {
            color: var(--text-light);
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .video-container {
            display: flex;
            margin: 30px 0;
            border-radius: 8px;
            overflow: hidden;
            background-color: #F3F4F6;
        }
        
        .video-wrapper {
            flex: 1;
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
        }
        
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 8px 0 0 8px;
        }
        
        .video-info {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .video-info h3 {
            font-size: 18px;
            margin-bottom: 15px;
        }
        
        .video-info p {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 14px;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 10px var(--primary-color);
        }
        
        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 40px;
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        .checkbox-group {
            margin-bottom: 20px;
        }
        
        .checkbox-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
        }
        
        .checkbox-item input[type="checkbox"] {
            margin-right: 10px;
            margin-top: 4px;
        }
        
        .checkbox-item label {
            font-size: 14px;
            color: var(--text-dark);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: transform 0.3s ease, background-color 0.3s ease;
            text-align: center;
            text-decoration: none;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            background-color: #0052CC;
        }
        
        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
        }
        
        .btn-outline:hover {
            background-color: var(--primary-light);
        }
        
        .form-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }
        
        .testimonial {
            background-color: var(--primary-light);
            padding: 30px;
            border-radius: 8px;
            margin: 40px 0;
            position: relative;
        }
        
        .testimonial-quote {
            color: var(--primary-color);
            font-style: italic;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 12px;
        }
        
        .testimonial-author-inaqo {
            font-size: 14px;
        }
        
        .testimonial-author-info strong {
            display: block;
            font-weight: 600;
        }
        
        .faq-section {
            margin: 40px 0;
        }
        
        .faq-section h2 {
            text-align: center;
            font-size: 24px;
            margin-bottom: 30px;
        }
        
        .faq-item {
            border-bottom: 1px solid var(--border-color);
            padding: 16px 0;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 500;
            padding: 8px 0;
        }
        
        .faq-question::after {
            content: "+";
            font-size: 20px;
            color: var(--text-light);
        }
        
        .faq-answer {
            display: none;
            padding: 12px 0;
            color: var(--text-light);
            font-size: 14px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer.open {
            max-height: 200px;
        }
        
        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .video-container {
                flex-direction: column;
            }
            
            .form-container {
                padding: 20px;
            }
            
            .form-actions {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
            }
        }

        /* Adjust form layout for mobile */
        @media (max-width: 576px) {
            .form-container {
                padding: 1rem;
            }

            .form-header h1 {
                font-size: 1.5rem;
            }

            .form-header h2 {
                font-size: 1.2rem;
            }

            .form-header p {
                font-size: 0.85rem;
            }

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

            .form-group label {
                font-size: 0.85rem;
            }

            .form-control {
                font-size: 0.85rem;
            }

            .btn {
                font-size: 0.85rem;
                padding: 0.5rem 1rem;
            }
        }

        /* Adjust FAQ section for mobile */
        @media (max-width: 576px) {
            .faq-section h2 {
                font-size: 1.5rem;
            }

            .faq-question {
                font-size: 0.9rem;
            }

            .faq-answer {
                font-size: 0.85rem;
            }
        }
