/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

/* Base styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}
header {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px; /* Adjust the size */
    width: auto;
  padding-left: 60px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding-right: 60px;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links li a:hover {
  color: #00bcd4;
}
nav ul li a.Active {
    color: #00a6ff;
    border-bottom: 2px solid #00a6ff;
}
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}


/* Hero Section */
.hero {
  height: 100vh;
  background: url('virtual-reality.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  color: #fff;
  max-width: 1400px;
  padding: 2rem;
  animation: fadeInUp 1.5s ease-out;
}
.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.cta-button {
  background: #00a6ff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background: #00a6ff;
}


/* WhatsApp Icon */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.whatsapp-icon img {
  width: 80px;
  height: 80px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
}

/* Section Layout */
.why-section {
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease-out;
  color: #00a6ff;
}
.why-section p {
  max-width: 1200px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  animation: fadeInUp 1.2s ease-out;
  color: #111;
}

/* Partner Logos Scroll */

.partners-scroll {
   display: flex;
    align-items: center;
  overflow: hidden;
    scroll-snap-type: x mandatory;
     padding: 0 80px; /* Adjust padding as needed */
 gap: 24px;
  margin: 2rem 4rem;
}
.logos {
  display: flex;
  gap: 6rem;
  animation: scrollLeft 72s linear infinite;
}
.logos img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* Stats */
.stats-section {
  padding: 40px 20px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  padding: 20px;
  transition: transform 0.3s ease;
}
.stat-box:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1e90ff;
  display: block;
  margin-bottom: 8px;
}
.stat-box p {
  font-size: 1.6rem;
  font-weight: 700;
  color: #475569;
  margin: 0;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
}

/* Section Layout */
.services-section {
  padding: 4rem 2rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.services-header h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease-out;
  color: #00a6ff;
}

/* Scrolling Cards */
.services-scroll {
  overflow: hidden;
  position: relative;
}
.services-track {
  display: flex;
  gap: 2rem;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 4rem;
  margin: 20px;
  min-width: 280px;
  max-width: 280px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: scale(1.05);
}
.service-card img {
  height: 80px;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #00a6ff;
}
.service-card p {
  font-size: 0.95rem;
  color: #666;
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
}

/* Section Layout */
.success-section {
  padding: 4rem 2rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.success-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease-out;
  color: #00a6ff
}
.success-header p {
  max-width: 1200px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  animation: fadeInUp 1.2s ease-out;
  color: #111;
}

/* Scrolling Cards */
.success-scroll {
  overflow: hidden;
  position: relative;
}
.success-track {
  display: flex;
  gap: 2rem;
}
.success-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  margin: 20px;
  min-width: 400px;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: left;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.success-card:hover {
  transform: scale(1.05);
}
.success-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #00a6ff;
}
.success-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}
.view-link {
  color: #00a6ff;
  font-weight: bold;
  text-decoration: underline;
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
}

/* Section Layout */
.team-section {
  padding: 4rem 2rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.team-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease-out;
  color: #00a6ff;
}
.team-header p {
  max-width: 1200px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  animation: fadeInUp 1.2s ease-out;
  color: #333;
}

/* Scrolling Cards */
.team-scroll {
  overflow: hidden;
  position: relative;
}
.team-track {
  display: flex;
  gap: 2rem;
}
.team-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  padding-top: 2rem;
  padding-bottom: 4rem;
  margin: 8px;
  min-width: 250px;
  max-width: 250px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;

}
.team-card:hover {
  transform: scale(1.05);
}
.team-card img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.team-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color:#00a6ff
}
.team-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color:#000000
}
.team-card p {
  font-size: 0.95rem;
  color: #666;
 
}
/* FAQ Section */
.faq-section {
  padding: 4rem 2rem;
  text-align: center;
}
.faq-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease-out;
  color:#00a6ff;
}
.faq-header p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  animation: fadeInUp 1.2s ease-out;
  color: #555;
}
.faq-list {
  max-width: 1200px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  overflow: hidden;
}
.faq-question {
  padding: 1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color:#00a6ff;
}
.faq-answer {
  padding: 1rem;
  display: none;
  font-size: 0.95rem;
  color: #555;
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
}

