body{
	overflow-x: hidden;
	background-color:rgb(248, 248, 248);
}


.spacing{
	padding: 5px 5px 5px 5px;
}

  :root {
            --primary-blue: #4e54c8;
            --secondary-blue: #8f94fb;
            --light-yellow: #fff9e6;
            --medium-yellow: #ffe680;
            --accent-yellow: #FFD700;
            --light-gray: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f9fafc;
            color: #333;
            padding: 20px;
        }
        
        /* Belief Section Styles */
        #Technologies {
            position: relative;
            /* padding: 80px 0; */
            overflow: hidden;
            border-radius: 20px;
            margin: 40px 0;
        }
        
        #Technologies::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background-image: 
                radial-gradient(circle at 15% 25%, rgba(255, 230, 128, 0.2) 30px, transparent 30px),
                radial-gradient(circle at 85% 35%, rgba(255, 230, 128, 0.15) 25px, transparent 25px),
                radial-gradient(circle at 50% 70%, rgba(255, 230, 128, 0.25) 40px, transparent 40px),
                radial-gradient(circle at 75% 85%, rgba(255, 230, 128, 0.2) 35px, transparent 35px),
                radial-gradient(circle at 25% 90%, rgba(255, 230, 128, 0.15) 20px, transparent 20px); */
            background-size: 300px 300px;
            z-index: 0;
        }
        
        #Technologies .text-center h1 {
            color: #333;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }
        
        #Technologies .text-center h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
            border-radius: 2px;
        }
        
        .belief-text {
            max-width: 800px;
            margin: 0 auto 50px;
            font-size: 1.1rem;
            line-height: 1.7;
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 25px;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .card-group {
            position: relative;
            z-index: 2;
        }
        
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            background: rgba(255, 255, 255, 0.9);
            margin: 15px;
            height: 100%;
        }
        
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .card-body {
            padding: 25px;
            display: flex;
            flex-direction: column;
            height: 100%;
            /* Dual-color border */
            border-left: 5px solid var(--yellow);
            border-right: 5px solid var(--blue);
        }
        
        .card {
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .regButton {
            background: linear-gradient(to right, var(--yellow), var(--blue));
            color: white;
            border: none;
            font-weight: bold;
            padding: 10px 20px;
        }
        
        .regButton:hover {
            background: linear-gradient(to right, var(--blue), var(--yellow));
            color: white;
        }
        
        .slideshow-container {
            position: relative;
        }
        
        /* .mySlides {
            display: none;
        } */
        
        .active-slide {
            display: flex !important;
        }
        
        .slide-controls {
            position: absolute;
            bottom: 10px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 15px;
        }
        
        .slide-controls a {
            background-color: rgba(0,0,0,0.5);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .slide-controls a:hover {
            background-color: rgba(0,0,0,0.8);
        }
        
        /* For screens below 992px (tablet) */
        @media (max-width: 992px) {
            .card-body {
                padding: 20px;
                margin: 10px;
            }
        }

        /* For screens below 768px (mobile landscape) */
        @media (max-width: 768px) {
            .card-body {
                padding: 20px;
                margin: 10px 5px;
                border-left: 4px solid var(--yellow);
                border-right: 4px solid var(--blue);
            }
            
            .col-md-4 {
                padding-left: 5px;
                padding-right: 5px;
            }
            
            .card {
                margin-bottom: 20px;
            }
        }

        /* For screens below 576px (mobile portrait) */
        @media (max-width: 576px) {
            .card-body {
                padding: 20px;
                margin: 10px 0;
                border-left: 3px solid var(--yellow);
                border-right: 3px solid var(--blue);
            }
            
            .card {
                margin: 0 5px 20px 5px;
            }
            
            .col-lg-4.col-md-4.col-sm-12 {
                padding-left: 5px;
                padding-right: 5px;
            }
        }
        .card-title {
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
            justify-self: center;
        }
        
        .card-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: var(--accent-yellow);
            border-radius: 2px;
        }
        
        .card-img-top {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .card-img-top::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
        }
        
        .card:hover .card-img-top {
            transform: scale(1.03);
        }
        
        .alg {
            flex-grow: 1;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        /* Decorative elements */
        .decoration {
            position: absolute;
            z-index: 1;
            border-radius: 50%;
            background: rgba(255, 230, 128, 0.4);
        }
        
        
        @media (max-width: 992px) {
            .card {
                margin-bottom: 30px;
            }
            
            .decoration {
                display: none;
            }
        }
        
        @media (max-width: 576px) {
            #Technologies {
                padding: 40px 0;
            }
            
            .belief-text {
                padding: 15px;
                font-size: 1rem;
            }
            
            .card-body {
                padding: 20px;
            }
        }
		
  :root {
            --primary: #c0dff8;        /* Light blue */
            --primary-light: #dff4ff;
            --primary-dark: #1E3A8A;
            --secondary: #4A5568;
            --accent: #E53E3E;
            --light-bg: #F0F7FF;
            --card-border: #BFDBFE;
            --text-dark: #1E293B;
            --text-light: #64748B;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', 'Segoe UI', sans-serif;
            background-color: #fff;
            color: var(--text-dark);
            line-height: 1.6;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }
        
        /* Background shapes */
        .bg-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            z-index: -1;
        }
        
        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--primary-light);
            top: -100px;
            left: -100px;
        }
        
        .shape-2 {
            width: 200px;
            height: 200px;
            background: var(--accent);
            bottom: 50px;
            right: -50px;
        }
        
        .shape-3 {
            width: 150px;
            height: 150px;
            background: var(--primary);
            top: 40%;
            left: 60%;
        }
        
        .shape-4 {
            width: 100px;
            height: 100px;
            background: var(--primary-dark);
            bottom: 10%;
            left: 20%;
        }
        
       .core-container {
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(30, 64, 175, 0.2);
}

.core-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E"); */
    opacity: 0.15;
}

.text-center h1 {
    color: rgb(57, 54, 54);
    font-weight: 700;
    font-size: 2.8rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}

.text-center h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* Card Layout */
.card-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    align-items: stretch; /* Ensure all cards stretch equally */
}

