/* ========================================
   TISHITU LANDING PAGE - CUSTOM STYLES
   Design Philosophy: Modern Tech-Forward Minimalism
   Colors: Blue (#1E40AF) Primary, Orange (#FF6B35) Accent
   ======================================== */

/* ========== Root Variables ========== */



:root {
    --primary-blue: #2284c1;
    --primary-lulu: #8500cd;
    --accent-orange: #FF6B35;
    --success-green: #10B981;
    --light-gray: #F9FAFB;
    --border-gray: #E5E7EB;
    --text-dark: #1F2937;
    --text-light: #6B7280;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --accent-red: #dc2626;

    --dark-navy: #0f172a;

     --maroon: #5b3df5;
    --text-bright: #c9a6ff;
    --dark-navy-bhai: #ff8a3d;
    --glass: rgba(255, 255, 255, 0.95);
}

.color-icon{
    color: var(--maroon);
}

/* ========== Global Styles ========== */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

section{
    margin-top: 60px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

body {
    
    color: var(--text-dark);
    line-height: 1.6;
     overflow-x: hidden;
}
/* 
  sody {
            font-family: 'Inter', sans-serif;
            background-color: #f8fafc;
            color: var(--dark-navy);
            line-height: 1.6;
            scroll-padding-top: 80px; 
        } */

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-orange);
}



/* ========== Header & Navigation ========== */
header {
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.navbar {
    /* padding: 1rem 0; */
    background: var(--glass);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 0px 0; /* Tight navbar */
}

.logo-img {
    /* height: 55px;
    width: auto;
    display: block; */

     height: 45px;
            width: 180px; /* Adjust based on your logo width */
            display: inline-block;
            background-color: var(--accent-red);
            -webkit-mask-image: url('./images/TISHITUSHARPL.png');
            mask-image: url('./images/TISHITUSHARPL.png');
            -webkit-mask-size: contain;
            mask-size: contain;
            -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
            transition: 0.3s;
    /* object-fit: contain; */
}

.logo-box img {
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

  /* .navbar-brand:hover .logo-img {
            background-color: #b91c1c;
            transform: scale(2.05);
        } */
element.style {
    height: 80px;
    width: auto;
    transition: 0.3s;
}
.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Poppins', sans-serif;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}
/* ========== navbar active ========== */

.nav-link {
    position: relative;
}

.active-nav {
    color: #75152b !important;
    font-weight: 600;
}

.active-nav::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    width: 80%;
    height: 2px;
    background: #75152b;
}




/* ========== Buttons ========== */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a32a8;
    border-color: #1a32a8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* ========== Hero Section ========== */
.hero-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    padding: 5rem 0;
}
 .hero-section {
    background: radial-gradient(circle at 20% 20%, rgba(30,64,175,0.15), transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(255,107,53,0.15), transparent 40%),
                linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-form-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
    overflow: hidden;
    border: 2px solid var(--primary-blue);
}

.form-card-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    color: white;
    padding: 2rem;
    text-align: center;
}

.form-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.form-card-subtitle {
    font-size: 0.95rem;
    opacity: 0.95;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.hero-form {
    padding: 2rem;
}

.hero-form .form-control-lg {
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-form .form-control-lg:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25);
}

.hero-form .btn-primary {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
}

