body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/*-------------------- navbar section */

/* ===== TOP RED BAR ===== */
.top-bar {
  background: #e60000;why-choose-us h2
  color: #fff;
  padding: 6px 0;
  font-size: 18px;
  font-weight: bold;
}

.top-container {
  max-width: 1250px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}


/* Keep icons + text aligned */
.top-container span {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;   /* FIX: Prevent breaking */
}


/* MOBILE FIX */
@media (max-width: 768px) {
    .top-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        
    }
    .top-bar {
  
  font-size: 15px;
  line-height:1;
  
}

    .top-container span {
        font-size: 14px;
        white-space: nowrap;   /* keep everything in single line */
    }
  
    
}  



/* NAVBAR BASIC */
/* ===== MAIN NAVBAR ===== */
.nav-logo img {
    width: 220px;
    height: auto;
    display: block;
    margin-left:125px;
   
}

.main-navbar {
    background: #000;
    padding: 10px 20px;
    position: relative;
    z-index: 10000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-right:125px;
}

/* MENU LINKS */
.nav-links a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    padding: 8px 5px;
}
.nav-links a:hover{
    border-bottom: 3px solid #facc15;
     color: #facc15;
      text-shadow: 0 0 20px #facc15;

}
.dropbtn:hover{
       border-bottom: 3px solid #facc15;
     color: #facc15;
      text-shadow: 0 0 20px #facc15;

}

/* === DROPDOWN DESKTOP === */
.dropdown {
    position: relative;
}

.dropbtn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    font-weight: 500;
    padding: 8px 5px;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #111;
    border: 1px solid #333;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease-in-out;
    z-index: 999;
}

.dropdown-content a {
    display: block;
    padding: 12px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #222;
}

.dropdown-content a:hover {
    background: #222;
    color: #facc15;
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        
    }
    
    
  
}

/* === MOBILE NAV === */
.menu-toggle {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: #fff;
}

/* MOBILE DESIGN FIX */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;

    }
    
    .nav-logo img {
    margin-left:25px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #111;
        padding: 20px 0;
        text-align: center;
        z-index: 9999;
        position: absolute;
        top: 100%;
        left: 0;
    }

    /* Show menu when active */
    .nav-links.active {
        display: flex !important;
    }

    /* Mobile dropdown */
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        display: none;
        background: #111;
    }

    .dropdown.open .dropdown-content {
        display: block;
    }
 

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #ffffff;
    color: #222;
}

/*--about section start--*/


/* GLOBAL STYLES */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #0b0b0b;
    color: #fff;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 600;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    text-align: center;


}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 40vh;
    background: url('images/new5.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: yellow;
    font-weight: bold;
}

.hero-content p {
    font-size: 18px;
}

/* ABOUT SECTION */
.about-wrapper {
    padding: 10px 0;
        text-align: center;
            justify-content: center;
}

.about-wrapper .container {
    display: flex;
    align-items: center;
    gap: 200px;
    flex-wrap: wrap;
    
}

.about-text {
    /*flex: 1 1 500px;*/
    /*padding-left:60px;*/
}

.about-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: red;
    background: linear-gradient(90deg,yellow,orangered);
        font-weight: bolder;

}

.about-text p {
    line-height: 1.4;
    margin-bottom: 15px;
    text-align:justify;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    /*border: 2px solid #ffe600;*/
    /*box-shadow: 0 0 35px rgba(255,230,0,0.4);*/

}


/* MISSION */
.mission-section {
    padding: 10px 0;
    text-align: center;
}

.mission-box h2 {
    font-size: 30px;
    margin-bottom: 15px;
    background: linear-gradient(90deg,yellow,orangered);
    border-radius: 20px;

}

/* WHY CHOOSE US */
.why-choose-us {
    padding: 20px 0;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 24px;
    margin-bottom: 30px;
    background: linear-gradient(90deg,yellow,orangered);
    margin-left:100px;
    margin-right:100px;
      border-radius: 20px;

}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    
    margin-left: 70px;
    margin-right: 70px;
}

.feature-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
     margin-left: 30px;
    margin-right: 30px;
    border: 2px ridge gold;
    transition: 0.3s;
    box-shadow: 0 0 10px gold;

}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ffe600;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: red;
}

/* EXPERIENCE */
.experience-section {
    padding: 60px 0;
    background: #111;
    text-align: center;
}

.experience-box h2 {
    font-size: 30px;
    margin-bottom: 15px;
    background: linear-gradient(90deg,yellow,orangered);
      border-radius: 20px;

}

.experience-box p {
    width: 90%;
    max-width: 900px;
    margin: 10px auto;
    line-height: 1.7;
}

/* CTA SECTION */
.cta-section {
    padding: 40px 15px;
    background: #ffe600;
    text-align: center;
    color: #000;
   
}

.cta-section h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 33px;
    background: #000;
    color: #ffe600;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
     font-size: 18px;
}

