* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}
.contact-number {
  display: inline-block;
  margin-left: 15px;
  font-size: 15px;
  font-weight: bold;
  color: #000;
  vertical-align: middle;
}

/* Mobile view ke liye hide */
@media (max-width: 767px) {
  .contact-number {
    display: none;
  }
}

.top-bar {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  color: #000;
  font-size: 14px;
  flex-wrap: wrap;
}

.top-bar .logo img {
  height: 50px;
}

.top-bar .right {
  white-space: nowrap;
  font-weight: bold;
  color: black;
  padding: 6px 16px;
  border-radius: 25px;
  font-style: italic;
}

.top-bar .right:hover{
  color: #0b6337b9;
}

.scrolling-wrapper {
  flex: 1;
  max-width: 770px;
  margin: 0 auto;
  overflow: hidden;
  padding: 5px 10px;
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  color: red;
  font-weight: bold;
  font-size: 16px;
  animation: scroll-left 15s linear infinite;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 26px;
  padding: 10px;
  position: absolute;
  right: 20px;
  top: 70px;
  cursor: pointer;
  z-index: 1001;
  border: 1px solid #000;
  border-radius: 5px;
}

.scrolling-text {
      width: 100%;
      overflow: hidden;
    }

    .center  {
      display: inline-block;
      white-space: nowrap;
      color: red;
      font-weight: bold;
      font-size: 16px;
      animation: scroll-left 15s linear infinite;
      padding: 10px 0;
    }

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media(max-width:900px){
  .logo img {
    display: none;
  }
  .right {
    display: none;
  }
}

@media (max-width: 600px) {
  .scrolling-wrapper {
    max-width: 100%;
    padding: 5px 15px;
  }

  .scrolling-text {
    font-size: 14px;
  }
}

