* {
    cursor: auto;
    margin: 0;
    padding: 0;
    background-color: black;
        font-family: Poppins;

}



html,
body {
    overflow-x: hidden;

}



/* for costom cursor */
.cursor {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid #ff6b00;
    background-color: transparent;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
    box-shadow: 0 0 8px #ff6b00, 0 0 15px #ff6b00;
    z-index: 9999;
}



/* Header styling */
/* Header styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin: auto;
    width: 98%;
    height: 40px;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: black;
    cursor: auto;
}

header .scrolled {
    position: fixed;
}

/* Logo styling */
.logo { flex: 0 0 auto; }
.logo img { max-height: 60px; width: auto; margin-left: 0px; }

.collagelogo { flex: 0 0 auto; }
.collagelogo img { max-height: 65px; width: auto; margin-left: 12px; }

.mobile-logo { display: none; }

/* Navigation styling */
nav { flex: 0 0 auto; }

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li { margin-left: 30px; }
nav ul li:first-child { margin-left: 0; }

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
}
nav ul li a:hover { color: #FFA500; }
.nav-menu .active a { color: #ff6b00; }

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    margin-right: 20px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}
.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    transform-origin: center;
}
.hamburger:hover span { background-color: #FFA500; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile navigation */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 999;
}
.nav-menu.active { right: 0; }

.nav-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    transition: color 0.3s ease;
}
.nav-menu ul li a:hover { color: #FFA500; }

/* ── Dropdown ── */
.dropdown { position: relative; }

.dropdown-toggle {
    background: none;
    border: none;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    font-family: inherit;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.dropdown-toggle:hover { color: #FF6B00; }

.dropdown-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 14px;
}
.dropdown.open .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;                          /* ← fixed: was calc(100% + 14px) */
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-radius: 0 0 10px 10px;      /* ← flat top since no gap */
    min-width: 160px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    z-index: 999;
    padding-top: 14px;                  /* ← added: visual spacing */
}

/* Invisible bridge to prevent hover gap close */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 14px;
}

.dropdown.open .dropdown-menu {
    display: block;
    animation: fadeSlide 0.2s ease;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: rgba(255,107,0,0.15); color: #FF6B00; }

/* ── Register Button ── */
.btn-register {
    display: inline-block;
    background: #FF6B00;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}
.btn-register:hover {
    background: #e05e00;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255,107,0,0.45);
}

/* Desktop view */
@media (min-width: 769px) {
    .hamburger { display: none; }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        backdrop-filter: none;
        flex-direction: row;
        right: 0;
    }
    .nav-menu ul {
        flex-direction: row;
        gap: 30px;
    }
    .nav-menu ul li a { font-size: 18px; }

    /* ← Hover open on desktop */
    .dropdown:hover .dropdown-menu { display: block; animation: fadeSlide 0.2s ease; }
    .dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
}

/* Mobile view */
@media (max-width: 768px) {
    .hamburger { display: flex; }

    .collagelogo { display: none; }
    .mobile-logo { display: block; margin-right: 10px; }
    .collagelogo img { height: 60px; }

    .nav-menu .dropdown-toggle { font-size: 24px; }

    .nav-menu .dropdown-menu {
        position: static;
        transform: none;
        background: rgba(255,107,0,0.1);
        border: 1px solid rgba(255,107,0,0.2);
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: none;
        padding-top: 0;         /* ← reset for mobile */
    }

    /* ← disable bridge on mobile */
    .nav-menu .dropdown-menu::before { display: none; }

    .nav-menu .dropdown-menu a { font-size: 18px; text-align: center; }

    .nav-menu .btn-register {
        font-size: 18px !important;
        padding: 12px 30px;
    }
}








.mentor-section {
    padding: 4rem 2rem;
    text-align: center;
}



.mentor-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-top: 90px;
    margin-bottom: 5rem;
}

.mentor-section p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 3rem;
}