.core-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.15);
    transition: all 0.4s ease;
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.core-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.core-card:nth-child(1)::before {
    background: linear-gradient(90deg, #E53E3E, #F56565);
}

.core-card:nth-child(2)::before {
    background: linear-gradient(90deg, #38A169, #48BB78);
}

.core-card:nth-child(3)::before {
    background: linear-gradient(90deg, #3182CE, #4299E1);
}

.core-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 30px rgba(30, 64, 175, 0.2);
}

/* FIXED: Consistent header height and alignment */
.card-header {
    padding: 25px 25px 20px;
    position: relative;
    min-height: 90px; /* Fixed height for all headers */
    display: flex;
    align-items: flex-start; /* Align to top to handle multi-line titles */
    justify-content: flex-start;
}

.card-title {
    font-weight: 800;
    font-size: 1.4rem; /* Slightly smaller for better fit */
    margin: 0;
    color: var(--primary-dark);
    display: flex;
    align-items: flex-start;
    line-height: 1.3;
    flex-wrap: wrap;
    min-height: 60px; /* Ensure consistent title height */
    text-align: center;
}

.card-title::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 4px; /* Align the dot with text */
}

.core-card:nth-child(1) .card-title::before {
    background-color: #E53E3E;
}

.core-card:nth-child(2) .card-title::before {
    background-color: #38A169;
}

.core-card:nth-child(3) .card-title::before {
    background-color: #3182CE;
}

.card-img-container {
    height: 200px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.core-card:hover .card-img-top {
    transform: scale(1.08);
}

.card-content {
    padding: 20px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.subject-info {
    margin-bottom: 20px;
}

.subject-info h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
}

.subject-info h5 i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.core-card:nth-child(1) .subject-info h5 i {
    color: #E53E3E;
}

.core-card:nth-child(2) .subject-info h5 i {
    color: #38A169;
}

.core-card:nth-child(3) .subject-info h5 i {
    color: #3182CE;
}

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

.subject-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #EDF2F7;
}

.subject-list li:last-child {
    border-bottom: none;
}

.subject-list i {
    margin-right: 12px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.core-card:nth-child(1) .subject-list i {
    color: #E53E3E;
}

.core-card:nth-child(2) .subject-list i {
    color: #38A169;
}

.core-card:nth-child(3) .subject-list i {
    color: #3182CE;
}

.card-text {
    margin: 15px 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.btn-register {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(30, 64, 175, 0.2);
}

.btn-register:hover {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 7px 12px rgba(30, 64, 175, 0.3);
}

.btn-register i {
    transition: transform 0.3s ease;
}

.btn-register:hover i {
    transform: translateX(5px);
}

/* Alternative Solution: Use abbreviated titles */
.core-card:nth-child(1) .card-title {
    /* For International Phonics Olympiad - you can use abbreviation */
    font-size: 1.35rem; /* Slightly smaller for long title */
}

.core-card:nth-child(2) .card-title,
.core-card:nth-child(3) .card-title {
    font-size: 1.4rem; /* Normal size for shorter titles */
}

/* Or use line clamping for titles */
.card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

@media (max-width: 1200px) {
    .card-row {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .card-title {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .core-card:nth-child(1) .card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 992px) {
    .card-row {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .card-header {
        min-height: 85px;
    }
    
    .card-title {
        font-size: 1.4rem;
        min-height: 55px;
        align-self: center;
    }
    
    .core-card:nth-child(1) .card-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 576px) {
    .core-container {
        padding: 50px 15px;
    }
    
    .text-center h1 {
        font-size: 2.2rem;
    }
    
    .card-header {
        padding: 20px 20px 15px;
        min-height: 80px;
    }
    
    .card-content {
        padding: 15px 20px 20px;
    }
    
    .card-title {
        font-size: 1.3rem;
        min-height: 50px;
        align-self: center;
    }
    
    .core-card:nth-child(1) .card-title {
        font-size: 1.25rem;
    }
    
    .card-img-container {
        height: 180px;
    }
    
    .card-row {
        padding: 10px;
        gap: 20px;
    }
}
/* Levels Section Styles */
.levels-section {
    margin-top: 10px;
    padding: 40px 0;
}

.levels-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.level-box {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    min-height: 200px;
    border-left: 5px solid var(--level-color);
}

.level-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    background: linear-gradient(135deg, var(--level-color), var(--level-color-dark));
    position: relative;
    overflow: hidden;
}

.level-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shine 3s infinite linear;
}

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

.level-number span {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    z-index: 2;
    position: relative;
}

.level-content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.level-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--level-color);
    transition: all 0.4s ease;
}

.level-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #333;
    transition: all 0.4s ease;
}

.level-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.95rem;
    transition: all 0.4s ease;
}

.level-badge {
    display: inline-block;
    background: var(--level-color);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.4s ease;
}

/* Level Colors */
.level-1 {
    --level-color: #4e54c8;
    --level-color-dark: #3a40b5;
}

.level-2 {
    --level-color: #ff6b6b;
    --level-color-dark: #e55c5c;
}

.level-3 {
    --level-color: #3a539b;
    --level-color-dark: #2c3e80;
}

.level-4 {
    --level-color: #dc3545;
    --level-color-dark: #c82333;
}

/* Hover Effects */
.level-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-left-width: 8px;
}

.level-box:hover .level-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--level-color-dark);
}

.level-box:hover .level-content h3 {
    color: var(--level-color-dark);
    transform: translateX(5px);
}

.level-box:hover .level-badge {
    background: var(--level-color-dark);
    transform: translateY(-3px);
}

.level-box:hover .level-number {
    background: linear-gradient(135deg, var(--level-color-dark), var(--level-color));
}

.level-box:hover .level-content p {
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .levels-container {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 600px;
    }
    
    .level-box {
        min-height: 180px;
    }
    
    .level-number {
        min-width: 90px;
    }
    
    .level-number span {
        font-size: 2.5rem;
    }
    
    .level-content {
        padding: 20px;
    }
    
    .level-content h3 {
        font-size: 1.5rem;
    }
    
    .level-icon {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .levels-container {
        gap: 20px;
    }
    
    .level-box {
        flex-direction: column;
        min-height: auto;
    }
    
    .level-number {
        min-width: 100%;
        min-height: 70px;
    }
    
    .level-number span {
        font-size: 2.2rem;
    }
    
    .level-content {
        padding: 20px;
    }
    
    .level-content h3 {
        font-size: 1.4rem;
    }
    
    .level-icon {
        font-size: 1.8rem;
    }
    
    .level-box {
        border-left: none;
        border-top: 5px solid var(--level-color);
    }
    
    .level-box:hover {
        border-left-width: 0;
        border-top-width: 8px;
    }
}
.hero-image-team {
	background-image: url("img/teambg.jpg");
	background-color: #cccccc;
	height: 600px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.hero-text-team {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	background: rgba(0, 0, 0, 0.25);
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	animation: mymove 5s normal;
	border-radius: 15px;
}

.hero-image {
	background-image: url("img/location.jpg");
	background-color: #cccccc;
	height: 600px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;	
}

.hero-text {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	background: rgba(0, 0, 0, 0.25);
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	animation: mymove 5s normal;
	border-radius: 15px;
}

.hero-image-faq {
	background-image: url("img/faq.jpg");
	background-color: #cccccc;
	height: 600px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;	
}

.hero-text-faq {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	background: rgba(0, 0, 0, 0.25);
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	animation: mymove 5s normal;
	border-radius: 15px;
}

.trans{
	animation: tra 5s normal;
}


@keyframes mymove {
	from {left: 0%;}
	to {left: 50%;}
  }

@keyframes tra {
	from {
		right: -50%;
	}
	to {
		right: 0%;
	}
}

.btncolor {
	border-radius: 15px;
	margin-top: 20px;
	margin-bottom: 20px;
	background: #f7e35e;
	font-weight: bold;
}

.btncolor:hover {
	background: #f7e35e;
	color: black;
}

.faqbtn{
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 20px;
	background: #f0efea;
	text-align: left;
}

.regButton{
	background: #ffe850;
	border-radius: 15px;
	font-weight: bold;
}

.coroIndicator{
	color: aqua;
}

.alg{
	padding-top: 20px;
}

.card-img-top{
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.what{
	width: 100%;
	height: 250px;
	color:#ff1414
}

.fb{
	background-image: url("img/feedback.jpg");
	background-color: #cccccc;
	height: 600px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;	
}

.fbtext{
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	background: rgba(0, 0, 0, 0.25);
	height: 250px;
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	animation: mymove 5s normal;
	border-radius: 15px;
}

.fbtextmain{
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	background: rgba(0, 0, 0, 0.25);
	height: 250px;
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	border-radius: 15px;
}

.try{
	display: flex; 
	justify-content: center; 
	align-items: center;
}

@media (max-width: 900px){
	.try{
		flex-direction: column;
	}
}

.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -22px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
  }

  .next {
	right: 0;
	border-radius: 3px 0 0 3px;
  }
  
  .prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.8);
  }