/* Contact Section */
.contact-section {
  padding: 4rem 2rem;
  max-width: 600px;
  margin: auto;
  text-align: center;
}
.contact-header h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease-out;
}

/* Form Styling */
/* contact section */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
}

.contact-section {
  max-width: 600px;
  margin: 60px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #111;
}

form input, form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #6d6d6d;
  border-radius: 8px;
  font-size: 1rem;
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  text-align: center;
}

button {
  background: #007bff;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #005ec2;
}
/* Popup Styling */
.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.popup-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.popup-content p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.popup-content button {
  background: #00a6ff;
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #edecec;
  color: #ffffff;
}
/* Section Layout */
body {
  margin: 0;
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background: #edecec;
  color: #fff;
}
/*services*/
.services-hero {
  position: relative;
  background: url('images/Cover/services-cover.jpg') center/cover no-repeat;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  overflow: hidden;
}

.service-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.services-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1.5s ease-out;
}

.services-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1e90ff;
}

.services-content p {
  font-size: 1.1rem;
  color: #ffffff;
}
/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 4,1fr));
  gap: 1.6rem;
  max-width: 1200px;
  margin: auto;
}
.service-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0,188,212,0.5);
}
.service-card img {
  height: 60px;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #00a6ff;
}
.service-card p {
  font-size: 0.95rem;
  color: #6d6d6d;
}

/* Section Layout */
.work-hero {
  position: relative;
  background: url('images/Cover/technology-innovation.jpg') center/cover no-repeat;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 2rem;
  overflow: hidden;
}

.work-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.work-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1.5s ease-out;
}
.work-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #00a0f6;
  animation: fadeInDown 1s ease-out;
}
.work-header p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #6d6d6d;
  animation: fadeInUp 1.2s ease-out;
}
.project-content
{
  text-align: left;
  margin-bottom: 0.6rem;

}
.project-content h2 {
  font-size: 2rem;
  color: #00a6ff;
  text-align: left;
    margin-left: 60px;
    margin-top: 40px;
}
/* Grid Layout */
.project-grid {
  max-width: 1200px;
  margin-bottom: 40px;
  margin-left: 140px;
  justify-items:  center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px , 1fr));     
  gap: 24px;
  padding:30px;
  font-family: 'Segoe UI', sans-serif;
}

/* Tablet view */
@media (max-width: 1024px) {
  .project-grid {
    margin-left: 60px;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .project-grid {
    margin-left: 10px;
  }
}

.project-card {
  position: relative;
  border-radius: 12px;
  justify-content: center;
  margin-bottom: 40px;
   object-fit: cover;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-card img {
  width: 100%;
  object-fit:fill;
  height: auto;
  display: block;
}

.card-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
}

.card-info h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.card-info a {
  font-size: 14px;
  color: #ffffff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.card-info a:hover {
  color: #00bcd4;
}


/* Show All Button */
.show-all {
  margin-top: 3rem;
}
.show-all-btn {
  background: #00a6ff;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.show-all-btn:hover {
  background: #00a6ff;
}

/* Section Layout */

.blog-hero {
  position: relative;
  background: url('images/Cover/Blogs-cover.jpg') center/cover no-repeat;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  overflow: hidden;
}

.blog-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.blog-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1.5s ease-out;
}
.blog-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00a6ff;
  animation: fadeInDown 1s ease-out;
}
.blog-header p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #6d6d6d;
  animation: fadeInUp 1.2s ease-out;
}

/* Grid Layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: auto;
}
.blog-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1rem;
  margin: 10px;
  min-width: 400px;
  max-width: 400px;
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0,188,212,0.5);
}
.blog-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.blog-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #00a6ff;
}
.blog-card p {
  font-size: 0.95rem;
  color: #6d6d6d;
}
.blog-pagination {
  margin-top: 30px;
  text-align: center;
}
.blog-pagination ul {
  list-style: none;
  padding: 0;
  display: inline-flex;
  gap: 10px;
}
.blog-pagination a {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
}
.blog-pagination a.active,
.blog-pagination a:hover {
  background: #1e90ff;
  color: #fff;
  border-color: #1e90ff;
}
/* Section Layout */
.about-hero {
  position: relative;
  background: url('images/Cover/technology-785742.jpg') center/cover no-repeat;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  overflow: hidden;
}