.mentor-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    /* Adjusted max-width to ensure 4 cards fit comfortably */
    /* 4 cards * 250px width/card + 3 gaps * 2rem (32px) = 1000px + 96px = 1096px */
    max-width: 1300px;
    /* Keeping it at 1100px should be fine, or slightly larger */
    margin: 10 auto;
    /* Center the grid container */
}

.mentor-card {
    position: relative;
    width: 250px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000;
    /* Darker background for card */
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    /* Initial transparent border */
}

.mentor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
    /* Orange glow effect on hover */
    border: 2px solid #f97316;
    /* Orange border on hover */
}

.mentor-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f97316;
    /* Orange border */
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.7);
    /* Orange glow */
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
    /* Space between image and name */
}

.mentor-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    /* Space between name and icons */
}

.mentor-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    /* Space between name and icons */
}
 

.mentor-card:hover {
    opacity: 1;
    /* Visible on hover */
    transform: translateY(0);
    /* Move to original position */
}
 
/* Responsive adjustments */
@media (max-width: 768px) {

    .mentor-section h1 {
        font-size: 2.5rem;
    }

    .mentor-section p {
        font-size: 1rem;
    }

    .mentor-grid {
        flex-direction: column;
        align-items: center;
    }
}











.team-section {
    padding: 2rem 2rem;
    text-align: center;
     
}

.team-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-top: 7px;
    margin-bottom: 1rem;
}

.team-section p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    /* Adjusted max-width to ensure 4 cards fit comfortably */
    /* 4 cards * 250px width/card + 3 gaps * 2rem (32px) = 1000px + 96px = 1096px */
    max-width: 1300px;
    /* Keeping it at 1100px should be fine, or slightly larger */
    margin: 0 auto;
    /* Center the grid container */
}

.team-card {
    position: relative;
    width: 250px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000;
    /* Darker background for card */
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    /* Initial transparent border */
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
    /* Orange glow effect on hover */
    border: 2px solid #f97316;
    /* Orange border on hover */
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f97316;
    /* Orange border */
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.7);
    /* Orange glow */
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
    /* Space between image and name */
}

.team-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    /* Space between name and icons */
}

.team-card h4 {
    font-size: 1rem;
    font-weight: 100;
    color: #fff;
    margin-bottom: 1rem;
    /* Space between name and icons */
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    /* Initially hidden */
    transform: translateY(20px);
    /* Start slightly below */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-card:hover .social-icons {
    opacity: 1;
    /* Visible on hover */
    transform: translateY(0);
    /* Move to original position */
}

.social-icons a {
    color: #fff;
    /* Default white for icons */
    font-size: 2rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Specific hover styles for LinkedIn and Instagram */
.social-icons a.linkedin:hover {
    color: #0A66C2;
    /* LinkedIn blue */
    text-shadow: 0 0 15px rgba(10, 102, 194, 0.9);
}

.social-icons a.instagram:hover {
    color: #E1306C;
    /* Instagram pink/red */
    text-shadow: 0 0 15px rgba(225, 48, 108, 0.9);
}


/* Responsive adjustments */
@media (max-width: 768px) {

    .team-section h1 {
        font-size: 2.5rem;
    }

    .team-section p {
        font-size: 1rem;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }
}









/* Styles for the 'More Members' section heading and paragraph */
.more-members-section {
    padding: 4rem 2rem;
    text-align: center;
    margin-top: -70px;
}

.more-members-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffff;
    margin-bottom: 1rem;
}

.more-members-section p {
    font-size: 1.1rem;
    color: #ffff;
    margin-bottom: 3rem;
}

/* Styles for the grid container of 'More Members' cards */
.more-members-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    /* Ensures 4 cards fit per row on larger screens */
    margin: 0 auto;
    /* Centers the grid container */
}

/* Styles for individual 'More Members' cards */
.more-member-card {
    position: relative;
    width: 180px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000;
    /* Darker background for card */
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    /* No pointer cursor, as there's no interactive element */
    border: 2px solid transparent;
    /* No border glow for these cards */
}

/* Hover effect for 'More Members' cards */
.more-member-card:hover {
    transform: translateY(-5px);
    /* Slight lift on hover */
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.7);
}

