* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary-color: #1a2a6c;
      --secondary-color: #ff9800;
      --text-color: #333;
      --light-bg: #f8f9fa;
      --white: #ffffff;
    }

    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      overflow-x: hidden;
      padding-top: 80px; /* Offset for fixed nav */
    }

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

    /* Improved Navigation for Mobile */
    nav {
      background: var(--white);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      height: 80px;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      max-width: 1500px;
      margin: 0 ;
    }

    .nav-container img {
      height: 50px;
      margin-right: 10px;
      border-radius: 50%;
      border: 2px solid #ff9800;
    }
    .nav-container .logo {
      padding-right: 150px;
    }

    .logo {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary-color);
      text-decoration: none;
      margin-left: 1px;
    }

    .logo span {
      color: var(--secondary-color);
    }

    .nav-links {
      display: flex;
      list-style: none;
      margin-right: 150px;
    }

    .nav-links li {
      margin-left: 30px;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--secondary-color);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: var(--text-color);
      margin: 3px 0;
      transition: all 0.3s;
    }

    /* Header with improved mobile video */
    header {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--white);
      position: relative;
      margin-top: 0;
    }

    .bg-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    header::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: -1;
    }

    header h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 3.5rem;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 0 20px;
    }

    header p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      max-width: 700px;
      padding: 0 20px;
    }

    .cta-button {
      display: inline-block;
      background: var(--secondary-color);
      color: var(--white);
      padding: 12px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .cta-button:hover {
      background: #e68900;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    /* Section Styles */
    section {
      padding: 50px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--secondary-color);
    }

    .section-title p {
      color: #666;
      font-size: 1.1rem;
    }

    /* About Section */
    .about-content {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .about-text {
      flex: 1;
    }

    .about-text p {
      margin-bottom: 20px;
      font-size: 1.1rem;
      line-height: 1.8;
    }

    .about-image {
      flex: -1;
      text-align: center;
    }

    .about-image img {
      height: 600px;
      width: 500px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* Services Section */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .service-card {
      background: var(--white);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s, box-shadow 0.3s;
      text-align: center;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .service-icon {
      font-size: 2.5rem;
      color: var(--secondary-color);
      margin-bottom: 20px;
    }

    .service-content h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--primary-color);
    }

    /* Gallery Section */
    .gallery-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .gallery-item {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      height: 250px;
    }

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

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

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

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

    .gallery-overlay h3 {
      margin-bottom: 5px;
      font-size: 1.2rem;
    }
        .gallery-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
      margin-bottom: 30px;
    }
    
    .gallery-item.hidden {
      display: none;
    }
    
    .view-more-container {
      text-align: center;
      margin-top: 20px;
    }
    
    .view-more-btn {
      display: inline-block;
      padding: 12px 30px;
      background-color: #e74c3c;
      color: white;
      border: none;
      border-radius: 4px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .view-more-btn:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    } 

    /* Industries Section */
    .industries-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .industry-card {
      background: var(--white);
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s;
    }

    .industry-card:hover {
      transform: translateY(-5px);
    }

    .industry-icon {
      font-size: 2.5rem;
      color: var(--secondary-color);
      margin-bottom: 20px;
    }

    .industry-card h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      color: var(--primary-color);
    }

    /* Why Us Section */
    .why-us {
      background: var(--light-bg);
    }

    .section-title1 {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title1 h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .section-title1 h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--secondary-color);
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .benefit-item {
      display: flex;
      align-items: flex-start;
      background: var(--white);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .benefit-icon {
      font-size: 2rem;
      color: var(--secondary-color);
      margin-right: 20px;
      flex-shrink: 0;
    }

    .benefit-item h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: var(--primary-color);
    }

    /* License Section */
    #licenses {
      background:  #ffffff;
      color: #2b5876;
      padding: 80px 0;
    }

    .licenses-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .license-item {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 25px 20px;
      flex: 1;
      min-width: 250px;
      max-width: 300px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    .license-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      background: rgba(255, 255, 255, 0.15);
    }

    .license-icon {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: var(--secondary-color);
    }

    .license-item h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: #2b5876;
    }

    .license-number {
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--secondary-color);
      margin: 10px 0;
      background: rgba(0, 0, 0, 0.2);
      padding: 8px 15px;
      border-radius: 5px;
      display: inline-block;
    }

    .license-desc {
      font-size: 0.9rem;
      opacity: 0.9;
    }

    /* Contact Section */
    .contact-container {
      display: flex;
      gap: 40px;
    }

    .contact-info {
      flex: 1;
    }

    .contact-info h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: var(--primary-color);
    }

    .contact-info > p {
      margin-bottom: 30px;
      font-size: 1.1rem;
    }

    .contact-card {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
    }

    .contact-icon {
      font-size: 1.5rem;
      color: var(--secondary-color);
      margin-right: 15px;
      flex-shrink: 0;
    }

    .contact-card h4 {
      font-size: 1.2rem;
      margin-bottom: 5px;
      color: var(--primary-color);
    }

    /* Footer */
    footer {
      background: var(--primary-color);
      color: var(--white);
      padding: 60px 0 20px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-column h3 {
      font-size: 1.5rem;
      margin-bottom: 20px;
      color: var(--secondary-color);
      position: relative;
      padding-bottom: 10px;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--secondary-color);
    }

    .footer-column p {
      margin-bottom: 20px;
      line-height: 1.8;
    }

    .social-links {
      display: flex;
      gap: 15px;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: var(--white);
      transition: all 0.3s;
    }

    .social-links a:hover {
      background: var(--secondary-color);
      transform: translateY(-3px);
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a, .footer-links li {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s;
      display: flex;
      align-items: center;
    }

    .footer-links a:hover {
      color: var(--secondary-color);
    }

    .footer-links i {
      margin-right: 10px;
      color: var(--secondary-color);
      width: 20px;
    }

    .copyright {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.9rem;
      color: #ccc;
    }

/* ===========================
   RESPONSIVE FIXES
=========================== */

@media (max-width: 1200px) {

    .nav-container{
        padding:15px 20px;
        justify-content:space-between;
    }

    .nav-container .logo{
        padding-right:0;
    }

    .nav-links{
        margin-right:0;
    }

    .nav-links li{
        margin-left:20px;
    }

    .about-image img{
        width:100%;
        max-width:450px;
        height:auto;
    }
}

@media (max-width:992px){

    .about-content,
    .contact-container{
        flex-direction:column;
    }

    .about-image img{
        width:100%;
        max-width:500px;
        height:auto;
    }

    header h1{
        font-size:2.8rem;
    }

    .benefits-grid,
    .services-grid,
    .industries-container,
    .gallery-container{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:768px){

    nav{
        height:70px;
    }

    body{
        padding-top:70px;
    }

    .nav-container{
        padding:10px 15px;
    }

    .nav-container img{
        height:45px;
    }

    .logo{
        font-size:1.4rem;
    }

    .hamburger{
        display:flex;
    }

    .nav-links{
        position:fixed;
        top:70px;
        left:-100%;
        width:100%;
        height:calc(100vh - 70px);
        background:#fff;
        flex-direction:column;
        justify-content:flex-start;
        align-items:center;
        padding-top:40px;
        transition:.3s;
        margin:0;
    }

    .nav-links.active{
        left:0;
    }

    .nav-links li{
        margin:18px 0;
    }

    header{
        height:80vh;
        padding:0 20px;
    }

    header h1{
        font-size:2rem;
    }

    header p{
        font-size:1rem;
    }

    .section-title h2,
    .section-title1 h2{
        font-size:2rem;
    }

    .benefits-grid,
    .services-grid,
    .industries-container,
    .gallery-container{
        grid-template-columns:1fr;
    }

    .license-item{
        min-width:100%;
    }

    .footer-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .social-links{
        justify-content:center;
    }

}

@media (max-width:480px){

    .container{
        padding:0 15px;
    }

    header h1{
        font-size:1.6rem;
    }

    header p{
        font-size:.95rem;
    }

    .cta-button{
        width:100%;
        max-width:260px;
    }

    .service-card,
    .industry-card,
    .benefit-item,
    .license-item{
        padding:20px;
    }

    .about-image img{
        width:100%;
        height:auto;
    }

    .contact-card{
        flex-direction:column;
        text-align:center;
    }

    .contact-icon{
        margin:0 0 10px;
    }

    .footer-links li{
        justify-content:center;
    }

}