.about-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  animation: fadeInUp 1.5s ease-out;
}
.about-header h2 {
  font-size: 2rem;
  color: #00a6ff;
  margin-bottom: 0.6rem;
  animation: fadeInDown 1s ease-out;
}

.about-header p {
  max-width: 1200px;
  margin: 0 auto 1.6rem;
  padding-top: 10px;
  font-size: 1.1rem;
  color: #6d6d6d;
  animation: fadeInUp 1.2s ease-out;
  text-align: center;
}
.about-content p {
  max-width: 1200px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: #6d6d6d;
  line-height: 1.6;
  animation: fadeInUp 1.4s ease-out;
  text-align: center;
  justify-content: center;
}

/* Success Stories */
.success-header h3 {
  font-size: 1.5rem;
  color: #00a6ff;
  margin-bottom: 0.5rem;
  animation: fadeInDown 1.6s ease-out;
  text-align: center;
}
.success-header p {
  max-width: 1200px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: #6d6d6d;
  animation: fadeInUp 1.8s ease-out;
}

/* Case Study Cards */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}
.case-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
margin: 10px;
padding-top: 4rem;
padding-bottom: 4rem;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0,188,212,0.5);
}
.case-card h4 {
  font-size: 1.2rem;
  color: #00a6ff;
  margin-bottom: 0.5rem;
}
.case-card p {
  font-size: 0.95rem;
  color: #6d6d6d;
  margin-bottom: 1rem;
}
.case-link {
  color: #00a6ff;
  text-decoration: underline;
  font-weight: bold;
}
/*contact section */
.contact-hero {
  position: relative;
  background: url('images/Cover/contact-cover.jpg') center/cover no-repeat;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000000;
  padding: 2rem;
  overflow: hidden;
}

.contact-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1.5s ease-out;
}
.contact-content p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #b0b0b0;
  animation: fadeInUp 1.2s ease-out;
}

form {
  background: #fff;
  padding: 6rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 1200px;
 margin-top: 20px;
 margin-bottom: 20px;
   padding-top: 2rem;
     padding-bottom: 2rem;
  margin-left: 140px;
}
h2 {
  margin-bottom: 1rem;
  color: #1e90ff;
  text-align: center;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
input, select, textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #1e90ff;
}
button {
  background-color: #0078D4;
  color: white;
  font-weight: bold;
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
display: block;
  margin: 0 auto;
}
button:hover {
  background-color: #005fa3;
}
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
  .checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* increased width */
    gap: 0.5rem;
  }
  .checkbox-grid label {
    display: flex;
    align-items: center;
    color: #1e90ff;
  }
  .checkbox-grid input {
    margin-right: 0.5rem;
  }


/* Two-column layout at 1200px */
@media screen and (min-width: 1200px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  form {
    margin-left: 20px;
    margin-right: 20px;
    padding: 1.5rem;
    max-width: 100%;
  }

  .row-2 {
    grid-template-columns: 1fr; /* stack fields vertically */
  }

  .checkbox-grid {
    grid-template-columns: 1fr; /* single column for checkboxes */
  }

  h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  input, select, textarea {
    font-size: 0.95rem;
  }

  button {
    width: 100%;
    font-size: 1rem;
  }
}

@media screen and (max-width: 400px) {
  .row-2 {
    grid-template-columns: 1fr;
  }
  .form {
      margin-left: 20px !important;
      margin-right: 20px;}
  }
/*view*/
.preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem;
}

.preview {
  border: 1px solid #ccc;
  padding: 1rem;
  background: #f9f9f9;
}

.preview h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #0078D4;
}

.preview iframe {
  width: 100%;
  border-radius: 8px;
}

/* Specific sizes */
.desktop iframe {
  height: 800px;
}

.tablet iframe {
  width: 768px;
  height: 1024px;
}

.mobile iframe {
  width: 375px;
  height: 667px;
}
/* Careers Section Styling */
.careers {
  font-family: 'Segoe UI', sans-serif;
  padding: 60px 20px;
  background: #f9f9f9;
  color: #333;
}

.careers h2, .careers h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.careers-hero {
  text-align: center;
  margin-bottom: 40px;
}

