          * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            }
            body {
            font-family: Source Sans\ 3, sans-serif !important;

            background: #ffffff;
            }
            .main-header {
            background: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.08);
            }
            .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 0px 24px;
            max-width: 1400px;
            margin: 0 auto;
            gap: 12px;
            }
            .header-left {
            display: flex;
            align-items: center;
            gap: 16px;
            flex: 1;
            min-width: 150px;
            }
            .logo {
            display: flex;
            align-items: center;
            }
            .search-container {
            position: relative;
            display: flex;
            align-items: center;
            flex: 1;
            min-width: 150px;
            }
            .search-icon {
            position: absolute;
            left: 12px;
            pointer-events: none;
            }
            .search-input {
            width: 100%;
            padding: 10px 12px 10px 40px;
            border: 1px solid #e0e0e0;
            border-radius: 24px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.2s;
            }
            .search-input:focus {
            border-color: #00A67E;
            }
            .main-nav {
            display: flex;
            gap: 24px;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            flex: 2;
            min-width: 200px;
            overflow-x: visible; /* allow dropdown to escape */
            position: relative;  /* parent reference for dropdown */
            }
            .nav-item {
            color: #1a1a1a;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: color 0.2s;
            white-space: nowrap;
            }
              .nav-items {
            color: #1a1a1a;
            text-decoration: none;
            font-size: 13px;
            font-weight: 200;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: color 0.2s;
            white-space: nowrap;
            }
            .nav-item:hover {
            color: #00A67E;
            }
            .dropdown-arrow {
            font-size: 10px;
            color: #666;
            }
            /* Dropdown wrapper */
            .dropdown {
            position: relative; /* parent for absolute dropdown */
            }
            /* Dropdown content */
       /* Dropdown container */
.dropdown {
    position: relative; /* ensure dropdown-content positions correctly */
}

/* Dropdown content */
.dropdown-content {
    display: none;          /* hide by default */
    position: absolute;
    top: 100%;              /* below the parent */
    left: 0;
    background-color: white;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 999;
    padding: 8px 0;
}

/* Show dropdown on hover of container */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Dropdown links */
.dropdown-content a {
    display: block;
    padding: 8px 16px;
    color: rgb(39,50,57);
    text-decoration: none;
    font-size: 13px;
    transition: background 0.2s, color 0.2s;
}

