* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* Top bar */
.top-bar {
    background: #1f2933;
    color: #fff;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.top-links a {
    color: #ffb400;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

/* Navbar */
.navbar {
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: relative; /* important */
    z-index: 999;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 50px;
}

/* Menu */
#nav-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

#nav-menu ul li a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
}

#nav-menu ul li a:hover {
    color: #ffb400;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Tablet */
@media (max-width: 991px) {
    #nav-menu ul {
        gap: 15px;
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    #nav-menu {
        position: absolute;
        top: 80px;           /* navbar ke just niche */
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        border-top: 1px solid #ddd;
        z-index: 9999;       /* 🔥 MAIN FIX */
    }

    #nav-menu.active {
        display: block;
    }

    #nav-menu ul {
        flex-direction: column;
        padding: 20px;
    }

    #nav-menu ul li {
        padding: 12px 0;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        height: auto;
        padding: 10px 0;
    }
}

/* --- Dropdown Fix Start --- */

/* 1. Ensure Parent is Relative */
#nav-menu ul li {
    position: relative; 
}

/* 2. Dropdown Menu (Isse strictly hide kiya gaya hai) */
.dropdown-content {
    display: none !important; /* Shuruat mein bilkul hide rahega */
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 9999;
    list-style: none;
    padding: 5px 0 !important;
    border-top: 3px solid #ffb400; /* Yellow top border */
    top: 100%; 
    left: 0;
    margin: 0;
}

/* 3. Dropdown Links Styling */
.dropdown-content li {
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
}

.dropdown-content li a {
    padding: 12px 20px !important;
    display: block !important;
    font-size: 14px;
    font-weight: 500 !important;
    color: #333 !important;
    text-align: left;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.3s ease;
}

.dropdown-content li a:hover {
    background-color: #f8f9fa;
    color: #ffb400 !important;
    padding-left: 25px !important; /* Chhota sa animation effect */
}

/* 4. SHOW ON HOVER (Only for Laptop/Desktop) */
@media (min-width: 769px) {
    #nav-menu ul li:hover > .dropdown-content {
        display: block !important; /* Mouse le jane par hi dikhega */
    }
}

/* 5. MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {
    .dropdown-content {
        position: static !important; /* Mobile mein list ke neeche aayega */
        display: none !important; 
        box-shadow: none;
        border-top: none;
        border-left: 2px solid #ffb400; /* Side line for mobile */
        background: #f9f9f9;
        margin-left: 10px;
    }

    /* Mobile Click Toggle (JS ke liye) */
    .dropdown-content.show {
        display: block !important;
    }
    
    #nav-menu ul li {
        padding: 5px 0;
    }
}
/* --- Dropdown Fix End --- */










.hero-slider{
    position:relative;
    width:100%;
    height:90vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1s ease;
}

.slide.active{
    opacity:1;
    z-index:1;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    text-align:center;
    max-width:900px;
    padding:20px;
}

.content h5{
    color:#ffc107;
    letter-spacing:2px;
    margin-bottom:15px;
    font-size:18px;
}

.content h1{
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
}

.content p{
    font-size:16px;
    opacity:0.9;
    margin-bottom:30px;
}

.buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    padding:14px 32px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-outline{
    border:2px solid #ffc107;
    color:#ffc107;
}

.btn-outline:hover{
    background:#ffc107;
    color:#000;
}

.btn-fill{
    background:#ffc107;
    color:#000;
}

.btn-fill:hover{
    background:#e0a800;
}

/* arrows */
.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:40px;
    color:#fff;
    cursor:pointer;
    padding:10px;
    z-index:10;
}

.arrow.left{ left:20px; }
.arrow.right{ right:20px; }

/* dots */
.dots{
    position:absolute;
    bottom:25px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:10;
}

.dots span{
    width:12px;
    height:12px;
    background:#fff;
    opacity:0.5;
    border-radius:50%;
    cursor:pointer;
}

.dots span.active{
    opacity:1;
    background:#ffc107;
}

/* Tablet */
@media(max-width:991px){
    .content h1{ font-size:38px; }
}