.careers-hero p {
  font-size: 1.2rem;
  margin: 10px 0 20px;
}

.cta-buttons .btn {
  margin: 5px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn.primary {
  background: #0066ff;
  color: #fff;
}

.btn.secondary {
  background: #fff;
  border: 2px solid #0066ff;
  color: #0066ff;
}

.btn:hover {
  transform: translateY(-2px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.jobs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.job-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.job-card h4 {
  margin-bottom: 10px;
  color: #0066ff;
}

.apply-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.apply-form input, .apply-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.apply-form button {
  align-self: center;
}

/* Footer Layout */
.footer-section {
  background: #111;
  color: #6d6d6d;
  padding: 3rem 2rem 1rem;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1366px;
  margin: auto;
}
.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}
.social-icons {
  display: flex;
  gap: 15px;
}

.icon {
  width: 30px;
  height: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.icon:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Replace with your actual icon paths or use Font Awesome classes */
.facebook { background-image: url('icons/Facebook.svg'); }
.instagram { background-image: url('icons/Instagram.svg'); }
.linkedin  { background-image: url('icons/Linkedin.svg'); }
.twitter   { background-image: url('icons/X.com.svg'); }
.behance  { background-image: url('icons/Behance.svg'); }
.pintrest  { background-image: url('icons/Pintrest.svg'); }
.footer-column h3 {
  color: #00a6ff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.footer-column h4 {
  color: #00a6ff;
  margin-bottom: 1rem;
}
.footer-column p,
.footer-column a {
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
}
.footer-column a:hover {
  color: #00a6ff;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 0.5rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #ffffff;
}

/* Animations */
.footer-column {
  animation: fadeInUp 1.2s ease-out;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1336px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/*privacy section */
.privacy-hero {
  position: relative;
  background: url('images/Cover/web-cover.jpg') center/cover no-repeat;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  overflow: hidden;
}
.privacy-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}
.privacy-content{
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1.5s ease-out;
}
.privacy-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00a6ff;
}
.privacy-header h1 {
  font-size: 1.8rem;
  margin-top: 20px;
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease-out;
  text-align: center;
  color: #00a6ff;
}
.privacy-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}
.collapsible {
  color: #00a6ff;
  cursor: pointer;
  padding: 1rem;
  border: none;
  text-align: left;
  margin-left: 40px;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.policy-paragraph-content p {
  padding: 0 1rem 1rem 60px;
  display: flex;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 40px;
}

/*About Team*/
.Omvivekmhatre-hero {
  position: relative;
  background: url('images/Cover/technology-innovation.jpg') center/cover no-repeat;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  overflow: hidden;
}
.Om-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}
.Om-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1.5s ease-out;
}
.Om-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00a6ff;
}

.profile-section {
  padding: 60px 20px;
  background: #fff;
}

.profile-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

.profile-image img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.profile-content {
  flex: 1;
  min-width: 300px;
}

.profile-content h1 {
  font-size: 2.5em;
  color: #0078D7;
  margin-bottom: 5px;
}

.profile-content h2 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 10px;
}

.subtitle {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

.profile-content h3 {
  margin-top: 30px;
  color: #444;
}
.profile-content p {
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
}
.profile-content ul {
  padding-left: 20px;
  margin-top: 10px;
}

.profile-content ul li {
  margin-bottom: 8px;
  color: #666;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  font-size: 1.5em;
  margin-right: 15px;
  color: #0078D7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #005fa3;
}


/* Animations */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: #222;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    display: none;
  }
  /* keep navbar horizontal padding consistent on smaller screens */
  .navbar {
    padding: 1rem 60px;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #222;
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 1rem;
    border-radius: 0 0 10px 10px;
  }
  .logo {
    padding-left: 20px;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .services-section {
    padding: 2rem 1rem;
  }
}
@media (max-width: 420px) {
  .success-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
/* Smartphones (portrait, up to 480px) */
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.9rem; }
  .cta-button { padding: 0.5rem 1rem; font-size: 0.9rem; }

  .nav-links { gap: 1rem; }
  .stat-box { width: 100%; margin: 1rem 0; }
  .service-card, .success-card, .team-card, .blog-card, .case-card {
    min-width: 100%; max-width: 100%; margin: 1rem 0;
  }
  .footer-container { flex-direction: column; text-align: center; }
}