.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.carousel-caption h1 {
    font-size: 2rem;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 1.2rem;
}
		  :root {
            --primary: #4e54c8;
            --secondary: #8f94fb;
            --light-pink: #fff5f7;
            --medium-pink: #ffd6e0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f9fafc;
            color: #333;
            padding: 20px;
        }
        
        .expertise-section {
            background: linear-gradient(rgba(78, 84, 200, 0.05), rgba(143, 148, 251, 0.1)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="white"/><path d="M0 50 L100 50 M50 0 L50 100" stroke="%234e54c8" stroke-opacity="0.1" stroke-width="2"/></svg>');
            background-size: 30px;
            /* padding: 60px 0; */
            position: relative;
            overflow: hidden;
        }

        /* Expertise section spacing tweaks */
        .expertise-section .section-title {
            margin: 20px 0 30px;
            position: relative;
            display: inline-block;
            /* color: var(--primary); */
            font-weight: 700;
        }

        .expertise-section .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        
        .expertise-section:before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(78, 84, 200, 0.2) 0%, rgba(143, 148, 251, 0.2) 100%);
        }
        
        .expertise-section:after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 142, 142, 0.2) 100%);
        }
        
        .expertise-card {
            background: linear-gradient(to bottom, var(--light-pink), white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            border-top: 5px solid var(--primary);
        }
        
        .expertise-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 182, 193, 0.1) 0%, rgba(255, 215, 221, 0.1) 100%);
            z-index: 0;
        }
        
        .expertise-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            background: linear-gradient(to bottom, var(--light-pink), var(--medium-pink));
        }
        
        .expertise-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .stats-box {
            background: rgba(255, 255, 255, 0.7);
            border-radius: 12px;
            padding: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .stat-item {
            padding: 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .stat-item:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: scale(1.05);
        }
        
        .text-primary {
            color: var(--primary) !important;
        }
        
        .text-secondary {
            color: #ff6b6b !important;
        }
        
        .text-tertiary {
            color: #42b883 !important;
        }
        
        .text-quaternary {
            color: #5271ff !important;
        }
        
        @media (max-width: 768px) {
            .expertise-card {
                padding: 20px;
            }
        }
		/* .why-ipo-section {
			background: linear-gradient(rgba(255, 107, 107, 0.03), rgba(255, 142, 142, 0.05));
			
		}
		.benefit-card {
			background: white;
			border-radius: 15px;
			padding: 30px;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
			height: 100%;
			transition: all 0.3s ease;
			text-align: center;
		}
		
		.benefit-card:hover {
			transform: translateY(-5px);
			box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
		}
		
		.benefit-icon {
			font-size: 2.5rem;
			color: var(--primary);
			margin-bottom: 20px;
		} */
		 :root {
            --color-1: #4e54c8;  /* Blue */
            --color-2: #ff6b6b;  /* Red */
            --color-3: #42b883;  /* Green */
            --color-4: #ffa62b;  /* Orange */
            --color-5: #9c56ff;  /* Purple */
            --color-6: #ff7eb3;  /* Pink */
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f9fafc;
            color: #333;
            padding: 20px;
        }
        
        .why-ipo-section {
            /* background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><rect width="60" height="60" fill="white"/><path d="M0 30 L60 30 M30 0 L30 60" stroke="%23f0f0f0" stroke-width="1"/></svg>'); */
            /* padding: 80px 0; */
            position: relative;
            overflow: hidden;
        }
        
        .section-title {
            color: #4e54c8;
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #4e54c8, #8f94fb);
            border-radius: 2px;
        }
        
        .benefit-card {
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            height: 100%;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
            color: white;
        }
        
        /* Individual card colors */
        .card-1 {
            background: linear-gradient(135deg, #4e54c8, #8f94fb);
        }
        
        .card-2 {
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
        }
        
        .card-3 {
            background: linear-gradient(135deg, #42b883, #6dd5a7);
        }
        
        .card-4 {
            background: linear-gradient(135deg, #ffa62b, #ffc46b);
        }
        
        .card-5 {
            background: linear-gradient(135deg, #9c56ff, #c18bff);
        }
        
        .card-6 {
            background: linear-gradient(135deg, #ff7eb3, #ffb3d4);
        }
        
        .benefit-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: inline-block;
            padding: 15px;
            border-radius: 50%;
            width: 80px;
            height: 80px;
            line-height: 50px;
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .benefit-card h4 {
            font-weight: 600;
            margin-bottom: 15px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        
        .benefit-card p {
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        
        .benefit-card strong {
            font-weight: 700;
        }
        
        .decorative-shape {
            position: absolute;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            right: -40px;
            bottom: -40px;
            z-index: 0;
        }
        
        @media (max-width: 768px) {
            .benefit-card {
                padding: 20px;
            }
            
            .benefit-icon {
                font-size: 2rem;
                width: 70px;
                height: 70px;
                line-height: 40px;
            }
        }
		  :root {
            --primary: #4e54c8;
            --primary-light: #8f94fb;
            --secondary: #ff7e5f;
            --secondary-light: #feb47b;
            --accent: #38A169;
            --light-bg: #f8f9fa;
            --text-dark: #2D3748;
            --text-light: #718096;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', 'Segoe UI', sans-serif;
            background-color: #fff;
            color: var(--text-dark);
            line-height: 1.6;
            padding: 20px;
        }
        
        .nep-alignment {
            /* background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(240, 247, 255, 0.9) 100%); */
            /* padding: 80px 0; */
            position: relative;
            overflow: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .section-header {
            position: relative;
            margin-bottom: 0px;
            text-align: center;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        .nep-main-card {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 40px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 2;
    max-width: 100%; /* prevent overflow */
}
        /* 📱 Tablet and smaller screens (below 992px) */
@media (max-width: 992px) {
    .nep-main-card {
        padding: 30px 25px;
        margin: 0 auto; /* center align */
        width: 95%; /* reduce side space */
    }

    .nep-item {
        margin-bottom: 20px;
    }

    .nep-feature-list li {
        margin-bottom: 15px;
    }
}

/* 📱 Mobile screens (below 768px) */
@media (max-width: 768px) {
    .nep-main-card {
        padding: 25px 20px;
        width: 100%;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        border-radius: 15px;
    }

    .nep-item h4 {
        font-size: 1.1rem;
    }

    .nep-item p {
        font-size: 0.9rem;
    }

    .nep-feature-list {
        padding-left: 0;
    }
}

/* 📱 Extra small mobile screens (below 576px) */
@media (max-width: 576px) {
    .nep-main-card {
        padding: 30px 35px;
        width: 100%;
        border-radius: 10px;
    }

    .nep-item h4 {
        font-size: 1rem;
    }

    .nep-item p {
        font-size: 0.85rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }
}
        .nep-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(78, 84, 200, 0.1), rgba(143, 148, 251, 0.1));
            z-index: -1;
        }
        
        .nep-shape-1 {
            width: 250px;
            height: 250px;
            top: -125px;
            right: -125px;
        }
        
        .nep-shape-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
        }
        
        /* Moving stickers */
        .moving-sticker {
            position: absolute;
            z-index: 1;
            animation: float 6s ease-in-out infinite;
            opacity: 0.8;
            font-size: 2rem;
        }
        
        .sticker-1 {
            top: 10%;
            left: 5%;
            color: var(--primary);
            animation-delay: 0s;
        }
        
        .sticker-2 {
            top: 15%;
            right: 8%;
            color: var(--secondary);
            animation-delay: 1s;
        }
        
        .sticker-3 {
            bottom: 20%;
            left: 7%;
            color: var(--accent);
            animation-delay: 2s;
        }
        
        .sticker-4 {
            bottom: 10%;
            right: 10%;
            color: var(--primary-light);
            animation-delay: 3s;
        }
        
        .sticker-5 {
            top: 50%;
            left: 10%;
            color: var(--secondary-light);
            animation-delay: 4s;
        }
        
        .sticker-6 {
            top: 60%;
            right: 12%;
            color: var(--primary);
            animation-delay: 5s;
        }
        
        .sticker-7 {
            top: 30%;
            left: 3%;
            color: var(--accent);
            animation-delay: 1.5s;
        }
        
        .sticker-8 {
            top: 70%;
            right: 5%;
            color: var(--secondary);
            animation-delay: 2.5s;
        }
        
        .sticker-9 {
            top: 40%;
            right: 2%;
            color: var(--primary-light);
            animation-delay: 3.5s;
        }
        
        .sticker-10 {
            bottom: 30%;
            left: 2%;
            color: var(--secondary-light);
            animation-delay: 4.5s;
        }
        
        .sticker-11 {
            top: 25%;
            left: 12%;
            color: var(--primary);
            animation-delay: 0.5s;
        }
        
        .sticker-12 {
            bottom: 40%;
            right: 15%;
            color: var(--accent);
            animation-delay: 1.8s;
        }
        
        .sticker-13 {
            top: 80%;
            left: 15%;
            color: var(--secondary);
            animation-delay: 2.2s;
        }
        
        .sticker-14 {
            top: 5%;
            left: 50%;
            color: var(--primary-light);
            animation-delay: 3.8s;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }
        
        .text-justify {
            text-align: justify;
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark);
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
            /* padding-top: -10px; */
        }
        
        .col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 0 15px;
        }
        
        .col-md-12 {
            flex: 0 0 100%;
            max-width: 100%;
            padding: 0 15px;
        }
        
        .mb-4 {
            margin-bottom: 1.5rem;
        }
        
        .mb-5 {
            margin-bottom: 3rem;
        }
        
        .mt-4 {
            margin-top: 1.5rem;
        }
        
        .nep-item {
            padding: 30px 20px;
            border-radius: 15px;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            z-index: 2;
        }
        
        .nep-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
        }
        
        .aptitude-card {
            border-top: 4px solid var(--primary);
        }
        
        .reasoning-card {
            border-top: 4px solid var(--secondary);
        }
        
        .nep-icon-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: white;
        }
        
        .aptitude-card .nep-icon-circle {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
        }
        
        .reasoning-card .nep-icon-circle {
            background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
        }
        
        .nep-item h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
            text-align: center;
        }
        
        .nep-item p {
            text-align: center;
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .nep-item-shape {
            position: absolute;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(78, 84, 200, 0.05), rgba(143, 148, 251, 0.05));
            border-radius: 50%;
            bottom: -40px;
            right: -40px;
            z-index: -1;
        }
        
        .nep-divider {
            position: relative;
            text-align: center;
            /* margin: 50px 0; */
        }
        
        .nep-divider:before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            right: 0;
            border-top: 2px dashed #e0e0e0;
            transform: translateY(-50%);
        }
        
        .nep-divider span {
            display: inline-block;
            position: relative;
            padding: 0 25px;
            background: white;
            color: var(--primary);
            font-weight: 700;
            font-size: 1.25rem;
        }
        
        .nep-feature-list {
            list-style: none;
            padding: 0;
        }
        
        .nep-feature-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 20px;
            border-radius: 12px;
            background: rgba(248, 249, 250, 0.7);
            transition: all 0.3s ease;
        }
        
        .nep-feature-list li:hover {
            background: rgba(78, 84, 200, 0.05);
            transform: translateX(5px);
        }
        
        .feature-bullet {
            min-width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 20px;
            flex-shrink: 0;
            font-size: 1.1rem;
        }
        
        .feature-text {
            flex: 1;
            font-size: 1.05rem;
        }
        
        .feature-text strong {
            color: var(--primary);
        }
        
        .nep-conclusion {
            background: linear-gradient(135deg, rgba(78, 84, 200, 0.05), rgba(143, 148, 251, 0.05));
            padding: 25px;
            border-radius: 12px;
            /* margin-top: 40px; */
            border-left: 4px solid var(--primary);
        }
        
        .nep-conclusion p {
            margin: 0;
            font-size: 1.1rem;
            color: var(--text-dark);
            line-height: 1.8;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .col-md-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .moving-sticker {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .nep-shape {
                display: none;
            }
            
            
            .feature-bullet {
                margin-bottom: 15px;
                margin-right: 0;
            }
            
            .moving-sticker {
                display: none;
            }
            
            
            .section-title {
                font-size: 2rem;
            }
        }
.assessment-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 0px 0;
	position: relative;
	overflow: hidden;
}

