/* Reset and Base Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #F0F0F6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body * {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 10px;
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.logo-image {
  width: 90px;
  height: 90px;
}

.nav-menu {
  padding: 30px;
  display: flex;
  list-style: none;
  gap: 30px;
}

   .nav-link {
   text-decoration: none;
   color: #000000;
   font-weight: 500;
   transition: all 0.3s ease;
   position: relative;
   padding: 10px 14px;
   border-radius: 5px;
 }
 
.nav-link.active {
  background-color: #ffa500;
  color: white;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.shape-1{
  position: absolute;
  top: 300px;
  left: 150px;
}

.shape-2{
  position: absolute;
  top: 300px;
  left: 1200px;
}

.shape-3{
  position: absolute;
  top: 920px;
  left: 250px;
}

.shape-4{
  position: absolute;
  top: 930px;
  left: 1130px;
}

.shape-5{
  position: absolute;
  top: 1000px;
  left: 1640px;
}

.shape-6{
  position: absolute;
  top: 650px;
  left: 1000px;
}

.shape-7{
  position: absolute;
  top: 350px;
  left: 1800px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 0 20px;
  width: 100%;
}

.hero-text {
  flex: 1;
  padding-left: 200px;
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 80px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0;
  color: #000000;
  flex-shrink: 0;
}

.hero-subtitle {
  color: #ffa500;
}

.hero-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
  flex-shrink: 0;
}

   .cta-button {
   background: #ffa500;
   color: white;
   border: none;
   padding: 15px 30px;
   font-size: 1rem;
   font-weight: 600;
   border-radius: 5px;
   cursor: pointer;
   transition: all 0.3s ease;
   transform: translateY(0);
   max-width: 200px;
 }
 
 .cta-button:hover {
   background: #e6940a;
   transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(255, 171, 14, 0.3);
 }

.hero-image {
  flex: 1;
  position: relative;
  margin-top: 400px;
  width: 600px;
}


/* Projects Section */
.projects {
  padding: 100px 0;
  background: #F0F0F6;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #000000;
}

.section-description {
  text-align: center;
  color: #666;
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1500px;
  margin: 0 auto;
}

.project-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(0);
  position: relative;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.project-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 165, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.project-card:hover .project-card-overlay {
  opacity: 1;
}

.view-details-btn {
  background: white;
  color: #ffa500;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.view-details-btn:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: scale(1.05);
}

.project-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(1);
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-content {
  padding: 25px;
}

.project-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000;
}