/* Hover effect for links */
.dropdown-content a:hover {
    background-color: #00A67E;
    color: white;
}

            .header-right {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
            justify-content: flex-end;
            min-width: 100px;
            }
            .icon-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
            position: relative;
            }
            .icon-btn:hover {
            background: #f5f5f5;
            }
            .notification-dot {
            position: absolute;
            top: 6px;
            right: 6px;
            width: 8px;
            height: 8px;
            background: #ff4444;
            border-radius: 50%;
            border: 2px solid white;
            }
            .user-menu {
            position: relative;
            }
            .user-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #e8e8e8;
            border: none;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            color: #333;
            transition: background 0.2s;
            }
            .user-avatar:hover {
            background: #d8d8d8;
            }
            .user-menu:hover .dropdown-menu {
            display: block;
            }
            .dropdown-menu {
            display: none;
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            min-width: 180px;
            z-index: 1000;
            }
            .dropdown-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: background 0.2s;
            }
            .dropdown-item:first-child {
            border-radius: 8px 8px 0 0;
            }
            .dropdown-item:last-child {
            border-radius: 0 0 8px 8px;
            }
            .dropdown-item:hover {
            background: #f5f5f5;
            }
            .header-bottom { 
            background: white;
            border-top: 1px solid #e8e8e8;
            padding: 12px 24px;
            position: relative;  /* keep relative for positioning context */
            overflow: visible;  
            }
            .secondary-nav {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: nowrap;
            scrollbar-width: none;
            }
            .secondary-nav::-webkit-scrollbar {
            display: none;
            }
            .secondary-nav-item {
            color: rgb(39, 50, 57);
            text-decoration: none;
            font-size: 13px;
            padding: 8px 0;
            white-space: nowrap;
            transition: color 0.2s, border-bottom-color 0.2s;
            border-bottom: 2px solid transparent;
            }
            .secondary-nav-item:hover {
            color: #00A67E;
            border-bottom-color: #00A67E;
            }
            /* Responsive */
            @media (max-width: 1024px) {
            .main-nav {
            gap: 16px;
            }
            .search-input {
            width: 180px;
            }
            }
            @media (max-width: 768px) {
            .header-top {
            flex-direction: column;
            align-items: stretch;
            }
            .header-left {
            justify-content: space-between;
            width: 100%;
            }
            .search-container {
            width: 100%;
            margin-top: 8px;
            }
            .main-nav {
            width: 100%;
            justify-content: flex-start;
            overflow-x: auto;
            padding: 8px 0;
            }
            .header-right {
            justify-content: flex-end;
            width: 100%;
            margin-top: 8px;
            }
            .secondary-nav {
            gap: 12px;
            }
            }
            @media (max-width: 480px) {
            .search-input {
            width: 100%;
            }
            .main-nav {
            gap: 8px;
            }
            .secondary-nav {
            gap: 8px;
            }
            }
            .hero-section {
            width: 100%; /* Full width */
            padding: 58px 24px; /* Top-bottom padding bada, left-right thoda */
            background: linear-gradient(180deg, #e6fff8, #fff);
            text-align: center; /* Content center */
            }
            .hero-title {
            font-size: 40px;
            font-weight: 600;
                margin-top: -28px;
            color: #00332a;
            line-height: 3.2;
            }
            .search-wrapper {
            position: relative;
            max-width: 800px;
            margin: 0 auto 25px;
            }
            .search-box {
            width: 100%;
            height: 66px;
            border-radius: 12px;
            background: none;
            color: gray;
            padding: 17px 50px 17px 24px;
            border: 1px solid grey;
            font-size: 20px;
            font-weight: 400;
            line-height: 26.6px;
            letter-spacing: normal;
            }
            .search-box:focus {
            border-color: #00A67E;
            box-shadow: 0 6px 20px rgba(0,166,126,0.15);
            }
            .search-btn {
            position: absolute;
            right: 6px;
            top: 50%;
            transform: translateY(-50%);
            background: #00A67E;
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
            }
            .search-btn:hover {
            background: #008c6a;
            }
            .search-btn svg {
            width: 20px;
            height: 20px;
            stroke: white;
            }
            .course-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin-top: 20px;
            }
            .btn {
            padding: 6px 12px;
            font-size: 14px;
            font-weight: 200;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s;
            white-space: nowrap;
            }
            .btn-primary {
            background: #00A67E;
            color: white;
            border: 1px solid grey;
            }
            .btn-primary:hover {
            background: #008c6a;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0,166,126,0.3);
            }
            .btn-outline {
            background: white;
            color: black;
            border: 1px solid grey;
            }
            .btn-outline:hover {
            border-color: #00A67E;
            color: #00A67E;
            background: rgba(0,166,126,0.05);
            }
            /* Responsive */
            @media (max-width: 768px) {
            .hero-title {
            font-size: 32px;
            margin-bottom: 30px;
            }
            .course-buttons {
            gap: 12px;
            }
            .btn {
            padding: 10px 20px;
            font-size: 14px;
            }
            }
            @media (max-width: 480px) {
            .hero-title {
            font-size: 28px;
            }
            .search-box {
            padding: 14px 48px 14px 18px;
            }
            }
            .insights-section {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 24px;
            padding: 25px 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            position: relative;
            overflow: hidden;
            border: 1px solid lightgrey;
            }
            .insights-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            }
            .left-side h2 {
            font-size: 40px;
            font-weight: 700;
            color: #0a2d27;
            margin-bottom: 16px;
            line-height: 1.2;
            }
            .left-side h2 span {
            color: #00A67E;
            }
            .left-side p {
            font-size: 18px;
            color: #555;
            margin-bottom: 32px;
            line-height: 1.6;
            }
            .explore-btn {
            background: #00A67E;
            color: white !important;
            padding: 14px 32px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            }
            .explore-btn:hover {
            background: #008c6a;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,166,126,0.3);
            }
            /* Floating Testimonials */
            .testimonials {
            position: relative;
            height: 380px;
            }
            .bubble {
            position: absolute;
            background: white;
            padding: 16px 20px;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            max-width: 220px;
            font-size: 14px;
            color: #333;
            line-height: 1.5;
            }
            .bubble::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            background: white;
            bottom: -8px;
            left: 30px;
            transform: rotate(45deg);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            }
            .testimonial-1 { top: 20px; right: 40px; }
            .testimonial-2 { top: 140px; left: 20px; }
            .testimonial-3 { bottom: 40px; right: 10px; }
            .avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #e0f7f4;
            margin-top: 12px;
            }
            .avatar-1 { position: absolute; top: 0; right: 0; }
            .avatar-2 { position: absolute; top: 100px; left: 80px; }
            .avatar-3 { position: absolute; bottom: 0; right: 80px; }
            /* Features Row */
            .features {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 60px;
            overflow-x: auto;           /* scroll ke liye thodi jagah */
            scrollbar-width: none;      /* Firefox mein scrollbar hide */
            -ms-overflow-style: none;   /* IE/Edge mein hide */
            flex-wrap: nowrap !important;  /* sabse important – kabhi wrap nahi hoga */
            width: 100%;
            }
            .features::-webkit-scrollbar {
            display: none;              /* Chrome/Safari mein scrollbar hide */
            }
            .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #ffffff;
            padding: 7px 15px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 500;
            color: #0a2d27;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid lightgrey;
            white-space: nowrap;
            flex: 0 0 auto;             /* yeh bhi force karta hai single line */
            transition: all 0.3s ease;
            }
            .feature-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
            }
            .feature-item img {
            width: 42px;
            height: 42px;
            padding: 8px;
            border-radius: 12px;
            object-fit: contain;
            }
            .feature-item:nth-child(1) img { background: linear-gradient(135deg, #e6e6ff, #d0d0ff); }
            .feature-item:nth-child(2) img { background: linear-gradient(135deg, #ffe6f0, #ffccdd); }
            .feature-item:nth-child(3) img { background: linear-gradient(135deg, #e6f7ff, #cceeff); }
            .feature-item:nth-child(4) img { background: linear-gradient(135deg, #fff4e6, #ffe0b3); }
            /* Responsive */
            @media (max-width: 992px) {
            .insights-content {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 40px;
            }
            .testimonials {
            height: 300px;
            }
            }
            @media (max-width: 600px) {
            .insights-section {
            padding: 40px 25px;
            }
            .left-side h2 {
            font-size: 32px;
            }
            .features {
            flex-direction: column;
            align-items: center;
            }
            .feature-item {
            min-width: 280px;
            }
            }
            .courses-section {
            max-width: 1000px;
            margin: 0 auto;
            margin-top: 74px;
            margin-bottom: 35px;
            }
            .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            }
            .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: #0a2d27;
            }
            .view-all {
            color: #00A67E;
            font-weight: 600;
            text-decoration: none;
            border: 2px solid #00A67E;
            padding: 8px 24px;
            border-radius: 50px;
            transition: all 0.3s;
            }
            .view-all:hover {
            background: #00A67E;
            color: white;
            }
            .courses-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 76px;
            }
            .course-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s;
            }
            .course-card:hover {
            transform: none;
            }
            .course-banner {
    height: 180px;
    position: relative;
    overflow: hidden;
    padding: 0;              /* IMPORTANT */
    background: none;        /* gradient hata do */
}
.course-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* 🔥 FULL COVER */
    display: block;
}

            /* Individual gradient for each card */
            /* .course-card:nth-child(1) .course-banner { background: linear-gradient(135deg, #0055ff, #00aaff); }
            .course-card:nth-child(2) .course-banner { background: linear-gradient(135deg, #00b894, #00cec9); }
            .course-card:nth-child(3) .course-banner { background: linear-gradient(135deg, #6c5ce7, #a29bfe); } */
            .rating {
            position: absolute;
            top: 13px;
            right: 16px;
            background: rgba(0, 0, 0, .4);
            padding: 2px 6px 4px 6px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 500;
            color: white;
            }
            .live-badge {
            background: #ff4757;
            color: white;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 4px;
            margin-top: 8px;
            }
            .banner-icon {
            
            }
            .course-title {
            font-size: 22px;
            font-weight: 700;
            margin: 16px 0 28px;
            display: -webkit-box;        /* required for line clamp */
    -webkit-line-clamp: 2;       /* show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;  
            }
            .level-text{
                    margin-left: -3px;
    margin-top: -3px;
            }
            .course-desc {
            color: #555;
            font-size: 15px;
            line-height: 1.5;
            margin-bottom: 16px;
            
            }
    
.network-circle {
    display: flex;
    align-items: flex-end; /* align bars at bottom */
    justify-content: center;
    width: 22px;           /* size of circle */
    height: 22px;
    background-color: #eeeeee9e; /* light grey circle */
    border-radius: 50%;     /* makes it a circle */
    padding-bottom: 6px;    /* bottom padding for bars */
    gap: 2px;               /* space between bars */
}

.bar {
    width: 2px;
    background-color: #817777; /* grey bars */
    border-radius: 2px;
}

/* Heights of bars for signal look */
.bar1 { height: 4px; }
.bar2 { height: 8px; }
.bar3 { height: 12px; }

            .course-level {
            color: grey;
            margin-bottom: 12px;
             display: flex;
    align-items: center;
    gap: 8px; /* space between text and bars */
    font-size: 14px;
            }
            .course-footer {
          display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0px 10px;
    color: #357960;
    margin-top: 38px;
    font-weight: 700;
    font-size: 14px;
            }
            .interested {
            color: #808080e0;
            font-size: 12px;
            }
             .interested::before {
            content: "↗ ";
        }
            .explore-btn {
            color: #00A67E;
            font-weight: 600;
            text-decoration: none;
            font-size: 15px;
            }
            .explore-btn:hover {
            text-decoration: underline;
            }
            @media (max-width: 1024px) {
            .courses-grid {
            grid-template-columns: 1fr 1fr;
            }
            }
            @media (max-width: 768px) {
            .courses-grid {
            grid-template-columns: 1fr;
            }
            .section-header h2 {
            font-size: 28px;
            }
            }
            .exp_now{
            font-size: 14px;
            font-weight: 700;
            line-height: 19px;
            letter-spacing: normal;
            color: #357960;
            background: none;
            border: none;
            width: -moz-max-content;
            width: max-content;
            text-decoration:none;
            }

            .exp_now:hover {
    background-color: #357960; /* light green background on hover */
    border-radius: 5px;        /* optional: rounded corners */
    transition: background-color 0.3s ease; /* smooth hover effect */
    color:white;
    padding:2px 8px 4px 8px;
}

            .star {
    color: #f5c518; /* yellow */
    font-size: 12px;
}

 .main-nav {
    display: flex;
    gap: 20px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
        margin-top: -1px;
}

.nav-icon {
    width: 12px;
    height: 12px;
    object-fit: contain;
}

/* Arrow styling */
.dropdown-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}


      .gfg-footer {
            background: #ffffff;
            padding: 33px 0 13px;
            border-top: 1px solid #e8e8e8;
            font-size: 14px;
            color: #333;
            line-height: 1.0;
        }

        .footer-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 340px 1fr 1fr 1fr 1fr;
            gap: 40px;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: 700;
            color: #00997a; /* Exact GFG green */
            margin-bottom: 8px;
        }

        .footer-logo span {
            font-size: 16px;
            font-weight: 500;
            color: #555;
            display: block;
            margin-top: 4px;
        }

        .address {
            margin: 24px 0;
            font-size: 13.5px;
            color: #444;
        }

        .address strong {
            color: #00997a;
            font-weight: 600;
            display: block;
            margin-bottom: 6px;
            font-size: 14px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
            margin: 28px 0;
        }

        .social-icons a {
            width: 36px;
            height: 36px;
            background: #f5f5f5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background: #00997a;
            transform: translateY(-3px);
        }

        .social-icons img {
            width: 20px;
            height: 20px;
            filter: brightness(0) saturate(100%) invert(30%);
        }

        .social-icons a:hover img {
            filter: brightness(0) saturate(100%) invert(100%);
        }

        .app-buttons {
            display: flex;
            gap: 12px;
        }

        .app-btn img {
            height: 42px;
            border-radius: 8px;
            border: 1px solid #ddd;
        }

        .footer-column h3 {
            font-size: 16px;
            font-weight: 600;
            color: #222;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 11px;
        }

        .footer-column ul li a {
            color: #444;
            text-decoration: none;
            font-size: 13.8px;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: #00997a;
        }

        .copyright {
            text-align: center;
            padding: 12px 0 0;
            margin-top: 40px;
            border-top: 1px solid #e8e8e8;
            font-size: 13.5px;
            color: #666;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: 300px 1fr 1fr 1fr;
                padding: 0 30px;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            .footer-logo {
                grid-column: 1 / -1;
                text-align: center;
            }
            .social-icons, .app-buttons {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer-container {
                grid-template-columns: 1fr;
                padding: 0 20px;
            }
            .app-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
    

       @media (max-width: 768px) {
    .courses-section {
        width: 100%;
        padding: 20px; /* optional, spacing ke liye */
    }

    .courses-grid {
        display: grid;
        grid-template-columns: 1fr; /* single column on mobile */
        gap: 20px; /* spacing between cards */
    }
}