.cta-btn:hover {
    background: red;
    color:white;
     font-size: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    
    .hero-content h1 {
        font-size: 30px;
    }

    .about-wrapper .container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        margin-top:none;
    }
   
    .feature-card{
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 30px;

    }
  
    .why-choose-us h2 {
    font-size: 30px;
    margin-bottom: 30px;
    background: linear-gradient(90deg,yellow,orangered);
    /*margin-left:100px;*/
    /*margin-right:100px;*/

}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    
    /*margin-left: 70px;*/
    /*margin-right: 70px;*/
}
.about-wrapper .container {
    display: flex;
    align-items: center;
    gap: 1px;
    flex-wrap: wrap;
    
}
.about-text {
    /*flex: 1 1 500px;*/
    /*padding-left:60px;*/
}
    
}







/*---end-*/



/*footer*/
/* Footer CSS (paste into your stylesheet) */
.site-footer{
    background-color:black;
  color:#cfd8e3;
  padding:54px 18px 22px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  position:relative;
}

.footer-inner{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap:36px;
  align-items:start;
}

/* columns */
.site-footer .col h4{
  color:#fff;
  font-size:20px;
  letter-spacing:1px;
  margin-bottom:18px;
  position:relative;
  font-weight:700;
  text-transform:uppercase;
}

/* little yellow underline */
.site-footer .col h4::after{
  content:"";
  width:36px;
  height:3px;
  background:#ffd000;
  position:absolute;
  right:0;
  top:8px;
}

/* about */
.footer-logo{ 
    width:270px; 
    height:60px; 
    margin-bottom:18px; 
    display:block; 
    
}
.about-text{
    color:rgba(255,255,255,0.85);
    line-height:1.8;
    font-size:15px;
    max-width:520px; 
    
}

/* lists */
.site-footer ul{ 
    list-style:none; 
    padding:0; 
    margin:0;
    }
.site-footer ul li{
    margin:14px 0;
    }
.site-footer a{ 
    color:rgba(255,255,255,0.85);
    text-decoration:none; 
    transition:color .16s;
    }
.site-footer a:hover{ 
    color:#ffd000; 
    
}

/* contact */
.contact-label{ 
    font-weight:700;
    margin-top:12px; 
    color:#fff; 
    
}
.contact-phone a{ 
    color:#ffd000;
    font-weight:700; 
    font-size:20px;
    text-decoration:none; 
    display:inline-block; 
    margin:12px 0; 
    
}
.contact-address{
    color:rgba(255,255,255,0.6); 
    line-height:1.7; 
    margin-top:8px; 
    
}

/* social buttons */
.social{ 
    margin-top:18px; 
    display:flex; 
    gap:12px; 
    align-items:center; 
    
}
.social-btn{
  width:44px;
  height:44px; 
  border-radius:50%;
  display:inline-flex;
  align-items:center; 
  justify-content:center;
  background:transparent; 
  color:#fff; 
  border:1px solid rgba(255,255,255,0.18);
  text-decoration:none;
  transition: all .18s;
}
.social-btn svg{
    width:18px; 
    height:18px; 
    display:block; 
    
}
.social-btn:hover{ 
    transform:translateY(-4px);
    border-color:#ffd000; 
    color:#ffd000; 
    box-shadow:0 6px 18px rgba(0,0,0,0.4);
    }




/*-----------------------------------------------*/
/* responsive */
/*@media (max-width: 980px){*/
/*  .footer-inner{ */
/*      grid-template-columns: 1fr 1fr;*/
/*      gap:22px;*/
/*      }*/
/*  .site-footer .col h4::after{ */
/*      right:12px; */
      
/*  }*/
 
/*}      */

/*@media (max-width: 600px){*/
/*  .footer-inner{ */
/*      grid-template-columns: 1fr; */
      
/*  }*/
/*  .footer-logo{*/
/*      width:280px; */
      
/*  }*/
/*  .about-text-footer{ */
/*      font-size:14px;*/
/*      margin-left:10px;*/
/*      }*/
/*  .footer-disclaimer{ */
/*      font-size:13px;*/
/*      padding:14px; */
      
/*  }*/
/*  .site-footer .col h4{ */
/*      text-align:left; */
      
/*  }*/
/*}*/


/* Mobile & Tablet */
@media (max-width: 980px) {

  /* 2-column footer layout */
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  /* Make about/header section full width */
  .footer-inner .about,
  .footer-inner .footer-about {
    grid-column: 1 / -1;
  }

  /* Hide Services section */
  .site-footer .services {
    display: none;
  }

  .site-footer .col h4 {
    text-align: left;
  }
  .footer-logo{ 
    width:300px; 
    height:60px; 
    margin-bottom:18px; 
    display:block; 
    margin-left: 20px;
}
}

/* Small Mobile Tweaks */
@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .about-text {
    font-size: 14px;
    line-height: 1.6;
    text-align:center;
  }
}



