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

 }

 body{
    overflow-x: hidden;
 }
 
 /* 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;
    }
}













.container {
     max-width: 1100px;
     margin: 0 auto;
     padding: 40px 20px;
 }

 .heading_aero {
     text-align: center;
     margin-top: 80px;
     margin-bottom: 20px;
     position: relative;
    font-size: 2rem;
     /* color: #ff6b00; */
     color: #fff;
     /* color: white; */
     margin-bottom: 20px;
     position: relative;
     display: inline-block;
     animation: fadeIn 1.5s ease-in-out;
 }

 

 .heading_aero h1::after {
     content: "";
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 3px;
     background: #ff6b00;
     border-radius: 2px;
     animation: expand 1.5s ease-in-out;
 }

 .main-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin: 60px 0;
     padding: 30px;
     border: 2px solid #ff6b00;
     border-radius: 20px;
     background: rgba(255, 255, 255, 0.02);
     backdrop-filter: blur(4px);
     animation: borderGlow 3s infinite alternate;
 }

 .content-text {
     flex: 1;
     padding-right: 40px;
     color: white;
     background: none;
 }

 .content-text p {
     font-size: 1.1rem;
     line-height: 1.8;
     margin-bottom: 15px;
     animation: slideInLeft 1s ease-in-out;
     background: none;
     text-align: justify;
 }

 .logo-container {
     flex: 1;
     display: flex;
     justify-content: center;
     align-items: center;
     animation: slideInRight 1s ease-in-out;
 }

 .team-logo {
     max-width: 100%;
     border-radius: 15px;
     box-shadow: 0 0 25px rgba(255, 107, 0, 0.4);
     transition: transform 0.5s ease, box-shadow 0.5s ease;
 }

 .team-logo:hover {
     transform: scale(1.05) rotate(2deg);
     box-shadow: 0 0 35px rgba(255, 107, 0, 0.7);
 }

 .gallery-section {
     margin: 80px 0;
 }

 .gallery-heading {
     text-align: center;
     margin-bottom: 40px;
 }

 .gallery-heading h2 {
     font-size: 3rem;
     color: #ff6b00;
     position: relative;
     display: inline-block;
 }

 .gallery-heading h2::after {
     content: "";
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 3px;
     background: #ff6b00;
     border-radius: 2px;
 }

 .gallery {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
     gap: 20px;
     margin: 30px 0;
 }

 .gallery-item {
     position: relative;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     aspect-ratio: 1 / 1;
     cursor: pointer;
 }

 .gallery-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
 }

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

 .gallery-item:hover img {
     transform: scale(1.1);
 }

 .overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
     padding: 20px 15px;
     transform: translateY(100%);
     transition: transform 0.3s ease;
 }

 .gallery-item:hover .overlay {
     transform: translateY(0);
 }

 .caption {
    
     color: white;
     font-size: 1rem;
     font-weight: bold;
     text-align: center;
     background: none;
 }

 .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%;
 }

 

 @keyframes fadeIn {
     0% {
         opacity: 0;
     }

     100% {
         opacity: 1;
     }
 }

 @keyframes expand {
     0% {
         width: 0;
     }

     100% {
         width: 100px;
     }
 }

 @keyframes slideInLeft {
     0% {
         transform: translateX(-50px);
         opacity: 0;
     }

     100% {
         transform: translateX(0);
         opacity: 1;
     }
 }

 @keyframes slideInRight {
     0% {
         transform: translateX(50px);
         opacity: 0;
     }

     100% {
         transform: translateX(0);
         opacity: 1;
     }
 }

 @keyframes floatAnimation {
     0% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-10px);
     }

     100% {
         transform: translateY(0);
     }
 }

 .floating {
     animation: floatAnimation 3s ease-in-out infinite;
 }







 @media (max-width: 768px) {
  .main-content {
    flex-direction: column;
    text-align: center;
  }

  .logo-container {
    order: -1; /* Moves image ABOVE the text */
    margin-bottom: 20px;
  }

  .content-text {
    font-size: 1rem;
    text-align: justify;
    padding-right: 0px;
  }

  .team-logo {
    max-width: 90%;
  }
}




 
  




/* 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 {
    color: #C13584;
}

.fa-linkedin:hover {
    color: #C13584;
}

.fa-youtube:hover {
    color: #FF0000;
}

.fa-x-twitter:hover {
    color: #C13584;
}

/* 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;
    }
}











.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;
}
