* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    
}

body {
    background-color: #fff1f1;
    position: relative;
    overflow-x: hidden;
    
} 



 /*----------------------------------------------------alter header-------------------------*/






/*--------------------------------------slider section-------------------------------------------*/


.slider-container {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}


.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    max-width: 800px;
    z-index: 2;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease-in-out;
    font-weight: bold;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease-in-out 0.2s;
    line-height: 1.6;
}

.slide-content.active h1,
.slide-content.active p {
    opacity: 1;
    transform: translateX(0);
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-in-out 0.4s;
}

.slide-content.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #ff0000;
    color: white;
}

.btn-primary a{
    text-decoration: none;
}

.btn-primary:hover {
    background: #a70000;
}

.btn-secondary {
    background: white;
    color: #333;
}
.btn-secondary a{
    text-decoration: none;
}

.btn-secondary:hover {
    background: #f0f0f0;
}



/*-----------------------------------------our approach--------------------------------------*/

.approaches-section {
    background-color: #0c2552; /* Dark blue background */
    color: white;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Heading Styles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
}

/* Underline Styles */
.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: white;
    margin: 15px auto;
}

/* Description Text */
.section-description {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 0;
}

/* Bubble Background Elements */
.bubble {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.bubble-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%; 
}

.bubble-2 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 25%;
}

.bubble-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
}

.bubble-4 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 25%;
}

/*------------------------------------our process---------------------------------*/

.section-1 {
    max-width: 1200px;
    margin: 50px auto;
    padding: 30px 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 25px;
}

.more-details-btn {
    display: inline-block;
    background: linear-gradient(to right, #ff0000, #a70000);
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 40px;
    transition: transform 0.3s;
}

.more-details-btn:hover {
    transform: translateY(-3px);
}

.process-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.process-track {
    display: flex;
    transition: transform 0.5s ease;
}

.process-slide {
    min-width: 100%;
    padding: 0 20px;
}

.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.timeline-line {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ff0000;
    z-index: 1;
}

.timeline-point {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 2px solid #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ff0000;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: background-color 0.3s;
}

.timeline-point.active {
    background-color: #ff0000;
    color: #fff;
}

.process-content {
    display: flex;
    flex-wrap: wrap;
}

.process-item {
    width: 25%;
    padding: 0 15px;
    text-align: center;
}

.process-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    min-height: 50px;
}

.process-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.slider-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.slider-btn {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: #a70000;
}