.main-header {
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-bottom: 1px solid #ccc;
  z-index: 9999;
  position: relative;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-nav ul li a {
  text-decoration: none;
  color: wheat;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav ul li a:hover {
  color: #e60000;
}
.close-btn{
  display: none;
}
@media (max-width: 900px) {
  .top-bar .logo img {
    display: none;
  }

  .main-header {
    background: none;
  }
  
  .top-bar .right {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .close-btn:hover{
    color: #ff2c2c;
  }
  .close-btn{
  display: block;
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  font-weight: bold;
  color: black;
  cursor: pointer;
}

  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 70vh;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(8px);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 30px;
  }

  .main-nav ul li a {
    font-size: 22px;
    font-weight: bold;
  }
 
  .menu-toggle:checked + .menu-icon + .main-header .main-nav {
    display: flex;
    flex-direction: column;
  }

}

.banner {
  background-image: url('com/banner\ \(2\).png'); 
  background-size: cover;                
  background-position: center;           
  background-repeat: no-repeat;          
  width: 100vw;                          
  height: 600px;                         
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin: 0;                             
  padding: 0;                            
  box-sizing: border-box;
}

/* Responsive  */
@media (max-width: 900px) {
  .banner {
    height: 400px;                  
    background-size: cover;
    background-position: center;
    padding: 0;
    width: 100%;
  }

  .banner h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .banner {
    min-height: 70vh;
  }
}

@media (max-width: 480px) {
  .banner {
    min-height: 60vh;
  }
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-images {
    flex: 1;
    padding: 10px;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.about-content {
    flex: 1;
    padding: 20px;
}

.about-content h2 {
    color: red;
    font-size: 28px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-content h3 {
    color: #1a1a5a;
    font-size: 24px;
    margin-bottom: 15px;
}

.about-content p {
    color: #333;
    font-size: 9px;
    line-height: 1.6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f2f2f2;
}

.about-us {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.main-heading {
  color: red;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 6px;
  margin-bottom: 30px;
  text-transform: uppercase;
  background-color: #bfbfbf; 
  padding: 20px 0;
  text-align: center;

}


.container {
  display: flex;
  flex-direction: row;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  text-align: left;
}

.image-box {
  flex: 1;
  max-width: 500px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.grid img {
  width: 200%;
  height: 300px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.text-box {
  flex: 1;
  max-width: 500px;
}

.text-box h3 {
  color: #1f2d60;
  font-size: 24px;
  margin-bottom: 15px;
}

.text-box p {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

.grid img {
  transition: transform 0.3s ease;
}

.grid img:hover {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .container {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .text-box h3 {
    margin-top: 20px;
  }
}

.services-section {
  text-align: center;
  padding: 40px 20px;
  background: #f8f8f8;
}

.section-title {
  color: red;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  background-color: #bfbfbf; 
  padding: 20px 0;
  text-align: center;

}

.section-subtitle {
  margin: 10px 0 40px;
  font-size: 16px;
  color: #333;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  margin: 30px auto;
  max-width: 1100px;
  padding: 0px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);  
  overflow: hidden;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  max-width: 50%;
}

.service-image img {
  width: 100%;
  height: 300px;
}

.service-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.service-text {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.service-text h3 {
  color: #2c3e50;
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: bold;
}

.service-text p {
  color: #555;
  font-size: 18px;
  line-height: 1.7;
}

.service-image img {
  transition: transform 0.3s ease;
}

.service-image img:hover {
  transform: scale(1.05);
}

@media(max-width: 900px) {
  .service-item,
  .service-item.reverse {
    flex-direction: column;
  }

  .service-image,
  .service-text {
    max-width: 100%;
  }

  .service-image img {
    width: 100%;
    height: auto;
  }

  .service-text {
    padding: 20px;
    text-align: center;
  }
}

.container h1 {
  color: black;
}
    body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.clients-section {
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  color: red;
  letter-spacing: 3px;
  margin-bottom: 40px;
  background-color: #bfbfbf; 
  padding: 20px 0;
  text-align: center;

}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

.client-box {
  background-color: #eaeaea;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.client-logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: white;
  padding: 10px;
  margin-bottom: 15px;
}

.client-name {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 5px;
  color: black;
}

.client-location {
  font-weight: bold;
  color: #333;
}  

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

.mash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

.mash-box {
  background-color: #eaeaea;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.mash-logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: white;
  padding: 10px;
  margin-bottom: 15px;
}

.mash-name {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 5px;
  color: black;
}

.mash-location {
  font-weight: bold;
  color: #333;
}  

body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

.main-wrapper {
    background-image: url('com/computer.jpeg'); 
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-section {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

h1 {
    margin-bottom: 30px;
    color: #333;
    font-size: 28px;
}

.form input,
.form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.9);
}

textarea {
    resize: vertical;
}

button {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    background-color: #ff007f;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background0.3s;
}

button:hover {
    background-color: #e60073;
}

@media (max-width: 900px) {
    .main-wrapper {
        background-size: contain; 
        background-position: center;
        padding: 10px;
    }

    .form-section {
        max-width: 90%;
        padding: 25px 20px;
    }

    h1 {
        font-size: 22px;
    }

    .form input,
    .form textarea {
        padding: 12px;
        font-size: 14px;
    }

    button {
        padding: 10px 18px;
        font-size: 14px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

.footer {
  background-color: black;
  color: #ffffff;
  padding: 40px 20px 0 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  margin: auto;
}

.footer-brand {
  flex: 1 1 300px;
}

.footer-brand .logo {
  height: 60px;
  margin-bottom: 10px;
}

.footer-brand h3 {
  color: #ff2c2c;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #d3d3d3;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links,
.footer-services,
.footer-contact {
  flex: 1 1 200px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  color: #ff2c2c;
  margin-bottom: 15px;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-services li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-services a,
.footer-contact a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
}

.footer-contact p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact a {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 30px;
  background-color: #e60000;
  color: #ffffff;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  font-size: 14px;
}