/* Small devices (landscape phones, 481px–767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1rem; }
  .nav-links { flex-direction: column; }
  .service-card, .success-card, .team-card, .blog-card, .case-card {
    min-width: 90%; max-width: 90%;
  }
}

/* Tablets (768px–1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .hero p { font-size: 1.05rem; }
  .services-grid, .work-grid, .blog-grid, .case-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .service-card, .success-card, .team-card, .blog-card, .case-card {
    min-width: auto; max-width: 100%;
  }
}

/* Laptops (1025px–1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
  .hero h1 { font-size: 3.5rem; }
  .hero p { font-size: 1.1rem; }
  .services-grid, .work-grid, .blog-grid, .case-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* Large desktops (1281px and above) */
@media (min-width: 1281px) {
  .hero h1 { font-size: 4rem; }
  .hero p { font-size: 1.2rem; }
  .services-grid, .work-grid, .blog-grid, .case-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}
/* Services, Success, Team, Blog, Case sections */
@media (max-width: 768px) {
  .services-track,
  .success-track,
  .team-track {
    flex-direction: column;      /* stack vertically */
    align-items: center;
  }

  .service-card,
  .success-card,
  .team-card,
  .blog-card,
  .case-card {
    width: 100%;                 /* full width */
    max-width: 100%;
    margin: 1rem 0;
  }
}

/* Stats section */
@media (max-width: 768px) {
  .stats {
    flex-direction: column;      /* stack stats vertically */
    align-items: center;
  }
  .stat-box {
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
  }
}

/* Grid-based sections (services-grid, work-grid, blog-grid, case-grid) */
@media (max-width: 768px) {
  .services-grid,
  .work-grid,
  .blog-grid,
  .case-grid {
    grid-template-columns: 1fr;  /* single column grid */
  }
}
/* Default layout: horizontal scroll or grid */
.team-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Team cards default */
.team-card {
  flex: 1 1 250px;
  max-width: 250px;
}

/* Targeted layout for 1024px–1366px screens */
@media (min-width: 1024px) and (max-width: 1366px) {
  .team-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 2rem;
    justify-items: center;
  }

  .team-card {
    width: 100%;
    max-width: 300px;
  }
}
/* Targeted layout for 1024px–1366px screens */
@media (min-width: 1366px) and (max-width: 1366px) {
  .team-track {
    display: grid;
    grid-template-columns: repeat(5,2fr); /* 3 columns */
    gap: 2rem;
    justify-items: center;
  }

  .team-card {
    width: 100%;
    max-width: 300px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .team-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 2rem;
    justify-items: center;
  }

  .team-card {
    width: 100%;
    max-width: 300px;
  }
}
@media (min-width: 480px) and (max-width: 1366px) {
  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 2rem;
    justify-items: center;
  }

  .stat-box {
    width: 100%;
    max-width: 300px;
  }
}
@media (min-width: 1024px) and (max-width: 1366px) {
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 2rem;
    justify-items: center;
  }

  .stat-box {
    width: 100%;
    max-width: 300px;
  }
}

/* Reset for cross-browser consistency */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth font rendering */
body {
  -webkit-font-smoothing: antialiased; /* Safari/Chrome */
  -moz-osx-font-smoothing: grayscale;  /* Firefox */
}

/* Flexbox compatibility */
.form-group {
  display: -webkit-box;   /* Old Safari/Chrome */
  display: -ms-flexbox;   /* IE10 */
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* Grid compatibility */
.row-2 {
  display: -ms-grid; /* IE11 fallback */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Input styling */
input, select, textarea {
  -webkit-appearance: none; /* Safari/iOS */
  -moz-appearance: none;    /* Firefox */
  appearance: none;
  border-radius: 6px;
  font-size: 1rem;
}

/* Button hover with vendor prefixes */
button {
  background-color: #0078D4;
  color: #fff;
  font-weight: bold;
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  transition: background-color 0.3s ease;
  -webkit-transition: background-color 0.3s ease; /* Safari */
  -moz-transition: background-color 0.3s ease;    /* Firefox */
}

button:hover {
  background-color: #005fa3;
}