.slider-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.features-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.feature-item {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: #ff0000;
    color: white;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 100;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: #a70000;
    transform: translateY(-3px);
}
/*---------------------------------------------------------special features--------------------------------*/
.featuresbody {
    background-image: url('image/diplocors-1\ \(5\).jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f0f0f0; /* Fallback color */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.featuresbody::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for better contrast */
    z-index: 1;
}

.containerfeature {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 2; /* Place content above the overlay */
}

h1 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 36px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    color: #f0f0f0;
    margin-bottom: 40px;
    font-size: 18px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.center-circle {
    margin-top: 100px; /* Push just the center down */
}

.section15 {
    position: relative;
    width: 100%;
    height: 800px;
    margin: 0 auto;
}
.solar-container {
  position: relative;
  top: 100px; /* Try increasing this if it still overlaps */
  z-index: 0; /* Keeps it behind the header if needed */
}


.solar-system {
    position: relative;
    width: 700px;
    height: 700px;
    margin: 0 auto;
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background-color: #ff6600;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.center-logo:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    animation: rotate 30s linear infinite;
}

.feature-circle {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    z-index: 5;
}

.feature-circle.hidden {
    opacity: 0;
    transform: translate(-50%, -150%); /* Start from above */
}

.feature-circle.dropped {
    opacity: 1;
    transform: translate(-50%, -50%); /* Final position */
    animation: drop-in 0.7s ease forwards;
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 5px;
    color: #ff6600;
    transition: all 0.3s ease;
}

.feature-title {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding: 0 5px;
    color: #333;
    transition: all 0.3s ease;
}

.feature-circle:hover .feature-icon,
.feature-circle:hover .feature-title {
    color: white;
}

.feature-description {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    color: #333;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.feature-circle:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background-color: #ff6600;
}

.feature-circle:hover .feature-description {
    bottom: 0;
    opacity: 1;
    background-color: rgba(255, 102, 0, 0.9);
    color: white;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes drop-in {
    0% {
        transform: translate(-50%, -300%);
        opacity: 0;
    }
    60% {
        transform: translate(-50%, -40%);
        opacity: 1;
    }
    80% {
        transform: translate(-50%, -55%);
    }
    100% {
        transform: translate(-50%,-50%);}
}




/*------------------------------------------------------mentorship------------------------------------------*/


.mentor {
    background-color: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #222;
}

.placement-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    margin-top: 30px;
}

.placement-content {
    width: 50%;
    padding: 20px;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.placement-image {
    width: 50%;
    text-align: right;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.placement-image img {
    max-width: 100%;
    height: auto;
}

.placement-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #222;
}

.placement-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    width: 48%;
}

.stat-number {
    font-size: 40px;
    font-weight: bold;
    color: #ff7a00;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 16px;
    color: #555;
    line-height: 1.4;
}

/* Animation classes */
.slide-in {
    transform: translateX(0) !important;
    opacity: 1 !important;
}




/*-----------------------------------------------------expert teachers--------------------------------*/


        
.container1 {
    max-width: 1200px;
    margin: 2px auto;
    text-align: center;
    background-color: #f9f9fd;
    padding: 40px 20px;
    
}

.team-heading {
    color: #8BC34A;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding-top: 70px;
}

.main-title {
    color: #444;
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 700;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-member {
    width: 280px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.member-img-container {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-img-container:hover .social-overlay {
    opacity: 1;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: white;
    color: #3b5998;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon.facebook {
    color: #3b5998;
}

.social-icon.twitter {
    color: #1DA1F2;
}

.social-icon.linkedin {
    color: #0077B5;
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.member-role {
    color: #6C63FF;
    font-size: 16px;
}

.social-icon i {
    font-size: 18px;
}



/*---------------------------------------------------------live chat section----------------------------*/

/* Live Chat Styles */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Noto Sans JP', sans-serif;
}

.chat-button {
    background-color: #ff0000;
    color: white;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.chat-button:hover {
    background-color: #a70000;
    transform: translateY(-2px);
}

.chat-icon {
    margin-right: 10px;
}

.chat-container {
    position: fixed;
    bottom: -600px; /* Start offscreen */
    right: 20px;
    width: 350px;
    height: 500px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: bottom 0.5s ease-in-out;
    z-index: 1001;
}

.chat-container.active {
    bottom: 20px; /* Final position when active */
}

.chat-header {
    background-color: #fff1f1;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.chat-title {
    display: flex;
    align-items: center;
}

.chat-logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.chat-title h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.status {
    margin: 0;
    font-size: 12px;
    color: #4CAF50;
}

.chat-actions button {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 10px;
    color: #777;
    transition: color 0.3s;
}

.chat-actions button:hover {
    color: #333;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #f9f9f9;
}

.message {
    margin-bottom: 15px;
    display: flex;
}

.message.sent {
    justify-content: flex-end;
}

.message-content {
    max-width: 70%;
    padding: 10px 15px;
    border-radius: 18px;
    position: relative;
}

.message.received .message-content {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-top-left-radius: 5px;
}

.message.sent .message-content {
    background-color: #ff0000;
    color: white;
    border-top-right-radius: 5px;
}

.message-content p {
    margin: 0 0 5px 0;
}

.message-time {
    font-size: 10px;
    color: #999;
    display: block;
    text-align: right;
}

.message.sent .message-time {
    color: rgba(255, 255, 255, 0.8);
}

.chat-input {
    display: flex;
    padding: 10px 15px;
    background-color: white;
    border-top: 1px solid #f0f0f0;
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
}

.chat-input input:focus {
    border-color: #ff0000;
}

.chat-input button {
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.chat-input button:hover {
    background-color: #a70000;
}




/*--------------------------------------------------footer-----------------------------*/




/*------------------------------------------------------media query---------------------------------------------------------------*/

/*-----------------------------slider query-------------------------*/

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .navigation {
        display: none;
    }
}

/*--------------------------------------our approach query-----------------------------------------*/

/* Large screens (desktop) */
@media screen and (min-width: 1200px) {
    .approaches-section {
        padding: 80px 40px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .section-title::after {
        width: 100px;
    }
    
    .section-description {
        font-size: 1.25rem;
        max-width: 1100px;
    }
    
    /* Larger bubbles for bigger screens */
    .bubble-1 {
        width: 120px;
        height: 120px;
    }
    
    .bubble-2 {
        width: 80px;
        height: 80px;
    }
    
    .bubble-3 {
        width: 100px;
        height: 100px;
    }
    
    .bubble-4 {
        width: 60px;
        height: 60px;
    }
}

/* Medium screens (tablet) */
@media screen and (min-width: 768px) and (max-width: 1199px) {
    .approaches-section {
        padding: 60px 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1rem;
        max-width: 700px;
         padding: 0 15px;
    }
}

/* Small screens (mobile) */
@media screen and (max-width: 767px) {
    .approaches-section {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-title::after {
        width: 60px;
        margin: 10px auto;
    }
    
    .section-description {
        font-size: 0.9rem;
        padding: 5px 0;
    }
    
    /* Smaller bubbles for mobile screens */
    .bubble-1 {
        width: 60px;
        height: 60px;
    }
    
    .bubble-2 {
        width: 40px;
        height: 40px;
    }
    
    .bubble-3 {
        width: 50px;
        height: 50px;
    }
    
    .bubble-4 {
        width: 30px;
        height: 30px;
    }
}

/* Extra small screens */
@media screen and (max-width: 480px) {
    .approaches-section {
        padding: 30px 10px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.85rem;
    }
}

/*-----------------------------------our process query----------------------------------------------------*/

@media (max-width: 992px) {
    .process-item {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .process-item {
        width: 100%;
    }
    
    .feature-item {
        width: 33.33%;
        margin-bottom: 20px;
    }
}

/*Base styles (applied to all screen sizes)*/
.section-1 {
    max-width: 1200px;
    margin: 50px auto;
    padding: 30px 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 25px;
}

.more-details-btn {
    display: inline-block;
    background: linear-gradient(to right, #ff0000, #a70000);
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 40px;
    transition: transform 0.3s;
}

.more-details-btn:hover {
    transform: translateY(-3px);
}

.process-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.process-track {
    display: flex;
    transition: transform 0.5s ease;
}

.process-slide {
    min-width: 100%;
    padding: 0 20px;
}

.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.timeline-line {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ff0000;
    z-index: 1;
}

.timeline-point {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 2px solid #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ff0000;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: background-color 0.3s;
}

.timeline-point.active {
    background-color: #ff0000;
    color: #fff;
}

.process-content {
    display: flex;
    flex-wrap: wrap;
}

.process-item {
    width: 25%;
    padding: 0 15px;
    text-align: center;
}

.process-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    min-height: 50px;
}

.process-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.slider-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.slider-btn {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: #a70000;
}

.slider-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.features-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.feature-item {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* Large screens (desktop)*/
@media screen and (min-width: 1200px) {
    .section-1 {
        padding: 50px 40px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .process-item {
        width: 25%;
    }
    
    .process-item h3 {
        font-size: 20px;
    }
    
    .process-item p {
        font-size: 15px;
    }
    
    .feature-item {
        font-size: 16px;
        padding: 15px;
    }
} 

/* Medium screens (tablet)*/
@media screen and (min-width: 768px) and (max-width: 1199px) {
    .section-1 {
        margin: 40px auto;
        padding: 25px 15px;
    }
    
    .section-header h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .more-details-btn {
        padding: 8px 20px;
        margin-bottom: 30px;
    }
    
    .process-item {
        width: 50%;
        margin-bottom: 25px;
    }
    
    .process-item h3 {
        min-height: 40px;
    }
    
    .timeline-point {
        width: 35px;
        height: 35px;
    }
    
    .feature-item {
        width: 33.33%;
        margin-bottom: 20px;
    }
} 

/* Small screens (mobile)*/
@media screen and (max-width: 767px) {
    .section-1 {
        margin: 30px auto;
        padding: 20px 15px;
    }
    
    .section-header h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .more-details-btn {
        padding: 8px 16px;
        margin-bottom: 25px;
        font-size: 14px;
    }
    
    .process-item {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .process-item h3 {
        min-height: auto;
        font-size: 16px;
    }
    
    .timeline-point {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .timeline-line {
        top: 15px;
    }
    
    .slider-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .feature-item {
        width: 50%;
        margin-bottom: 20px;
    }
} 
 /* Extra small screens*/
@media screen and (max-width: 480px) {
    .section-1 {
        margin: 20px auto;
        padding: 15px 10px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .feature-item {
        width: 100%;
    }
    
    .timeline-point {
        width: 25px;
        height: 25px;
        font-size: 11px;
    }
    
    .timeline-line {
        top: 12px;
    }
}   







/*---------------------------------------------------------special features query--------------------------------*/
 /* Large screens (Desktop) - 1024px and above */
@media screen and (min-width: 1024px) {
    /* Default styles already defined above */
}

/* Medium screens (Tablets) - Between 768px and 1023px */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .containerfeature {
        max-width: 90%;
    }
    
    h1 {
        font-size: 30px;
    }
    
    .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .section15 {
        height: 500px;
    }
    
    .solar-system {
        width: 450px;
        height: 450px;
    }
    
    .center-logo {
        width: 120px;
        height: 120px;
        font-size: 18px;
    }
    
    .feature-circle {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon {
        font-size: 20px;
    }
    
    .feature-title {
        font-size: 11px;
    }
    
    .feature-description {
        font-size: 9px;
    }
}
@media screen and (max-width: 768px) {
    .solar-container {
        margin-top: 200px; /* More margin on small screens */
    }

    .center-circle {
        margin-top: 150px;
    }
}

/* Small screens (Mobile phones) - Less than 768px */
@media screen and (max-width: 767px) {
    .containerfeature {
        padding: 15px;
        max-width: 100%;
    }
  
    h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .section15 {
        height: 400px;
          margin-top: 150px; /* Add this line */
    }
    
    .solar-system {
        width: 300px;
        height: 300px;
        
        margin-top: 50px; /* Add or increase this */
    }
    
    .center-logo {
        width: 90px;
        height: 90px;
        font-size: 16px;
    }
    
    .feature-circle {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon {
        font-size: 16px;
        margin-bottom: 2px;
    }
    
    .feature-title {
        font-size: 9px;
    }
    
    .feature-description {
        font-size: 8px;
        padding: 3px;
    }
    
    /* Reduce animation duration for better performance on mobile */
    @keyframes rotate {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }
        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }
}

/* Extra small screens (Small mobile phones) - Less than 480px */
@media screen and (max-width: 479px) {
    .section15 {
        height: 350px;
    }
    
    .solar-system {
        width: 240px;
        height: 240px;
    }
    
    .center-logo {
        width: 70px;
        height: 70px;
        font-size: 14px;
    }
    
    .feature-circle {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon {
        font-size: 14px;
        margin-bottom: 1px;
    }
    
    .feature-title {
        font-size: 8px;
        padding: 0 2px;
    }
    
    .feature-description {
        display: none; /* Hide descriptions on very small screens */
    }
    
    /* Show description on tap instead of hover for mobile */
    .feature-circle:active .feature-description {
        bottom: 0;
        opacity: 1;
        display: block;
    }
}
        


/* Target devices around 430px width */
@media screen and (max-width: 450px) {
    .section15 {
        height: 300px;
    }

    .solar-system {
        width: 150px;
        height: 150px;
    }

    .center-logo {
        width: 80px;
        height: 80px;
        font-size: 12px;
    }

    .feature-circle {
        width: 55px;
        height: 55px;
    }

    .feature-icon {
        font-size: 12px;
    }

    .feature-title {
        font-size: 7px;
    }

    .feature-description {
        display:none;
}
}



/*------------------------------------------------------mentorship query------------------------------------------*/


/*-----------------------------------larger medium smaller query------------------------*/

/* Large screens (above 1200px) */
@media screen and (min-width: 1201px) {
    .container {
      padding: 60px 30px;
    }
    
    .title {
      font-size: 42px;
      margin-bottom: 60px;
    }
    
    .placement-content h2 {
      font-size: 36px;
    }
    
    .placement-content p {
      font-size: 20px;
    }
    
    .stat-number {
      font-size: 48px;
    }
    
    .stat-text {
      font-size: 18px;
    }
  }
  
  /* Medium screens (768px to 1200px) */
  @media screen and (max-width: 1200px) {
    .container {
      padding: 30px 15px;
    }
    
    .title {
      font-size: 30px;
      margin-bottom: 40px;
    }
    
    .placement-content h2 {
      font-size: 28px;
      margin-bottom: 20px;
    }
    
    .placement-content p {
      font-size: 16px;
      margin-bottom: 25px;
    }
    
    .stat-number {
      font-size: 36px;
    }
  }
  
  /* Small screens (up to 767px) */
  @media screen and (max-width: 767px) {
    .container {
      padding: 20px 10px;
    }
    
    .title {
      font-size: 24px;
      margin-bottom: 30px;
    }
    
    .placement-section {
      flex-direction: column;
    }
    
    .placement-content, 
    .placement-image {
      width: 100%;
      text-align: center;
      padding: 15px 10px;
    }
    
    .placement-image {
      order: 1; /* Places image first */
      margin-bottom: 20px;
    }
    
    .placement-content {
      order: 2; /* Places content second */
    }
    
    .placement-content h2 {
      font-size: 24px;
      margin-bottom: 15px;
    }
    
    .placement-content p {
      font-size: 15px;
      margin-bottom: 20px;
    }
    
    .stats-container {
      flex-direction: column;
      gap: 20px;
    }
    
    .stat-box {
      width: 100%;
    }
    
    .stat-number {
      font-size: 32px;
    }
    
    .stat-text {
      font-size: 14px;
    }
  }
  
  /* Extra small screens (up to 480px) */
  @media screen and (max-width: 480px) {
    .title {
      font-size: 22px;
      margin-bottom: 25px;
    }
    
    .placement-content h2 {
      font-size: 20px;
      margin-bottom: 12px;
    }
    
    .placement-content p {
      font-size: 14px;
      line-height: 1.5;
    }
    
    .stat-number {
      font-size: 28px;
    }
    
    .stat-text {
      font-size: 13px;
    }
  }



/*--------------------------------expert teachers query--------------------------------*/

/* Large screens (Desktop) - 1024px and above */
@media screen and (min-width: 1024px) {
    .container1 {
        padding: 50px 30px;
    }
    
    .main-title {
        font-size: 42px;
    }
    
    .team-grid {
        gap: 30px;
    }
}

/* Medium screens (Tablets) - Between 768px and 1023px */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .container1 {
        padding: 30px 15px;
    }
    
    .team-heading {
        font-size: 16px;
        padding-top: 50px;
    }
    
    .main-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .team-grid {
        gap: 25px;
    }
    
    .team-member {
        width: 240px;
    }
    
    .member-img-container {
        height: 240px;
    }
}

/* Small screens (Mobile phones) - Less than 768px */
@media screen and (max-width: 767px) {
    .container1 {
        padding: 25px 10px;
    }
    
    .team-heading {
        font-size: 15px;
        padding-top: 40px;
    }
    
    .main-title {
        font-size: 30px;
        margin-bottom: 30px;
    }
    
    .team-grid {
        gap: 20px;
    }
    
    .team-member {
        width: 100%;
        max-width: 320px;
    }
}

/* Extra small screens (Small mobile phones) - Less than 480px */
@media screen and (max-width: 479px) {
    .container1 {
        padding: 20px 10px;
    }
    
    .team-heading {
        font-size: 14px;
        padding-top: 30px;
    }
    
    .main-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .team-member {
        width: 100%;
    }
    
    .member-img-container {
        height: 260px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .member-name {
        font-size: 18px;
    }
    
    .member-role {
        font-size: 14px;
    }
}

/* Target devices around 430px width */
@media screen and (max-width: 430px) {
    .team-heading {
        padding-top: 25px;
    }
    
    .main-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .member-img-container {
        height: 230px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-icon i {
        font-size: 16px;
    }
}


/*---------------------------------------------------------live chat section query----------------------------*/

@media (max-width: 576px) {
    .chat-container {
        width: 90%;
        right: 5%;
        height: 80vh;
    }
    
    .chat-button {
        padding: 10px 16px;
    }
    
    .message-content {
        max-width: 85%;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .chat-container {
        width: 380px;
        height: 550px;
    }
    
    .chat-button {
        padding: 14px 24px;
    }
    
    .chat-logo {
        width: 45px;
        height: 45px;
    }
    
    .chat-title h3 {
        font-size: 18px;
    }
}

/* Medium devices (tablets, between 768px and 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .chat-container {
        width: 350px;
        height: 500px;
    }
    
    .chat-button {
        padding: 12px 20px;
    }
}

/* Small devices (landscape phones, between 576px and 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .chat-container {
        width: 320px;
        height: 450px;
        right: 10px;
    }
    
    .chat-button {
        padding: 10px 18px;
    }
    
    .message-content {
        max-width: 80%;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575px) {
    .chat-container {
        width: 85%;
        right: 7.5%;
        height: 70vh;
        bottom: -70vh;
    }
    
    .chat-container.active {
        bottom: 10px;
    }
    
    .chat-button {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .chat-logo {
        width: 35px;
        height: 35px;
    }
    
    .chat-title h3 {
        font-size: 15px;
    }
    
    .chat-messages {
        padding: 10px;
    }
    
    .message-content {
        max-width: 90%;
        padding: 8px 12px;
    }
    
    .chat-input {
        padding: 8px 10px;
    }
    
    .chat-input input {
        padding: 8px 12px;
    }
    
    .chat-input button {
        width: 36px;
        height: 36px;
    }
}

/*-------------------------------------------------------footer query-----------------------------------------*/