/* Mobile */
@media(max-width:600px){
    .hero-slider{ height:80vh; }
    .content h1{ font-size:28px; }
    .content p{ font-size:14px; }
}

/* ===== Better Responsive Tweaks (NO DESIGN CHANGE) ===== */

/* Large Desktop */
@media (min-width:1400px){
    .content{
        max-width:1100px;
    }
    .content h1{
        font-size:58px;
    }
}

/* Tablet */
@media (max-width:991px){
    .hero-slider{
        height:85vh;
    }

    .content{
        width:100%;
        padding:30px;
    }

    .content h1{
        font-size:38px;
        line-height:1.3;
    }

    .content p{
        font-size:15px;
    }

    .arrow{
        font-size:32px;
    }
}

/* Mobile */
@media (max-width:600px){
    .hero-slider{
        height:80vh;
    }

    .content{
        width:100%;
        padding:20px;
    }

    .content h5{
        font-size:14px;
        letter-spacing:1px;
    }

    .content h1{
        font-size:26px;
        line-height:1.3;
    }

    .content p{
        font-size:14px;
        margin-bottom:20px;
    }

    .buttons{
        flex-direction:column;
        gap:12px;
    }

    .btn{
        width:100%;
        text-align:center;
        padding:12px 0;
    }

    .arrow{
        font-size:28px;
    }

    .arrow.left{ left:10px; }
    .arrow.right{ right:10px; }

    .dots span{
        width:10px;
        height:10px;
    }
}




.con_about_area_two{
    position: relative;
}

/* background image yahin lagayi */
.con_about_top{
    position: relative;
    padding: 100px 0;
    background: url("img/home/art.png") no-repeat top center;
    background-size: cover;
}

/* white overlay (image light dikhegi jaise screenshot) */
.con_about_top::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.92);
    z-index: 0;
}

.con_about_content{
    position: relative;
    z-index: 1;
}

/* text styling */
.con_title_top{
    color: #f5b400;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.con_title{
    font-size: 34px;
    font-weight: 700;
}

.line_bottom{
    width: 60px;
    height: 3px;
    background: #f5b400;
    margin: 15px auto 25px;
}

.con_p{
    max-width: 900px;
    margin: auto;
    line-height: 1.8;
    color: #555;
}

/* responsive */
@media(max-width:768px){
    .con_about_top{
        padding: 70px 0;
    }

    .con_title{
        font-size: 26px;
    }

    .con_p{
        font-size: 14px;
    }
}




.about-section{
  position:relative;
  padding:80px 15px;
  background:url("img/art.png") center/cover no-repeat;
}

.about-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.95);
}

.container{
  max-width:1200px;
  margin:auto;
  position:relative;
  z-index:1;
}

/* TEXT AREA */
.about-text{
  text-align:center;
  max-width:900px;
  margin:0 auto 60px;
}

.about-text h6{
  color:#f5a000;
  letter-spacing:2px;
  font-weight:600;
  margin-bottom:10px;
}

.about-text h2{
  font-size:36px;
  font-weight:700;
  margin-bottom:15px;
}

.about-text .line{
  width:60px;
  height:3px;
  background:#f5a000;
  margin:0 auto 20px;
}

.about-text p{
  font-size:15px;
  color:#555;
  line-height:1.7;
}

/* IMAGE GRID */
.about-images{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.about-images img{
  width:100%;
  height:400px;
  object-fit:cover;
  border-radius:4px;
}

/* TABLET */
@media(max-width:992px){
  .about-images{
    grid-template-columns:repeat(2,1fr);
  }

  .about-text h2{
    font-size:30px;
  }
}

/* MOBILE */
@media(max-width:576px){
  .about-section{
    padding:50px 15px;
  }

  .about-images{
    grid-template-columns:1fr;
  }

  .about-images img{
    height:220px;
  }

  .about-text h2{
    font-size:24px;
  }
}





.container{
  max-width:1200px;
  margin:auto;
  padding:0 15px;
}

/* HEADER */
.project-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:30px;
}

.project-header h2{
  font-size:28px;
}

.line{
  width:50px;
  height:3px;
  background:#f5b400;
  margin-top:10px;
}