.badge-offer {
    display: inline-block;
    background-color: #fed7aa;
    color: #92400e;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary-lulu), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.gradient-icon {

  background: linear-gradient(
    135deg,
    #7873df 30%,
    /* #cbb9f6 45%, */
    #f97316 100%
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
padding-bottom: 1rem;
}
.icon-outline{
    font-size: 100px;
    color: orange;
    -webkit-text-stroke: 1px #333;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.section-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========== Problem Section ========== */
.problem-section {
    padding: 5rem 0;
}

.problem-list {
    margin-top: 2rem;
}

.problem-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.problem-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

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

/* ========== Solution Section ========== */
.solution-section {
    padding: 5rem 0;
}

.solution-list {
    margin-top: 2rem;
}

.solution-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background-color: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.solution-item:hover {
    background-color: #e0f2fe;
    transform: translateX(4px);
}

.solution-item i {
    font-size: 1.5rem;
    color: var(--success-green);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.solution-item div {
    flex: 1;
}

.solution-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

/* ========== Comparison Table ========== */
.comparison-table {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

/* Header */
.comparison-table thead {
    background-color: #0d6efd;
    color: white;
}

.comparison-table th {
    padding: 15px;
    font-size: 16px;
}

/* Highlight Tishitu */
.tishitu-col {
    background-color: #e6f4ea;
    font-weight: 600;
}

/* Cells */
.comparison-table td {
    padding: 15px;
    vertical-align: middle;
}

/* Hover */
.comparison-table tbody tr:hover {
    background-color: #f8f9fa;
    transition: 0.3s;
}

/* Badge */
.badge {
    font-size: 13px;
    border-radius: 20px;
}

/* Small text */
small {
    font-size: 12px;
}



/* ========== Timeline ========== */
/* ===== CURRICULUM / TIMELINE FIX ===== */

.curriculum-section {
    background: #f9fafb;
}

.container-lg {
    /* max-width: 1140px; */
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
    padding-left: 30px;
}

/* Vertical Line */
.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1E40AF, #FF6B35);
    border-radius: 4px;
}

/* Each Item */
.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

/* Circle Marker */
.timeline-marker {
    position: absolute;
    left: -5px;
    top: 5px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1E40AF, #FF6B35);
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card */
.phase-content {
    background: #fff;
    padding: 20px;
    margin-left: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.phase-content:hover {
    transform: translateY(-5px);
}


/* FORCE APPLY BUTTON STYLE */
a.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #fff !important;
    background: #FF6B35 !important;
    border: 2px solid #FF6B35 !important;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* HOVER */
a.read-more-btn:hover {
    background: #fff !important;
    color: #FF6B35!important;
    border-color: #FF6B35 !important;
}

/* OPTIONAL: arrow animation (only if you add span) */
a.read-more-btn .arrow-icon {
    transition: transform 0.3s ease;
}

a.read-more-btn:hover .arrow-icon {
    transform: translateX(6px) scale(1.2);
}

/* ========== Achievements Section ========== */
.achievements-section {
    padding: 5rem 0;
    margin-bottom: 80px;
}

.achievement-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.achievement-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.achievement-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.achievement-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}


/* ===== JOURNEY FINAL FIX ===== */

/* ========== Projects Section ========== */
.projects-section {
    padding: 5rem 0;
}

.project-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.project-card:hover {
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.project-title {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-tech {
    color: var(--accent-orange);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ========== Testimonials Section ========== */
.testimonials-section {
    padding: 5rem 0;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-name {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--accent-orange);
    font-size: 0.875rem;
    margin: 0;
}

/* ========== FAQ Section ========== */
.faq-section {
    padding: 5rem 0;
}

.accordion-item {
    border: 1px solid var(--border-gray);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.25rem;
    border: none;
    font-size: 1rem;
}

.accordion-button:not(.collapsed) {
    background-color: #f0f9ff;
    color: var(--primary-blue);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(30, 64, 175, 0.25);
}

.accordion-body {
    background-color: white;
    color: var(--text-light);
    padding: 1.25rem;
    border-top: 1px solid var(--border-gray);
}

/* ========== CTA Section ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), #1a32a8);
    /* padding: 5rem 0; */
    /* border-radius: 40px; */
     margin-top: 3rem;
     /* margin:10px; */
}

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

.cta-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ========== Footer ========== */
.footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 3rem 0 1rem;
}

.logo-box-footer {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

.brand-name-footer {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.footer a {
    color: #d1d5db;
}

.footer a:hover {
    color: white;
}

.footer h5 {
    color: white;
    font-weight: 700;
}

.footer .small {
    color: #9ca3af;
}

/* ========== Modal Styles ========== */
.modal-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    border: none;
}

.modal-content {
    border-radius: 12px;
    border: 2px solid var(--primary-blue);
}

.form-control {
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25);
}

/* ========== Utility Classes ========== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange)) !important;
}

.text-light-hover:hover {
    color: white !important;
}



header {

    color: pink;
    background-color: rgb(176, 176, 191);
    padding: 0px !important;
    font-family: Arial, sans-serif;
}
/* Initial transparent navbar */
.nav-color{
    background: transparent !important;
    border-bottom: none !important;
    transition: all 0.3s ease;
}

/* After scroll */
.nav-color.scrolled{
    background: rgba(235, 235, 235, 0.75) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    
}

/* White menu text */
.nav-color .nav-link{
    color: #000000 !important;
}

.nav-color .nav-link:hover{
    color: #ddd !important;
}

/* Black text when navbar is transparent */
.nav-color .nav-link{
    color: #000000 !important;
}

/* White text after scrolling */
.nav-color.scrolled .nav-link{
    color: #000000 !important;
}

/* Optional hover colors */
.nav-color .nav-link:hover{
    color: #333 !important;
}

.nav-color.scrolled .nav-link:hover{
    color: #ddd !important;
}

/* Hamburger icon black initially */
.nav-color .navbar-toggler{
    border-color: rgba(0,0,0,0.2);
}

.nav-color .navbar-toggler-icon{
    filter: none;
}

/* Hamburger icon white after scroll */
.nav-color.scrolled .navbar-toggler{
    border-color: rgba(255, 255, 255, 0.952);
}

.nav-color.scrolled .navbar-toggler-icon{
    filter: invert(1);
}
/* Bottom dissolve effect */
.nav-color.scrolled::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 10px;
    pointer-events: none;
/* 
    background: linear-gradient(
        to bottom,
        rgba(15,15,15,.5),
        rgba(15,15,15,0)
    ); */
}

.h2nav {
    color: rgb(226, 120, 26);
    font-family: 'Poppins', sans-serif;
    font-weight: 750;
    letter-spacing: 1px;
    /* border: 5px solid rgb(226, 120, 26); */
    padding: 2px 1px;
    /* underline-offset: 4px; */
     text-decoration: underline double rgb(226, 120, 26) 2px; 
        text-decoration-thickness: 2px;
    /* border-radius: 8px; */
}
.brand-subtitle{
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgb(226, 120, 26);;
    margin-bottom: 5px;
    text-align: center;
}

/* ===== DARK SECTION BACKGROUNDS ===== */

/* Main page background */


/* ===== STICKY FOOTER LAYOUT ===== */
/* html,
body{
    height: 100%;
} */

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Push footer to bottom */
.footer{
    margin-top: auto;

    /* darker than Bootstrap bg-dark (#212529) */
    background: #111111 !important;
    color: #d1d5db;
}

/* All footer links */
.footer a{
    color: #FF6B35 !important;
    transition: opacity .25s ease;
}

.footer a:hover{
    color: #FF6B35 !important;
    opacity: .8;
}

/* Footer headings */
.footer h5{
    color: #d7d7d7 !important;
}

/* Bottom copyright strip */
.footer .border-top{
    margin-top: 1rem;
    padding-top: .75rem !important;
    font-size: 0.75rem;
    line-height: 1.4;
}

/* Copyright paragraph */
.footer .border-top p{
    margin: 0;
    color: #9ca3af;
}
.brand-text{
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.social-icons a {
    color: #9ca3af !important;
}

.border-secondary{
    border-color: #272727 !important;
}










/* From Uiverse.io by JohnnyCSilva */ 
/* From Uiverse.io by JohnnyCSilva */ 
/* From Uiverse.io by JohnnyCSilva */ 

/* From Uiverse.io by JohnnyCSilva */ 
.tech-section{
    position: relative;
    overflow:visible;
}
/* .cards-slider{
    overflow-x:auto;
    overflow-y:visible;
} */

.cards-slider{
    display:flex;
    gap:2px;

    overflow-x:auto;
    overflow-y:hidden;

    scroll-behavior:smooth;
    scroll-snap-type:x mandatory;

    padding:20px 10px 30px;

    -webkit-overflow-scrolling:touch;
}

.cards-slider::-webkit-scrollbar{
    display:none;
}

.cards-slider{
    scrollbar-width:none;
}
.card{
    flex: 0 0 auto;

    width: 300px;
    height: 200px;

    background: #fff;
    border-radius: 5px;

    overflow: hidden;
    position: relative;

    scroll-snap-align: start;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

    z-index: 1;
}

/* IMAGE */

.img{
    width:100%;
    height:100%;
}

.img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* OVERLAY TEXT */

.text{
    position:absolute;
    left:-25px;
    bottom:-25px;
    width:100%;

    padding:20px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.65) 75%,
        rgba(0,0,0,0) 100%
    );

    color:white;

    transform: translateY(55px);
    transition: transform .35s ease;
}

/* TITLE */

.text .h3{
    color:#ededed;
    font-size:20px;
    font-weight:700;
    margin-left:12px;
}

/* HIDDEN CONTENT INITIALLY */

.text .p,
.text .span{
    opacity:0;
    visibility:hidden;
    transition:.25s ease;
    color:#fff;
}

/* HOVER EFFECT */

.card:hover{
    transform: scale(1.08);
    z-index:999;
    /* box-shadow:
        0 20px 40px rgba(0, 0, 0, 0); */
}

/* SLIDE OVERLAY UP */

.card:hover .text{
    transform: translateY(0);
}

/* SHOW CONTENT */

.card:hover .p,
.card:hover .span{
    opacity:1;
    visibility:visible;
}

/* DESCRIPTION */

.card:hover .p{
    margin-left:15px;
    font-size:14px;
    color:#ddd;
}

/* TAG */

.card:hover .span{
    display:inline-block;

    margin-left:15px;

    padding:4px;

    border-radius:5px;

    /* background:#ff6b35; */
    border: 2px solid #ff6b35;
    color:#fff;

    font-size:13px;
}











/* Registration HOW IT WORKS section TABS */


.custom-tabs-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

.tab-navigation {
    display: flex;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 25px 0;
    flex-wrap: wrap;
}

.tab-navigation li {
    margin: 0;
}

.tab-link {
    display: inline-block;
    padding: 12px 12px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-link:hover {
    background: #0d6efd;
}

.active-tab {
    background: #0d6efd;
    color: #fff;
}

.tab-content-wrapper {
    margin-top: 30px;
}

.tab-panel {
    display: none;
    padding: 40px 0;
    animation: fadeIn 0.3s ease;
}

.active-panel {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Register Page Ends */

/* about section by tarun  */


.about-section {
  padding: 30px 0;
  margin-top: 100px;
  display: flex;
  align-items: center;
}

.about-section .container {
  width: 100%;
  /* max-width: 1140px; */
  margin: 0 auto;
  padding: 0 20px;
}

.about-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  /* gap: 40px; */
}

.about-section .col-text {
  flex: 1 1 340px;
  /* max-width: 520px; */
}

.about-section .col-img {
  flex: 1 1 300px;
  max-width: 480px;
  display: flex;
  justify-content: center;
}

.about-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #212529;
}

.about-section p {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-section .btn-explore {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 32px;
  background-color: #0d6efd;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s;
}

.about-section .btn-explore:hover {
  background-color: #0b5ed7;
}

.about-section img {
  width: stretch;
  border-radius: 16px;
  object-fit: cover;
}


/* about section end here by tarun  */

/* founder section Tarun Shrivastava  */
.founder-section {
  padding: 3rem 0 3rem 0;

}

.founder-section .container {
  /* max-width: 860px; */
  margin: 0 auto;
  padding: 0 20px;
}

.founder-card {
  border: 1px solid #dee2e6;
  border-radius: 16px;
  overflow: hidden;
}

/* Header */
.founder-header {
  background: #f8f9fa;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #dee2e6;
}

/* .founder-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #cfe2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  color: #084298;
  flex-shrink: 0;
} */
 .founder-img-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #cfe2ff;
}

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

.founder-meta h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: #212529;
}

.founder-meta p {
  margin: 0;
  font-size: 0.875rem;
  color: #6c757d;
}

.founder-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  background: #cfe2ff;
  color: #084298;
}

/* Body */
.founder-body {
  padding: 28px;
  background: #fff;
}

.founder-bio {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.8;
  margin: 0 0 24px;
}
.founder-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.founder-card-link:hover .founder-img-wrap img {
    opacity: 0.92;
    transition: opacity 0.2s;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #adb5bd;
  margin: 0 0 12px;
}

/* Domain tags */
.domain-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.domain-tags span {
  font-size: 0.8rem;
  padding: 4px 14px;
  background: #f8f9fa;
  color: #495057;
  border-radius: 20px;
  border: 1px solid #dee2e6;
}

/* Timeline */
.timeline {
  border-left: 2px solid #dee2e6;
  padding-left: 20px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tl-item {
  position: relative;
}

.tl-dot {
  position: absolute;
  left: -27px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0d6efd;
  border: 2px solid #fff;
}

.tl-dot--green {
  background: #198754;
}

.tl-year {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0d6efd;
  margin: 0 0 2px;
}

.tl-year--green {
  color: #198754;
}

.tl-desc {
  font-size: 0.9rem;
  color: #212529;
  margin: 0;
}

/* Contributions */
.contrib-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.contrib-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contrib-icon {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.contrib-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #212529;
  margin: 0 0 2px;
}

.contrib-sub {
  font-size: 0.78rem;
  color: #6c757d;
  margin: 0;
}


/* End Founder Section tarun shrivastava */



.col-6 {
    padding-top: 20px;
}

/* SAVE */

/* .save{
    position:absolute;

    top:15px;
    right:15px;

    width:35px;
    height:35px;

    border-radius:10px;

    background:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    transition:.2s;
} */

/* .save:hover{
    transform:scale(1.1) rotate(10deg);
} */

/* TEXT */

.text{
    margin:12px;
}

.text .h3{
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.text .p{
    color: #888;
    font-size: 11px;
    margin-bottom: 10px;
}


/* CATEGORY */


.icon-box{
    margin-top: 8px;

    background: #e3fff9;

    padding: 8px;

    border-radius: 8px;
}


.span{
    color: #5d67ff;
    font-size: 11px;
    font-weight: 600;
}

/* ARROWS */

.slider-buttons{
    display:flex;
    gap:10px;
}

.slider-btn{
    width:42px;
    height:42px;

    border:none;
    border-radius:50%;

    background:#ffffff;

    box-shadow:0 3px 10px rgba(0,0,0,.15);

    transition:.3s;
}

.slider-btn:hover{
    transform:translateY(-2px);
}
/* GALLERY */
/* Fixed image size */
.gallery-img {
    width: 100%;
    height: 250px;          /* Fixed height */
    object-fit: cover;      /* Crop without distortion */
    border-radius: 10px;
    transition: transform 0.4s ease;
    cursor: pointer;
}

/* Hover effect */
.gallery-img:hover {
    transform: scale(1.03);
}

/* Smooth carousel animation */
.carousel-item {
    transition: transform 0.8s ease-in-out;
}


/* Optional: Dark arrows for light backgrounds */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Better spacing on mobile */

/* END GALLERY  */



/* 
@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 100% !important;
    }
} */
/* RESPONSIVE */

/* ===============================
   TABLETS
================================= */

/* @media (max-width: 992px){

    .cards-slider{
        gap:16px;
    }

    .card{
        width:220px;
        height:150px;
    }

    .text{
        padding:14px;
    }

    .text .h3{
        font-size:16px;
    }

    .card:hover{
        transform: scale(1.05);
    }
} */

/* ===============================
   MOBILE
================================= */
/* ========== Breadcrumb ========== */
/*
   Add this block at the bottom of your styler.css
   (or paste it anywhere after the :root block).
*/

.tishitu-breadcrumb-wrap {
    position: fixed;
    top: 80px;               /* sits flush below the 73px-tall navbar */
    left: 0;
    width: 100%;
    z-index: 9998;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-gray);
    padding: 7px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.tishitu-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
}

.tishitu-breadcrumb__item a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-blue);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tishitu-breadcrumb__item a i.fa-house {
    font-size: 0.78rem;
}

.tishitu-breadcrumb__item a:hover {
    color: var(--accent-orange);
}

.tishitu-breadcrumb__item.active span {
    color: var(--text-light);
    font-weight: 600;
    cursor: default;
}

.tishitu-breadcrumb__sep {
    color: var(--border-gray);
    font-size: 0.65rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

/* Push page content down when breadcrumb is visible */
/* Add class .has-breadcrumb to <body> on non-home pages,
   or simply target body with PHP — see note in header.php comments */
body.has-breadcrumb {
    padding-top: calc(73px + 36px); /* navbar + breadcrumb */
}

/* Without the class, keep normal padding for homepage */
body:not(.has-breadcrumb) {
    padding-top: 20px;
}

.how-to-section {
    padding: 5rem 0;
    background-color: #f5f5f5;
}





/* Responsive */
@media (max-width: 576px) {
  .founder-header {
    flex-direction: column;
    text-align: center;
    text-align: center;
  }
  .contrib-grid {
    grid-template-columns: 1fr;
  }
}

/* by tarun founder */

/* Mobile: stack vertically, image on top */
@media (max-width: 768px) {
  .about-section .row {
    flex-direction: column-reverse;
  }
  /* .tishitu-breadcrumb-wrap {
    margin-top: 20px;
  } */
  .about-section img {
    padding: 3rem;
    }
  .about-section .col-text,
  .about-section .col-img {
    max-width: 100%;
  }
}

















/* Mobile */
@media (max-width: 768px){
    .brand-subtitle{
        font-size: 0.45rem;
        letter-spacing: 0.8px;
    }
}
@media (max-width: 991.98px){

.about-section .row {
    flex-direction: column-reverse;
    gap: 30px;
}   
    .navbar-nav{
        align-items:flex-start !important;
    }

    .nav-link{
        display:inline-block;
    }

    .active-nav::after{
        width:100%;
        left:0;
        transform:none;
        bottom:0;
    }
}
























/* Mobile */
@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        font-size: 14px;
        padding: 10px;
    }

    small {
        font-size: 11px;
    }
}
/* Mobile Fix */
@media (max-width: 768px) {
    .timeline {
        padding-left: 20px;
    }

    .phase-content {
        margin-left: 30px;
    }
}







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

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

    .cta-title {
        font-size: 1.875rem;
    }

    .achievement-number {
        font-size: 2.5rem;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-marker {
        left: -2rem;
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }

    .hero-section,
    .problem-section,
    .solution-section,
    .curriculum-section,
    .achievements-section,
    .projects-section,
    .testimonials-section,
    .faq-section,
    .cta-section {
        padding: 3rem 0;
    }
}

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

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

    .cta-title {
        font-size: 1.5rem;
    }

    .badge-offer {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

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

    .d-flex.gap-3 {
        gap: 0.75rem !important;
    }
}