.assessment-main-card {
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
	border: none;
	background: #fff;
}

.assessment-shape {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(255, 190, 24, 0.1), rgba(255, 221, 128, 0.1));
}

.assessment-shape-1 {
	width: 120px;
	height: 120px;
	top: -60px;
	left: -60px;
}

.assessment-shape-2 {
	width: 80px;
	height: 80px;
	bottom: 30px;
	right: 100px;
	background: linear-gradient(135deg, rgba(58, 83, 155, 0.1), rgba(108, 133, 205, 0.1));
}

.assessment-shape-3 {
	width: 60px;
	height: 60px;
	top: 40px;
	right: -30px;
	background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(240, 113, 127, 0.1));
}

.assessment-intro {
	font-size: 18px;
	line-height: 1.7;
	color: #444;
	margin-bottom: 40px;
	position: relative;
	z-index: 2;
}

.assessment-journey {
	/* margin: 40px 0;
	padding: 30px 0; */
	position: relative;
}

.journey-path {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin: 0 40px;
}

.journey-path::before {
	content: "";
	position: absolute;
	top: 40px;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(to right, #ffbe18, #3a539b, #dc3545);
	z-index: 1;
}

.journey-node {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
	flex: 1;
}

.node-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: white;
	margin-bottom: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.journey-node:nth-child(1) .node-icon {
	background: linear-gradient(135deg, #ffbe18, #ffdd80);
}

.journey-node:nth-child(2) .node-icon {
	background: linear-gradient(135deg, #3a539b, #6c85cd);
}

.journey-node:nth-child(3) .node-icon {
	background: linear-gradient(135deg, #dc3545, #f0717f);
}

.node-content {
	text-align: center;
	max-width: 200px;
}

.node-content h5 {
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.node-content p {
	font-size: 14px;
	color: #666;
	margin-bottom: 0;
}

.assessment-highlight {
	background: linear-gradient(135deg, rgba(58, 83, 155, 0.05), rgba(255, 190, 24, 0.05));
	padding: 25px;
	border-radius: 12px;
	margin: 40px 0;
	display: flex;
	align-items: center;
	border-left: 4px solid #3a539b;
}

.highlight-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3a539b, #6c85cd);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	margin-right: 20px;
	flex-shrink: 0;
}

.assessment-highlight p {
	font-size: 18px;
	margin-bottom: 0;
	line-height: 1.6;
}

.assessment-benefit {
	text-align: center;
	padding: 30px 20px;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.assessment-benefit:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 70px;
	color: white;
	margin: 0 auto 20px;
	/* background: linear-gradient(135deg, #3a539b, #6c85cd); */
}

.assessment-benefit:nth-child(2) .benefit-icon {
	background: linear-gradient(135deg, #ffbe18, #ffdd80);
}

.assessment-benefit:nth-child(3) .benefit-icon {
	background: linear-gradient(135deg, #dc3545, #f0717f);
}

.assessment-benefit h4 {
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
}

.assessment-benefit p {
	color: #666;
	margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.journey-path {
		flex-direction: column;
		align-items: center;
		margin: 0;
	}
	
	.journey-path::before {
		display: none;
	}
	
	.journey-node {
		margin-bottom: 30px;
		width: 100%;
		max-width: 300px;
	}
	
	.assessment-highlight {
		flex-direction: column;
		text-align: center;
	}
	
	.highlight-icon {
		margin-right: 0;
		margin-bottom: 15px;
	}
}

@media (max-width: 768px) {
	.assessment-shape {
		display: none;
	}
}
.comparison-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 0px 0;
	position: relative;
	overflow: hidden;
}

.comparison-main-card {
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
	border: none;
	background: #fff;
}

.comparison-shape {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(58, 83, 155, 0.05), rgba(108, 133, 205, 0.05));
}

.comparison-shape-1 {
	width: 120px;
	height: 120px;
	top: -60px;
	right: -60px;
}

.comparison-shape-2 {
	width: 80px;
	height: 80px;
	bottom: -40px;
	left: -40px;
	background: linear-gradient(135deg, rgba(220, 53, 69, 0.05), rgba(240, 113, 127, 0.05));
}

.comparison-table {
	border-collapse: separate;
	border-spacing: 0;
	margin-bottom: 0;
}

.comparison-table th {
	border: none;
	vertical-align: middle;
	padding: 20px 15px;
	font-weight: 700;
}

.feature-header {
	width: 25%;
	background: linear-gradient(135deg, #3a539b, #6c85cd);
	color: white;
	font-size: 18px;
	border-radius: 10px 0 0 0;
}

.ipo-header {
	width: 37.5%;
	background: linear-gradient(135deg, #28a745, #20c997);
	color: white;
	text-align: center;
}

.other-header {
	width: 37.5%;
	background: linear-gradient(135deg, #6c757d, #a0a7b1);
	color: white;
	text-align: center;
	border-radius: 0 10px 0 0;
}

.header-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.header-icon {
	font-size: 24px;
	margin-bottom: 8px;
}

.comparison-table td {
	padding: 20px 15px;
	vertical-align: middle;
	border-bottom: 1px solid #e9ecef;
}

.feature-name {
	font-weight: 600;
	background-color: #f8f9fa;
}

.feature-icon {
	color: #3a539b;
	margin-right: 10px;
	font-size: 16px;
	width: 24px;
	text-align: center;
}

.ipo-feature {
	background-color: rgba(40, 167, 69, 0.08);
	border-left: 3px solid #28a745;
}

.other-feature {
	background-color: rgba(108, 117, 125, 0.08);
	border-left: 3px solid #6c757d;
}

.feature-detail {
	display: flex;
	align-items: flex-start;
}

.tick-mark, .cross-mark {
	margin-right: 12px;
	flex-shrink: 0;
	margin-top: 2px;
}

.tick-mark {
	color: #28a745;
	font-size: 18px;
}

.cross-mark {
	color: #dc3545;
	font-size: 18px;
}

.comparison-summary {
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 221, 128, 0.1));
	padding: 25px;
	border-radius: 12px;
	margin-top: 30px;
	border-left: 4px solid #ffc107;
}

.summary-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ffc107, #ffda6a);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	margin-right: 20px;
	flex-shrink: 0;
}

.summary-content h4 {
	color: #333;
	margin-bottom: 10px;
	font-weight: 600;
}

.summary-content p {
	color: #555;
	margin-bottom: 0;
	line-height: 1.6;
}

/* Hover effects */
.comparison-table tr {
	transition: background-color 0.3s ease;
}

.comparison-table tr:hover {
	background-color: rgba(58, 83, 155, 0.03);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.comparison-shape {
		display: none;
	}
	
	.comparison-table {
		font-size: 14px;
	}
	
	.comparison-table th, 
	.comparison-table td {
		padding: 12px 8px;
	}
	
	.feature-detail {
		flex-direction: column;
	}
	
	.tick-mark, .cross-mark {
		margin-bottom: 8px;
		margin-right: 0;
	}
	
	.comparison-summary {
		flex-direction: column;
		text-align: center;
	}
	
	.summary-icon {
		margin-right: 0;
		margin-bottom: 15px;
	}
}

@media (max-width: 576px) {
	.header-content {
		flex-direction: row;
	}
	
	.header-icon {
		margin-bottom: 0;
		margin-right: 8px;
	}
	
	.feature-header,
	.ipo-header,
	.other-header {
		font-size: 14px;
	}
}
  :root {
            --primary: #4e54c8;
            --secondary: #8f94fb;
            --accent: #ff6b6b;
            --light: #f8f9fa;
            --dark: #343a40;
            --yellow: #ffbe18;
            --blue: #3a539b;
            --light-blue: #6c85cd;
            --red: #dc3545;
            --pink: #f0717f;
            --purple: #6a11cb;
            --orange: #ff7e5f;
            --green: #38ef7d;
            --teal: #11998e;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            background-color: #f9f9f9;
            overflow-x: hidden;
        }
        
        .about-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            /* padding: 100px 0; */
            position: relative;
            overflow: hidden;
        }
        
        .section-header {
            /* margin-bottom: 10px; */
            position: relative;
            z-index: 20;
        }
        
        .section-title {
            
            font-weight: 700;
            position: relative;
            /* padding-bottom: 15px; */
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(135deg, var(--orange), var(--yellow));
            border-radius: 2px;
        }
        .about-content p,
.about-text p,
.card-body p,
.card-text {
    color: #34495e !important;
    font-weight: 400;
    line-height: 1.6;
}

.about-subtitle {
    color: #2c3e50 !important;
    font-weight: 600;
    margin-left: 400px; /* Adds space from left */
}

        /*  /* About Content Styles */
        .about-content {
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            padding: 40px;
            position: relative;
            overflow: hidden;
            z-index: 20;
            border-left: 5px solid var(--yellow);
            border-right: 5px solid var(--blue);
        }
        /* 📱 Tablets (992px and below) */
@media (max-width: 992px) {
    .about-content {
        padding: 30px;
        margin: 0 20px; /* reduce side space */
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }
}

/* 📱 Mobile (768px and below) */
@media (max-width: 768px) {
    .about-content {
        padding: 25px;
        margin: 0 15px;
        border-left: 4px solid var(--yellow);
        border-right: 4px solid var(--blue);
    }
}

/* 📱 Small Mobile (576px and below) */
@media (max-width: 576px) {
    .about-content {
        padding: 20px;
        margin: 0 0.9px;
        border-left: 3px solid var(--yellow);
        border-right: 3px solid var(--blue);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
}
        .about-subtitle {
            color: var(--purple);
            font-weight: 700;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
            margin-bottom: 30px;
            text-align: center;
            width: 100%;
        }
        
        .about-subtitle:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--purple), var(--orange));
            border-radius: 3px;
        }
        
        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .highlight {
            background: linear-gradient(135deg, var(--yellow), var(--orange));
            padding: 0 8px;
            border-radius: 5px;
            font-weight: 700;
            color: #333;
        }
        
        /* Hover Effects for About Feature Points */
        .about-feature {
            display: flex;
            align-items: flex-start;
            margin: 30px 0;
            padding: 25px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(78, 84, 200, 0.05), rgba(143, 148, 251, 0.05));
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .about-feature:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(231, 76, 60, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }
        
        .about-feature:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .about-feature:hover:before {
            opacity: 1;
        }
        
        .about-feature:hover .feature-content p {
            color: #2c3e50;
            font-weight: 500;
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            margin-right: 20px;
            flex-shrink: 0;
            transition: all 0.4s ease;
            z-index: 2;
            background: linear-gradient(45deg, #3498db, #e74c3c);
        }
        /* .feature-icons {
    width: 60px;
    height: 60px;
    aspect-ratio: 1 / 1;   
    border-radius: 50%;    
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    z-index: 2;
    background: linear-gradient(45deg, #3498db, #e74c3c);
} */.feature-icons {
    display: inline-flex;           /* make it flexible inside <i> */
    width: 60px;                     /* fixed width */
    height: 60px;                    /* fixed height */
    aspect-ratio: 1 / 1;             /* ensures perfect square */
    border-radius: 50%;              /* makes it a circle */
    align-items: center;             /* centers the icon vertically */
    justify-content: center;         /* centers the icon horizontally */
    font-size: 24px;                 /* icon size */
    color: white;                    /* icon color */
    margin-right: 20px;              /* spacing */
    flex-shrink: 0;                  /* prevents shrinking */
    transition: all 0.4s ease;
    z-index: 2;
    background: linear-gradient(45deg, #3498db, #e74c3c); /* background gradient */
}


        .about-feature:hover .feature-icon {
            transform: scale(1.2);
            box-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
        }
        
        .feature-content {
            transition: all 0.3s ease;
        } */
        
        .about-stats {
            /* margin-top: 50px;
            padding-top: 30px; */
            border-top: 2px dashed #e9ecef;
        }
        
        /* .stat-item {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(106, 17, 203, 0.05), rgba(78, 84, 200, 0.05));
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .stat-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--purple), var(--orange));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }
        
        .stat-item:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            color: white;
        }
        
        .stat-item:hover:before {
            opacity: 1;
        }
        
        .stat-item:hover .stat-number,
        .stat-item:hover .stat-label {
            color: white;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--purple);
            margin-bottom: 5px;
            transition: color 0.4s ease;
        }
        
        .stat-label {
            font-size: 1rem;
            color: #666;
            font-weight: 600;
            transition: color 0.4s ease;
        } */
        /* Stats Hover Effects */
        .stat-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            height: 100%;
        }
        
        .stat-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(231, 76, 60, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .stat-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .stat-item:hover:before {
            opacity: 1;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #444, #444);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .stat-item:hover .stat-number {
            transform: scale(1.1);
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: #2c3e50;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .stat-item:hover .stat-label {
            color: #2c3e50;
            font-weight: 600;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .col-md-4 {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }
        
        @media (max-width: 768px) {
            .col-md-4 {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }
        /* Floating alphabets outside the about box */
        .floating-alphabets {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }
        
        .alphabet {
            position: absolute;
            font-size: 24px;
            font-weight: 700;
            animation: float 10s infinite ease-in-out;
            z-index: 1;
            opacity: 0.5;
            color: var(--purple);
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            /* .about-content {
                padding: 30px 20px;
            } */
            
            .about-feature {
                flex-direction: column;
                text-align: center;
            }
            
            .feature-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            e
            .about-section {
                padding: 60px 0;
            }
        }
       
.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: rgba(58, 83, 155, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(58, 83, 155, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3a539b;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* .about-content {
        padding: 30px 20px;
    } */
    
    .about-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .about-shape {
        display: none;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    animation: fadeIn 0.3s ease;
    font-size:0.8rem;
}

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

.dropdown-item {
    padding: 0.5rem 1rem;
    color: #333;
    font-weight: 300;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #3a539b, #6c85cd);
    color: white;
}

.dropdown-item:active {
    background: linear-gradient(135deg, #3a539b, #6c85cd);
    color: white;
}

/* Register Button */
.reg-nav-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    border-radius: 25px;
    padding: 0.4rem 1.3rem;
    color: white !important;
    font-weight: 100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.reg-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #218838, #1aa179);
}

/* Carousel Caption */
.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    bottom: 30%;
}

.carousel-caption h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.carousel-caption p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Caption Text */
.caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
}

.caption h1 {
    color: white;
    font-size: 2.8rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
}

.regButton {
    background: linear-gradient(135deg, #ffbe18, #ffdd80);
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.regButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffb400, #ffd54f);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .navbar-nav .nav-item {
        margin: 0.2rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem;
    }
    
    .reg-nav-btn {
        margin-top: 0.5rem;
    }
    
    .carousel-caption h1 {
        font-size: 1.8rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .caption h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .carousel-caption {
        bottom: 20%;
        padding: 1rem;
    }
    
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    
    .caption {
        width: 90%;
    }
    
    .caption h1 {
        font-size: 1.6rem;
    }
    
    .regButton {
        padding: 0.6rem 1.8rem;
        font-size: 1rem;
    }
}

/* Navbar scroll effect */
.navbar-scroll {
    padding: 0.3rem 1rem;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}
.statistics-section {
    background: linear-gradient(135deg, #3a539b 0%, #6c85cd 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.05"><circle cx="50" cy="50" r="40" stroke="white" stroke-width="2" fill="none" /></svg>');
    background-size: 200px;
    opacity: 0.1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ffbe18;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.stats-container {
    margin: 40px 0;
}

.stat-item {
    width: 100%;
    max-width: 250px;
    height: 150px;
    padding: 25px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

/* Hover effects */
.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 60px;
    color: #ffbe18;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #ffbe18;
    transition: all 0.3s ease;
}

.stat-item:hover h3 {
    transform: scale(1.05);
}

.stat-item p {
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.9;
}

.stats-cta {
    margin-top: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stats-cta p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.stats-box .d-flex {
    flex-wrap: wrap; 
    justify-content: center;
    gap: 25px; /* space between boxes horizontally */
}
.stats-box .d-flex:not(:last-child) {
    margin-bottom: 25px; /* space between top and bottom rows */
}


.btn-primary {
    background: linear-gradient(135deg, #ffbe18, #ffdd80);
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffb400, #ffd54f);
    color: #333;
}

/* Animation for counter */
@keyframes countUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.counter {
    animation: countUp 1s ease-out forwards;
}

/* Responsive adjustments */
.stat-item {
    height: 150px;
    padding: 30px 20px;
}
.stats-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
    gap: 25px; /* space between boxes both horizontally & vertically */
    justify-items: center;
}
/* 📱 Tablets and small laptops */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
.stats-box {
        grid-template-columns: 1fr; /* 1 column */
        gap: 20px; /* vertical spacing between boxes */
    }
    .stat-item {
       max-width: 300px;
        height: 130px;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .stat-icon {
        font-size: 50px;
    }
}

/* 📱 Mobile landscape (max-width: 768px) */
@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }

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

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

    .stat-item {
        height: 110px;
        margin-bottom: 20px;
        padding: 20px 15px;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }

    .stats-cta p {
        font-size: 1.1rem;
    }

    .stat-icon {
        font-size: 40px;
    }
}

/* 📱 Mobile portrait / very small screens (max-width: 576px) */
@media (max-width: 576px) {
    .section-title {
        font-size: 1.2rem;
        font-weight: 500;
    }

    .stat-item {
        height: 110px;
        padding: 15px 10px;
    }
    .stat-item {
        width: 100%;
        max-width: 250px;   /* keeps boxes nicely sized */
        height: 100px;
    }
.stats-box .d-flex {
        flex-direction: column; /* one box per row */
        align-items: center;
        gap: 15px;
    }
    .stat-item h3 {
        font-size: 1.4rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }

    .stat-icon {
        font-size: 35px;
    }
}
		  /* Combined Awards Section */
        .combined-awards {
            padding: 20px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }
        
        /* Header Styles */
        .combined-header {
            text-align: center;
            /* margin-bottom: 70px; */
            position: relative;
            z-index: 2;
        }
        
        .combined-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            /* margin-bottom: 20px; */
            /* text-transform: uppercase; */
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }
        
        .combined-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, #3498db, #2ecc71);
        }
        
        .combined-header p {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .award-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            height: auto;
            display: flex;
            flex-direction: column;
            margin-bottom: 30px;
        }
        
        .award-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .award-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .award-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .award-card:hover .award-img img {
            transform: scale(1.05);
        }
        
        .award-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .award-year {
            background: linear-gradient(90deg, #3498db, #2ecc71);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            display: inline-block;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .award-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .award-desc {
            color: #6c757d;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .award-stats {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid #e9ecef;
            padding-top: 15px;
            margin-top: auto;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: #3498db;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 0.85rem;
            color: #6c757d;
        }
        
        /* Style 2: Timeline */
        .timeline-section {
            margin-bottom: 80px;
        }
        
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background: linear-gradient(to bottom, #3498db, #2ecc71);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 10px;
        }
        
        .timeline-container {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            margin-bottom: 60px;
        }
        
        .timeline-container::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            background: #3498db;
            border: 4px solid #fff;
            border-radius: 50%;
            top: 32px;
            right: -13px;
            z-index: 1;
            box-shadow: 0 0 0 4px #3498db;
        }
        
        .left {
            left: 0;
        }
        
        .right {
            left: 50%;
        }
        
        .right::after {
            left: -13px;
        }
        
        .timeline-content {
            padding: 20px 30px;
            background: #f8f9fa;
            position: relative;
            border-radius: 6px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 4px solid #3498db;
        }
        
        .right .timeline-content {
            border-left: none;
            border-right: 4px solid #2ecc71;
        }
        
        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .timeline-year {
            position: absolute;
            top: -20px;
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(90deg, #3498db, #2ecc71);
            padding: 5px 15px;
            border-radius: 20px;
            box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
        }
        
        .left .timeline-year {
            right: 20px;
        }
        
        .right .timeline-year {
            left: 20px;
        }
        
        .timeline-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .timeline-desc {
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .timeline-stats {
            display: flex;
            gap: 20px;
        }
        
        .timeline-stat {
            text-align: center;
            padding: 10px 15px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            flex: 1;
        }
        
        .timeline-stat-number {
            font-size: 1.3rem;
            font-weight: 700;
            color: #3498db;
            line-height: 1;
            margin-bottom: 5px;
        }
        
        .timeline-stat-label {
            font-size: 0.8rem;
            color: #7f8c8d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Style 3: Flip Cards */
        .flip-section {
            margin-bottom: 50px;
        }
        
        .flip-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        
        .flip-item {
            position: relative;
            height: 380px;
            perspective: 1000px;
        }
        
        .flip-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }
        
        .flip-item:hover .flip-inner {
            transform: rotateY(180deg);
        }
        
        .flip-front, .flip-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .flip-front {
            background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
            color: white;
        }
        
        .flip-back {
            background: white;
            color: #2c3e50;
            transform: rotateY(180deg);
            text-align: center;
        }
        
        .flip-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .flip-year {
            font-size: 1rem;
            font-weight: 700;
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 15px;
            border-radius: 20px;
            margin-bottom: 15px;
            backdrop-filter: blur(5px);
        }
        
        .flip-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .flip-stats {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .flip-stat {
            text-align: center;
            padding: 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            backdrop-filter: blur(5px);
            flex: 1;
        }
        
        .flip-stat-number {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 5px;
        }
        
        .flip-stat-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .flip-back-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .flip-back-desc {
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .flip-back-stats {
            display: flex;
            gap: 10px;
            width: 100%;
        }
        
        .flip-back-stat {
            text-align: center;
            padding: 10px;
            background: #f8f9fa;
            border-radius: 8px;
            flex: 1;
        }
        
        .flip-back-stat-number {
            font-size: 1.2rem;
            font-weight: 700;
            color: #3498db;
            margin-bottom: 5px;
        }
        
        .flip-back-stat-label {
            font-size: 0.7rem;
            color: #7f8c8d;
            text-transform: uppercase;
        }
        
        /* Section Titles */
        .section-title {
  display: flex;
  justify-content: center;
  align-items: center; /* optional if you want vertical centering too */
}

        
        .section-title h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #2c3e50;
            display: inline-block;
            padding: 0 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            z-index: 2;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #3498db, #2ecc71);
            z-index: 1;
        }
        
        /* Responsive Design */
        @media screen and (max-width: 992px) {
            .timeline::after {
                left: 31px;
            }
            
            .timeline-container {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-container::before {
                left: 60px;
                border: medium solid white;
                border-width: 10px 10px 10px 0;
                border-color: transparent white transparent transparent;
            }
            
            .left::after, .right::after {
                left: 18px;
            }
            
            .right {
                left: 0%;
            }
            
            .left .timeline-year, .right .timeline-year {
                left: 20px;
                right: auto;
            }
            
            .right .timeline-content {
                border-left: 4px solid #2ecc71;
                border-right: none;
            }
            
            .flip-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media screen and (max-width: 768px) {
            .combined-header h2 {
                font-size: 2.2rem;
            }
            
            .flip-container {
                grid-template-columns: 1fr;
            }
            
            .flip-item {
                height: 350px;
            }
            
            .award-stats, .timeline-stats, .flip-stats, .flip-back-stats {
                flex-direction: column;
                gap: 10px;
            }
            
            .stat, .timeline-stat, .flip-stat, .flip-back-stat {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
        }
        
        @media screen and (max-width: 576px) {
            .combined-header h2 {
                font-size: 1.8rem;
            }
            
            .section-title h3 {
                font-size: 1.5rem;
            }
        }
        .roadmap-container {
            max-width: 1400px;
            margin: 0 auto;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            padding: 40px;
            background: #f8f9fa;
        }
        
        .roadmap-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #2c3e50;
            text-align: center;
        }
        
        .roadmap {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 60px;
            padding-bottom: 60px;
        }
        
        /* Horizontal connector line */
        .roadmap::before {
            content: '';
            position: absolute;
            top: 100px;
            left: 0;
            right: 0;
            height: 2px;
            background: #ddd;
            z-index: 1;
        }
        
        .phase {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 13%;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }
        
        .phase-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            margin-bottom: -20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            position: relative;
            z-index: 3;
            transition: all 0.3s ease;
        }
        
        .phase-1 .phase-circle { background: #3498db; }
        .phase-2 .phase-circle { background: #9b59b6; }
        .phase-3 .phase-circle { background: #e74c3c; }
        .phase-4 .phase-circle { background: #2ecc71; }
        .phase-5 .phase-circle { background: #f39c12; }
        .phase-6 .phase-circle { background: #1abc9c; }
        .phase-7 .phase-circle { background: #d35400; }
        
        .phase-card {
            background: white;
            border-radius: 12px;
            padding: 40px 15px 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            width: 100%;
            text-align: center;
            position: relative;
            margin-top: 10px;
            height: 240px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        /* Updated pointer - sharper triangle */
        .pentagon-pointer {
            width: 100%;
            height: 25px;
            position: relative;
            overflow: hidden;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .pentagon-pointer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 20px;
            height: 20px;
            background: inherit;
            transform: translateX(-50%) rotate(45deg);
            transition: all 0.3s ease;
        }
        
        .phase-1 .pentagon-pointer::before { background: #3498db; }
        .phase-2 .pentagon-pointer::before { background: #9b59b6; }
        .phase-3 .pentagon-pointer::before { background: #e74c3c; }
        .phase-4 .pentagon-pointer::before { background: #2ecc71; }
        .phase-5 .pentagon-pointer::before { background: #f39c12; }
        .phase-6 .pentagon-pointer::before { background: #1abc9c; }
        .phase-7 .pentagon-pointer::before { background: #d35400; }
        
        /* Decorative dots */
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            margin-top: 15px;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }
        
        .phase-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: #2c3e50;
            transition: all 0.3s ease;
        }
        
        .phase-description {
            color: #7f8c8d;
            font-size: 0.9rem;
            line-height: 1.6;
            transition: all 0.3s ease;
        }
        
        .step-number {
            font-size: 0.85rem;
            font-weight: 500;
            color: #7f8c8d;
            margin-bottom: 5px;
            transition: all 0.3s ease;
        }
        
        .arrow {
            position: absolute;
            top: 85px;
            right: -25px;
            color: #7f8c8d;
            font-size: 24px;
            z-index: 4;
        }
        
        /* Hover Effects */
        .phase:hover {
            transform: translateY(-10px);
        }
        
        .phase:hover .phase-card {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transform: translateY(-5px);
        }
        
        .phase:hover .phase-circle {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .phase:hover .pentagon-pointer::before {
            transform: translateX(-50%) rotate(45deg) scale(1.2);
        }
        
        .phase:hover .dot {
            background: #2c3e50;
            transform: scale(1.3);
        }
        
        .phase:hover .phase-title {
            color: #2c3e50;
        }
        
        .phase:hover .step-number {
            color: #2c3e50;
            font-weight: 600;
        }
        
        .phase:hover .phase-description {
            color: #5a6c7d;
        }
        
        /* Specific color enhancements on hover */
        .phase-1:hover .phase-circle { background: #2980b9; }
        .phase-2:hover .phase-circle { background: #8e44ad; }
        .phase-3:hover .phase-circle { background: #c0392b; }
        .phase-4:hover .phase-circle { background: #27ae60; }
        .phase-5:hover .phase-circle { background: #e67e22; }
        .phase-6:hover .phase-circle { background: #16a085; }
        .phase-7:hover .phase-circle { background: #a84300; }
        
        .phase-1:hover .pentagon-pointer::before { background: #2980b9; }
        .phase-2:hover .pentagon-pointer::before { background: #8e44ad; }
        .phase-3:hover .pentagon-pointer::before { background: #c0392b; }
        .phase-4:hover .pentagon-pointer::before { background: #27ae60; }
        .phase-5:hover .pentagon-pointer::before { background: #e67e22; }
        .phase-6:hover .pentagon-pointer::before { background: #16a085; }
        .phase-7:hover .pentagon-pointer::before { background: #a84300; }
        
        @media (max-width: 1200px) {
            .roadmap {
                flex-wrap: wrap;
                justify-content: center;
                gap: 40px;
            }
            
            .phase {
                width: 45%;
            }
            
            .roadmap::before {
                display: none;
            }
            
            .arrow {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .phase {
                width: 100%;
            }
            
            .roadmap-title {
                font-size: 2rem;
            }
            
            .roadmap-container {
                padding: 25px;
            }
        }