
html, body {
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    background: #0d0d0d; /* deep premium black */
    color: #f5f5f5;
}
 




/* Smooth spacing */
section {
    padding: 60px 0;
}

/* ======================================
   NAVBAR — BLACK + GOLD
   ====================================== */
.navbar {
  display: flex;
  justify-content: space-between;   /* logo left — links right */
  align-items: center;

  padding: 10px 25px;               /* reduced padding */
  background: #141414;

  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;

  box-sizing: border-box;           /* prevents overflow */
}

/* Logo */
.LOGO {
    display: flex;
    align-items: center;
    gap: 10px;
}

.LOGO img {
    width: 48px;
    height: 48px;
    
}

.LOGO span {
    font-size: 26px;
    font-weight: 700;
    color: gold;
}

.menu-toggle {
    
    font-size: 2rem;
    font-weight: bold;
    background: none;
    color: gold;
    border: none;
    cursor: pointer;
    
}


.nav-links span{
    
    

    
    font-size: 2rem;
    font-weight: bold;
    
    
    margin-right: 0rem;
    background: none;
    color: gold;
    border: none;
    cursor: pointer;
    
}
/* ======================================
   NAV BUTTONS
   ====================================== */

.nav-links{

    position: fixed;
    margin: auto ;
    top: .01rem;
    right: -100% ;
    width: 30%;
    height: 90%;
    background: #000000;
    border:.1rem solid gold  ;
    border-radius: 25px;
    padding-top: 60px;
    transition: 0.3s;
    z-index: 1000;
    list-style: none;
    
    
    flex-wrap: wrap;
    

    max-width: 100%;
}






.nav-links li button {
    
    padding: 1rem 20%;
    min-width: 70%;
    margin: 1rem  auto;
    background: #141414;
    border: .1rem solid gold;
    border-radius: .5rem;
    display: flex;
    flex-wrap: wrap;
    font-size: 1rem;
    font-weight: 600;
    justify-content:space-around;
    align-items: center;
    color: gold;
    cursor: pointer;
    

    box-shadow: 0 0 12px rgba(255, 215, 0, .25);
    transition: .3s;
}


.nav-links li button.active {
    border-color: gold;
    background: rgba(255,215,0,0.15);
    box-shadow: 0 0 10px gold;
}


.nav-links li button:hover {
    background: gold;
    color: #000;
    transform: translateY(-3px);
}




/* ======================================
   HERO SECTION
   ====================================== */

.hero-section {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    background: #0d0d0d;
}

.hero-content h1 {
    font-size: 48px;
    color: gold;
}

.hero-content p {
    font-size: 18px;
    color: #cccccc;
}


/* ======================================
   MAIN FRAME — BLACK GLASS BOX
   ====================================== */

.frame {
    width: 90%;
    max-width: fit-content;
    margin: 150px auto 0 auto;
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid gold;
    border-radius: 25px;
    padding: 40px;
    
    justify-content: space-around;
    align-items: center;


    display: flex;
    flex-wrap: wrap;
    

    box-shadow:
        0 0 40px rgba(255, 215, 0, 0.25),
        inset 0 0 20px rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(5px);
}

.frame:hover {
    box-shadow: 0 0 45px rgba(255, 215, 0, .45);
}


/* ======================================
   IMAGE SLIDER — BLACK + GOLD
   ====================================== */


.slider {
    width: 40%;
    
    overflow: hidden;
    border-radius: 18px;
    
}

/* IMPORTANT: width = number_of_images × 100% */
.slides {
    display: flex;
    width: 400%;   /* because you have 4 images */
    animation: slide 16s infinite;
    
}

.slide {
    width: 100%;
    flex-shrink: 0;       /* prevents shrinking */

}









.slide img {
    width: 20%;
    height: auto;
    
    margin: 0;
    object-fit: cover;
    size-adjust: 10%;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid gold;
    box-shadow:
        0 0 25px rgba(255,215,0,.35),
        inset 0 0 15px rgba(255,215,0,.15);
}

/* ---- Animation for 4 images ---- */
@keyframes slide {
    0%   { transform: translateX(0%); }
    20%  { transform: translateX(0%); }

    25%  { transform: translateX(-100%); }
    45%  { transform: translateX(-100%); }

    50%  { transform: translateX(-200%); }
    70%  { transform: translateX(-200%); }

    75%  { transform: translateX(-300%); }
    95%  { transform: translateX(-300%); }

    100% { transform: translateX(0%); }
}

/* 
=================================
Visit Apply and Mail Us buttons 
=================================
*/






.line-btn {
    width: 90%;
    max-width: 80%;
    margin: 1.5rem auto;

    
    padding: 1rem 1.5rem;

    background: #141414;
    border-radius: 16px;
    border: 2px solid gold;

    display: flex;
    flex-wrap: wrap;
    justify-content:space-around;
    align-items: center;

    font-size: 1.3rem;
    color: gold;
    font-weight: 700;

    box-shadow: 0 0 18px rgba(255,215,0,0.25);
    transition: .3s;
}

.line-btn:hover {
    background: gold;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255,215,0,0.45);
}


/* ======================================
   FOUNDER SECTION
   ====================================== */

.founder h1 {
    font-size: 2.5rem;
    text-align: center;
    color: gold;
    font-weight: 700;
    margin-top: 2rem;
}

.founder_frame {
    width: 85%;
    max-width: 80%;
    margin: 1.5rem auto;
    padding: 2rem;

    background: rgba(22, 22, 22, 0.85);
    border-radius: 25px;
    border: 2px solid gold;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;

    box-shadow: 0 0 35px rgba(255,215,0,0.25);
}

.founder_frame:hover {
    box-shadow: 0 0 45px rgba(255,215,0,0.45);
}

.founder_frame img {
    width: 260px;
    height: 260px;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid gold;
}

.founder_frame span {
    width: 60%;
    font-size: 1.1rem;
    color: #f0f0f0;
}


/* ======================================
   FOOTER — BLACK + GOLD
   ====================================== */

.footer {
    margin-top: 40px;
    background: #000;
    padding: 40px 0 0 0;
    border-top: 2px solid gold;
}

.footer-frame {
    max-width: 1100px;
    margin: auto;
    background: #000000;
    border: 2px solid gold;
    border-radius: 25px;
    padding: 30px;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    box-shadow: inset 0 0 15px rgba(255,215,0,0.15);
}

.footer-section h2,
.footer-section h3 {
    color: gold;
}

.footer-section ul li a {
    color: #f5f5f5;
}

.footer-section ul li a:hover {
    color: gold;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #0b0b0b;
    border-top: 1px solid gold;
    color: gold;
}


/* ======================================
   RESPONSIVE DESIGN
   ====================================== */

@media(max-width: 900px) {
    .about-text {
        width: 90%;
    }
}

@media(max-width: 500px) {
    .nav-links li button {
        padding: 7px 14px;
        font-size: 0.9rem;
    }

    .about-container h1 {
        font-size: 2.3rem;
    }
}