/* Styles for the image within 'More Members' cards */
.more-member-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f97316;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.7);
    margin-bottom: 1rem;
    /* Space between image and name */
}

/* Styles for the name within 'More Members' cards */
.more-member-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

/* Responsive adjustments for 'More Members' section */
@media (max-width: 768px) {
    .more-members-section h1 {
        font-size: 2.5rem;
    }

    .more-members-section p {
        font-size: 1rem;
    }

    .more-members-grid {
        flex-direction: column;
        align-items: center;
    }
}




















.back-container {
    text-align: center;
    margin: 60px 0 40px;
}

.back-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6b00, #ff9500);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.back-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(255, 107, 0, 0.2);
}

.back-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.back-button:hover::before {
    left: 100%;
}



































/* Footer Styles */
footer {
    color: white;
    padding: 40px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 65px 50px;
}

/* Common styles for all divs */
.contact-div,
.logo-div,
.social-div {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding: 0 15px;
}



/* Contact div specific styles */
.contact-div p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 15px;
}



/* Logo div specific styles */
.logo-div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-div img {
    max-width: 200px;
    height: auto;
    margin-right: 341px;
}

/* Social div specific styles */
.social-div {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding: 0 15px;
    margin-right: -335px;
}

.social-div h3 {
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
}

.social-div h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    /* background-color: #4CAF50; */
}

/* Social links styles */
.social-links {
    display: flex;
    flex-direction: column;

}

.social-links a {
    margin-bottom: 12px;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 15px;
}



/* Font Awesome icons styling */
.social-links i {
    margin-right: 10px;
    font-size: 18px;
    width: 20px;
    text-align: center;
    color: white;
}

/* Specific icon hover effects (optional) */
.fa-instagram:hover {
  background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, 
    #fdf497 5%, 
    #fd5949 45%, 
    #d6249f 60%, 
    #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  transform: scale(1.15);
}


.fa-linkedin:hover {
  color: #0778b4;
  text-shadow: 0 0 10px rgba(8, 114, 172, 0.851);
  transform: scale(1.15);
  transition: all 0.3s ease;
}


.fa-youtube:hover {
  color: #FF0000; /* YouTube Official Red */
  transition: color 0.3s ease, transform 0.3s ease;
  transform: scale(1.1);
}


 

/* Responsive styles */
@media (max-width: 768px) {
    .social-div {
        width: 100%;
        text-align: center;
    }

    .social-div h3:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        align-items: center;
    }
}


/* Developer credit - add this to your HTML if needed */
.developer-credit {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #4a4a4a;
}

 

/* Responsive styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .contact-div,
    .logo-div,
    .social-div {
        width: 100%;
        text-align: center;
    }

    h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
}


.developer-credit {
    width: 100%;
    text-align: center;
    padding-top: 15px;
    margin-top: 30px;
    border-top: 1px solid #4a4a4a;

}

.developer-credit h1 {
    font-size: 1em;
    font-weight: normal;
    color: #ccc;
    margin: 0;
    padding-bottom: px;
}



/* Responsive CSS */



@media (max-width: 992px) {


    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }


    .contact-div,
    .logo-div,
    .social-div {
        margin-bottom: 30px;
    }

    .logo-div img {
        margin-right: 0;
    }

    .social-links {
        align-items: center;
    }
}

@media (max-width: 576px) {

    /* Footer */
    .footer-container {
        padding: 40px 20px;
    }
}


/* Footer Styles - Exact Match to Image */
footer {
    background-color: #000;
    color: #fff;
    padding: 50px 0 20px;
}

footer hr {

    /* height: 0.1px; */
    margin: 0 auto 40px;
    max-width: 1200px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-div {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

.logo-div {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-div img {
    max-height: 120px;
    width: auto;
    margin-bottom: 10px;
}

.social-div {
    flex: 1;
    text-align: left;
    padding-left: 20px;
}

.contact-div h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.contact-div p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-div h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.developer-credit {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-div,
    .logo-div,
    .social-div {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .contact-div p {
        justify-content: center;
    }

    .social-links {
        align-items: center;
    }
}