/* NAV */
.project-nav button{
  background:none;
  border:2px solid #f5b400;
  color:#f5b400;
  font-size:20px;
  padding:8px 14px;
  cursor:pointer;
  margin-left:10px;
}

.project-nav button:hover{
  background:#f5b400;
  color:#000;
}

/* SLIDER */
.project-slider-wrapper{
  overflow:hidden;
  position:relative;
}

.project-slider{
  display:flex;
  gap:25px;
  transition:0.6s ease;
}

/* CARD */
.project-card{
  min-width:32%;
  background:#1b2a36;
  border-radius:6px;
  overflow:hidden;
  opacity:0.5;
  transform:scale(0.9);
  transition:0.4s;
}

.project-card.active{
  opacity:1;
  transform:scale(1);
}

.project-card img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.project-card .text{
  padding:15px;
}

.project-card h4{
  font-size:16px;
}

.project-card p{
  font-size:13px;
  color:#bbb;
}

/* TABLET */
@media(max-width:992px){
  .project-card{
    min-width:48%;
  }
}

/* MOBILE */
@media(max-width:576px){
  .project-header{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
  }

  .project-card{
    min-width:100%;
    opacity:1;
    transform:none;
  }
}






/* SECTION */
.certificate-section{
  padding:60px 0;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* TITLE */
.section-title{
  font-size:28px;
  font-weight:700;
  margin-bottom:40px;
  position:relative;
}

.section-title span{
  display:block;
  width:50px;
  height:3px;
  background:#f5b400;
  margin-top:10px;
}

/* GRID */
.certificate-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:25px;
}

/* CARD */
.certificate-card{
  background:#fff;
  padding:10px;
  border:1px solid #eee;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s;
}

.certificate-card img{
  width:100%;
  height:auto;
  object-fit:contain;
}

/* HOVER */
.certificate-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* TABLET */
@media(max-width:992px){
  .certificate-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

/* MOBILE */
@media(max-width:576px){
  .section-title{
    font-size:22px;
  }

  .certificate-grid{
    grid-template-columns:1fr;
  }
}






/* FOOTER */
.footer{
  background:#1c2630;
  color:#cfd8dc;
  padding:50px 0 20px;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* TITLE */
.footer-title{
  color:#ffffff;
  font-size:14px;
  font-weight:600;
  margin-bottom:20px;
}

/* LIST */
.footer-list{
  list-style:none;
}

.footer-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:13px;
  line-height:1.6;
  margin-bottom:12px;
}

.footer-list i{
  color:#f5b400;
  font-size:14px;
  margin-top:3px;
}

/* BOTTOM */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  margin-top:30px;
  padding-top:15px;
  text-align:center;
  font-size:12px;
  color:#9aa7b2;
}

/* MOBILE */
@media(max-width:768px){
  .footer-list li{
    font-size:12px;
  }

  .footer-title{
    font-size:13px;
  }
}






/* --- Floating Buttons Styles --- */

/* Common Floating Style */
.floating {
    position: fixed;
    bottom: 20px;
    z-index: 999;
}

.float-left {
    left: 20px;
}

.float-right {
    right: 20px;
}

/* WhatsApp & Call Button Design */
.floating a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Colors */
.floating a.wa {
    background-color: #25d366; /* WhatsApp Green */
}

.floating a.call {
    background-color: #007bff; /* Call Blue */
}

/* Hover Effect (Desktop Only) */
.floating a:hover {
    transform: scale(1.1);
}

/* --- Back to Top Button --- */
#toTop {
    position: fixed;
    bottom: 90px; /* WhatsApp/Call ke upar rahega */
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    z-index: 1000;
    display: none; /* JS se show/hide karne ke liye (Optional) */
    transition: 0.3s;
}

#toTop:hover {
    background-color: #ffb400; /* Aapka theme yellow color */
}

/* --- Responsive Adjustments --- */

/* Tablet (Max 991px) */
@media (max-width: 991px) {
    .floating a {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Mobile (Max 768px) */
@media (max-width: 768px) {
    .floating {
        bottom: 15px;
    }
    
    .float-left { left: 15px; }
    .float-right { right: 15px; }

    #toTop {
        bottom: 80px;
        width: 40px;
        height: 40px;
    }
}