/* ========== Print Styles ========== */
@media print {
    header,
    .footer {
        display: none;
    }

    body {
        background-color: white;
    }
}






@media (max-width: 768px) {
    .gallery-img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    /* .tishitu-breadcrumb-wrap {
        top: 65px;
    } */
    .tishitu-breadcrumb {
        font-size: 0.75rem;
    }
}

/* ========== Breadcrumb ========== */
/*
   Add this block at the bottom of your styler.css
   (or paste it anywhere after the :root block).
*/

@media (max-width:420px){

    .cards-slider{
        display:grid;

        grid-auto-flow: column;

        grid-template-rows: repeat(2, 1fr);

        grid-auto-columns: calc(50% - 8px);

        gap:10px;

        overflow-x:auto;
        overflow-y:hidden;

        padding:10px 5px 20px;

        scroll-snap-type:x mandatory;
    }

    .card{
        width:100%;
        height:130px;

        border-radius:10px;

        scroll-snap-align:start;
    }

    .img{
        height:100%;
    }

    .text{
        padding:8px;
        transform: translateY(34px);
    }

    .text .h3{
        font-size:11px;
        line-height:1.25;
    }

    .text .p{
        font-size:9px;
        margin-top:5px;
    }

    .text .span{
        font-size:8px;
        padding:3px 7px;
    }

    .card:hover{
        transform:scale(1.1);
    }
}



