.project-description {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.tag {
  background: #f8f9fa;
  color: #495057;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

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

.project-type {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Recommendations Section */
.recommendations {
  padding: 20px 0;
  background: #F0F0F6;
  max-width: 1500px;
  margin: 0 auto;
}

.recommendations-carousel {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 30px;
  animation: carousel-scroll 24s linear infinite;
  transition: transform 0.5s ease;
}

.recommendations-carousel:hover .carousel-track {
  animation-play-state: paused;
  cursor: pointer;
}

@keyframes carousel-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.recommendation-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  min-width: 300px;
  max-width: 350px;
  text-align: left;
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
}
.stars {
  margin-bottom: 20px;
}

.star {
  color: #ffa500;
  font-size: 1.2rem;
  margin: 0 2px;
}

.recommendation-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000000;
}

.recommendation-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.recommender {
  display: flex;
  align-items: center;
  gap: 15px;
}

.recommender-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.recommender-info {
  text-align: left;
}

.recommender-name {
  font-weight: 600;
  color: #000000;
  margin-bottom: 5px;
}

.recommender-title {
  color: #000000;
  font-size: 0.9rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  padding: 0 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #E0E0E0;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.dot:hover {
  background-color: #CCCCCC;
  transform: scale(1.1);
}

.dot.active {
  background-color: #FFA500;
  transform: scale(1.2);
}

/* Logo Carousel Section */
.logo-carousel-section {
  padding: 80px 0;
  max-width: 1500px;
  margin: 0 auto;
}

.logo-carousel {
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.logo-track {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: logo-scroll 25s linear infinite;
  transition: transform 0.5s ease;
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.company-logo {
  width: 180px;
  height: 90px;
  max-width: 180px;
  max-height: 90px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-item:hover .company-logo {
  transform: scale(1.1);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #F0F0F6;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-content {
  display: grid;
  grid-template-columns: 3fr 1.5fr;
  gap: 80px;
  align-items: start;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000000;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.contact-form-section {
  padding: 50px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-section {
  padding: 50px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-weight: 600;
  color: #000000;
  font-size: 0.95rem;
  opacity: 0.5;
}

.form-input,
.form-textarea {
  padding: 18px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  transition: all 0.3s ease;
  background: #f8f9fa;
  width: 100%;
  color: #333;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #ffa500;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.submit-button {
  background: #ffa500;
  color: white;
  border: none;
  padding: 18px 40px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.submit-button:hover {
  background: #e6940a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: #ffa500;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.info-card:hover .info-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.info {
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  opacity: 0.8;
}

.info-label {
  font-weight: 600;
  color: #333;
  opacity: 0.8;
  flex-shrink: 0;
}

.info-value {
  font-weight: 500;
  color: #555;
  text-align: right;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: #f5f5f5;
  color: #333;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 80px;
  margin-bottom: 40px;
  max-width: 1500px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

/* Left Side - Logo and Rating Cards */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.main-logo-card {
  display: flex;
  justify-content: flex-start;
}

.footer-logo {
  height: 80px;
  width: 80px;
  object-fit: contain;
}

.rating-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rating-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: center;
  flex-wrap: wrap;
  align-content: flex-start;
}

.rating-logo {
  height: 50px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
}

.rating-text {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  line-height: 1.3;
}

/* Right Side - Navigation Links */
.footer-right {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-top: 150px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #000;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #000;
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link.linkedin {
  color: #0077b5;
}

.social-link.instagram {
  color: #e4405f;
}

.social-link.facebook {
  color: #1877f2;
}

.social-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.social-text {
  font-weight: 500;
}

.social-link:hover {
  opacity: 0.8;
  transform: translateX(2px);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 30px 20px 0 20px;
  border-top: 1px solid #ddd;
  max-width: 1500px;
  margin: 0 auto;
}

.footer-bottom p {
  color: #888;
  font-size: 14px;
  margin: 0;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  overflow-y: auto;
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}

/* Project Modal Styles */
.project-modal .modal-content {
  max-width: 900px;
  width: 95%;
  margin: 5% auto;
  text-align: left;
  padding: 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.project-modal-header {
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: white;
  position: relative;
}

.modal-project-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.project-title-link {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.project-title-link:hover {
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  opacity: 0.9;
}

.modal-project-meta {
  font-size: 1rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 15px;
}

.project-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.project-modal-close:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.project-modal-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  min-height: 400px;
  flex: 1;
  overflow-y: auto;
}

.modal-project-image {
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.modal-project-image img {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.modal-project-details {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.modal-project-details h3 {
  font-size: 1.2rem;
  color: #333;
  margin: 0 0 12px 0;
  font-weight: 600;
  border-bottom: 2px solid #ffa500;
  padding-bottom: 5px;
  display: inline-block;
}

.modal-project-description p,
.modal-project-achievements {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.modal-project-achievements ul {
  margin: 0;
  padding-left: 20px;
}

.modal-project-achievements li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.modal-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.modal-tag {
  background: #f8f9fa;
  color: #495057;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid #e9ecef;
}

.close {
  color: #ffffff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}

.contact-close {
  color: #000000;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}

.contact-close:hover,
.close:hover {
  color: #ffa500;
}

/* Contact Modal Styling */
.modal-thank-you {
  color: #666;
  margin-bottom: 25px;
  font-size: 1rem;
}

.submitted-details {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  margin: 20px 0;
  border: 2px solid #ffa500;
}

.detail-item {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-item strong {
  color: #333;
  font-weight: 600;
  min-width: 80px;
  flex-shrink: 0;
}

.detail-item span {
  color: #555;
  flex: 1;
}

.message-content {
  color: #555;
  line-height: 1.6;
  flex: 1;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.modal-footer {
  color: #ffa500;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 0;
  text-align: center;
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  width: 30px;
  height: 22px;
}

.hamburger-icon span {
  height: 3px;
  width: 100%;
  background-color: #000;
  margin-bottom: 4px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-icon span:last-child {
  margin-bottom: 0;
}

/* Hamburger Animation */
.hamburger-menu.active .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu {
  list-style: none;
  text-align: center;
  padding: 0;
}

.mobile-nav-menu li {
  margin-bottom: 30px;
}

.mobile-nav-link {
  text-decoration: none;
  color: #000;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 15px 30px;
  border-radius: 10px;
  display: block;
}

.mobile-nav-link:hover {
  background-color: #ffa500;
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
    padding: 0 20px;
  }
  
  .hero-text {
    padding-left: 100px;
  }
  
  .shape-2 {
    left: 900px;
  }
  
  .shape-4 {
    left: 980px;
  }
  
  .shape-5 {
    left: 1200px;
  }
  
  .shape-7 {
    left: 1300px;
  }
}

@media (max-width: 992px) {
  .hero-text {
    padding-left: 20px;
  }
  
  .hero-image {
    padding-left: 20px;
    width: 500px;
  }
  
  .shape-2 {
    left: 700px;
  }
  
  .shape-4 {
    left: 780px;
  }
  
  .shape-5 {
    left: 1000px;
  }
  
  .shape-6 {
    left: 800px;
  }
  
  .shape-7 {
    left: 1100px;
  }
  
  /* Make trusted by logos bigger */
  .company-logo {
    width: 180px !important;
    height: 90px !important;
    max-width: 180px;
    max-height: 90px;
  }
  
  .logo-item {
    padding: 25px;
  }
  
  /* Center footer logo on tablets */
  .main-logo-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  /* Center social links on tablets */
  .social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  /* Ensure no horizontal gaps on mobile */
  * {
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  
  /* Make container full width on mobile */
  .container {
    max-width: 100%;
    padding: 0 15px;
    width: 100%;
  }
  
  /* Fix navigation padding for mobile */
  .nav {
    padding: 0 15px;
  }
  
  /* Reduce logo size on mobile */
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  /* Show hamburger menu on mobile */
  .hamburger-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }
  
  /* Hero Section Mobile - Full Screen */
  .hero {
    min-height: 100vh;
    padding-top: 70px;
    padding-bottom: 0;
    width: 100%;
    margin: 0;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 20px 15px;
    min-height: calc(100vh - 70px);
    justify-content: center;
  }
  
  .hero-text {
    padding-left: 0;
    order: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
  
  /* Hide hero image on mobile */
  .hero-image {
    display: none;
  }
  
  /* Hide all shapes on mobile for clean look */
  .shape-1,
  .shape-2,
  .shape-3,
  .shape-4,
  .shape-5,
  .shape-6,
  .shape-7 {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
    z-index: 2;
    position: relative;
    margin-bottom: 20px;
  }

  .hero-description {
    z-index: 2;
    position: relative;
    margin-bottom: 30px;
  }
  
  .cta-button {
    z-index: 2;
    position: relative;
    max-width: none;
    width: auto;
  }

  /* Projects Section - Full Width */
  .projects {
    width: 100%;
    margin: 0;
    padding: 50px 0;
  }
  
  /* Projects Grid */
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Recommendations Section - Full Width */
  .recommendations {
    width: 100%;
    margin: 0;
    padding: 20px 0;
  }
  
  /* Recommendations */
  .recommendations-carousel {
    overflow-x: auto;
    padding: 0 10px;
  }

  .carousel-track {
    animation: carousel-scroll 30s linear infinite;
    gap: 20px;
  }

  .recommendation-card {
    min-width: 280px;
    max-width: 320px;
  }

  /* Logo Carousel - Center and keep auto scroll */
  .logo-carousel-section {
    text-align: center;
    padding: 60px 0;
  }
  
  .logo-carousel {
    overflow: hidden; /* Keep auto scroll */
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .logo-track {
    animation: logo-scroll 25s linear infinite; /* Keep animation */
    gap: 30px;
    justify-content: center;
    align-items: center;
  }

  /* Make trusted by logos bigger and centered on mobile */
  .company-logo {
    width: 155px !important;
    height: 78px !important;
    max-width: 155px;
    max-height: 78px;
    margin: 0 auto;
  }

  .logo-item {
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Contact Section - Almost full screen */
  .contact {
    padding: 40px 0;
    width: 100%;
    margin: 0;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 0;
  }

  /* Contact form almost full screen - No left gap */
  .contact-form-section {
    padding: 30px 20px;
    margin: 0 0 0 0;
    width: 100%;
    max-width: 100%;
  }

  .contact-info-section {
    padding: 25px 20px;
    margin: 0 0;
  }

  .contact-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .info-card {
    padding: 20px 15px;
  }

  .info-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
  }

  /* Footer Section - Full Width */
  .footer {
    width: 100%;
    margin: 0;
  }
  
  /* Footer responsive - Fix text under logos */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
    padding: 0 15px;
  }
  
  .footer-bottom {
    max-width: 100%;
    padding: 30px 15px 0 15px;
  }

  .footer-left {
    align-items: center;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
  
  .main-logo-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .rating-cards {
    gap: 20px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .rating-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }

  .rating-logo {
    height: 45px;
    width: auto;
    max-width: 80px;
    flex-shrink: 0;
  }

  .rating-text {
    font-size: 13px;
    line-height: 1.4;
    color: #666;
    font-weight: 500;
  }

  .footer-right {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    margin-top: 0;
  }

  .footer-heading {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  /* Center social links on mobile */
  .social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    margin: 0 auto;
  }
  
  /* Project Modal Mobile Responsive */
  .project-modal .modal-content {
    width: 95%;
    margin: 2% auto;
    max-height: 95vh;
    overflow-y: auto;
    max-width: 100%;
  }
  
  .project-modal-body {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .modal-project-image {
    padding: 20px;
    order: 1;
  }
  
  .modal-project-details {
    padding: 20px;
    order: 2;
  }
  
  .modal-project-title {
    font-size: 1.4rem;
  }
  
  .project-modal-header {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  /* Ensure no horizontal gaps on small mobile */
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  
  /* Make container full width on small mobile */
  .container {
    max-width: 100%;
    padding: 0 10px;
    width: 100%;
  }
  
  /* Fix navigation padding for small mobile */
  .nav {
    padding: 0 10px;
  }
  
  /* Even smaller logo for small mobile */
  .logo-image {
    width: 50px;
    height: 50px;
  }
  
  /* Hero adjustments for small mobile - Full Screen */
  .hero {
    padding-top: 60px;
    width: 100%;
    margin: 0;
  }
  
  .hero-content {
    padding: 15px 10px;
    gap: 25px;
    min-height: calc(100vh - 60px);
  }
  
  .hero-title {
    font-size: 2rem;
  }

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

  /* Hide all shapes on small mobile screens */
  .shape-1,
  .shape-2,
  .shape-3,
  .shape-4,
  .shape-5,
  .shape-6,
  .shape-7 {
    display: none;
  }

  /* Projects */
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .recommendation-card {
    min-width: 270px;
    max-width: 300px;
    padding: 25px;
  }

  /* Trusted by logos - keep bigger size, animation and center them */
  .logo-carousel-section {
    text-align: center;
    padding: 50px 0;
  }
  
  .logo-carousel {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
  
  .logo-track {
    justify-content: center;
    align-items: center;
    gap: 25px;
  }
  
  .company-logo {
    width: 140px !important;
    height: 70px !important;
    max-width: 140px;
    max-height: 70px;
    margin: 0 auto;
  }
  
  .logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
  }

  /* Contact form - maximum width for small mobile */
  .contact-form-section {
    padding: 25px 15px;
    margin: 0 0;
    width: 100%;
    max-width: 100%;
  }

  .contact-info-section {
    padding: 20px 15px;
    margin: 0 0;
  }

  .contact-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .form-input,
  .form-textarea {
    padding: 15px;
    font-size: 0.95rem;
  }

  .submit-button {
    padding: 15px 30px;
    font-size: 0.95rem;
    width: 100%;
  }

  .cta-button {
    width: 50%;
    max-width: none;
  }

  .info-card {
    padding: 18px 12px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .info {
    font-size: 0.9rem;
  }

  /* Footer mobile responsive - Better text management */
  .footer-content {
    gap: 25px;
    max-width: 100%;
    padding: 0 10px;
  }
  
  .footer-bottom {
    max-width: 100%;
    padding: 30px 10px 0 10px;
  }

  .footer-logo {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    display: block;
  }
  
  .main-logo-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }

  .rating-cards {
    gap: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .rating-card {
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }

  .rating-logo {
    height: 40px;
    max-width: 70px;
  }

  .rating-text {
    font-size: 11px;
    line-height: 1.3;
    max-width: 120px;
  }

  .footer-right {
    gap: 20px;
  }

  .footer-heading {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .footer-menu a {
    font-size: 13px;
  }

  .social-link {
    font-size: 13px;
  }
  
  /* Center social links on small mobile */
  .social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin: 0 auto;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    margin: 0 auto;
  }
}

/* Ultra-wide responsiveness */
@media (min-width: 1600px) {
  .container {
    max-width: 1800px;
    width: 100%;
  }
  
  .company-logo {
    width: 200px !important;
    height: 100px !important;
    max-width: 200px;
    max-height: 100px;
  }
}
