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

/* ROOT TYPOGRAPHY SCALE */
html {
  font-size: 100%; /* respects user browser settings */
}

/* BODY */
body {
  font-family: 'Source Sans 3', sans-serif;
  color: #4b5563;
  line-height: 1.8;
}

/* HEADINGS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: #111827;
  font-weight: 600;
  line-height: 1.3;
}

/* RESPONSIVE HEADING SIZES */
h1 { font-size: clamp(32px, 4vw, 48px); }
h2 { font-size: clamp(26px, 3.2vw, 38px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); }
h4 { font-size: clamp(18px, 2vw, 22px); }

/* PARAGRAPHS – RESPONSIVE */
p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 18px;
  color: #475569;
}



/* TOP CONTACT BAR */
/* TOP CONTACT BAR */
.top-contact-bar {
  width: 100%;
  background: linear-gradient(90deg, #06b6d4, #0d9488);
  color: #ffffff;
  font-family: 'Source Sans 3', sans-serif;
}

/* TEXT (GST + PHONE NUMBERS) */
.top-contact-bar .contact-item a {
  font-size: 18px !important;
  font-weight: 700 !important;
}

/* ICONS (LEFT + CENTER) */
.top-contact-bar .contact-item i {
  font-size: 19px !important;
}

/* SOCIAL ICONS (RIGHT SIDE) */
.top-contact-bar .top-right i {
  font-size: 20px !important;
}



/* INNER WRAPPER */
.top-contact-inner {
  max-width: 1400px;
  margin: auto;
  padding: clamp(8px, 1.5vw, 12px) clamp(14px, 3vw, 24px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 24px);
}

/* LEFT */
.top-left,
.top-center,
.top-right {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 30px);
}

/* COMMON ITEM */
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* TEXT */
.contact-item a {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: 0.3px;
  line-height: 1.4;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* ICONS */
.contact-item i {
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 800;
}

/* SOCIAL ICONS */
.top-right a {
  font-size: clamp(15px, 1.3vw, 18px);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.top-right a:hover {
  transform: scale(1.15);
  opacity: 0.85;
}

/* MOBILE */
@media (max-width: 768px) {
  .top-contact-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .top-center {
    flex-direction: column;
    gap: 6px;
  }

  .top-right {
    align-self: flex-end;
  }
}








/* ================= NAVBAR ================= */
#nav{
    display:flex;
    justify-content: space-between;
    align-items:center;
    padding:10px 100px;
    width:100%;
    border-bottom: 1px solid black;
    border-top: 1px solid black;
    background: white;
}

/* Left */
#navleft{
    display:flex;
    align-items:center;
}
#navleft img{
    height:30px;
}

/* Center */
#navcenter{
    display:flex;
    align-items:center;
}

/* IMPORTANT FIX: apply flex ONLY to first UL */
#navcenter > ul{
    display:flex;
    justify-content: space-between;
    align-items:center;
    list-style: none;
    gap:50px;
    padding:0;
    margin:0;
}

#navcenter ul li{
    font-weight:550;
    position: relative; /* required for dropdown */
}

#navcenter ul li:hover{
    color:#22d3ee;
}

/* Right */
#navright{
    display:flex;
    align-items:center;
}
#navright button{
    padding:10px 30px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s ease;
}

/* ================= DROPDOWN ================= */
.has-dropdown > a{
    text-decoration:none;
    color:#111827;
}

/* dropdown container */
.has-dropdown .dropdown{
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    background:#ffffff;
    border-radius:12px;
    padding:10px 0;
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
    border:1px solid #e5e7eb;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:all 0.3s ease;
    z-index:1000;

    display:block;
}

/* show on hover */
.has-dropdown:hover .dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* dropdown items */
.dropdown li{
    list-style:none;
    display:block;
}

.dropdown li a{
    display:block;
    padding:10px 18px;
    font-size:14.5px;
    color:#374151;
    transition:background 0.3s ease;
}

.dropdown li a:hover{
    background:#f3f4f6;
    color:#10b981;
    border-radius:8px;
}

/* ================= ARROW ================= */
.has-dropdown > a::after{
    content:"▾";
    margin-left:6px;
    font-size:12px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    #nav{
        padding:10px 40px;
    }

    #navcenter > ul{
        gap:25px;
    }

    #navright button{
        padding:8px 20px;
        font-size:14px;
    }
}

@media (max-width: 768px) {
    #nav{
        flex-direction: column;
        align-items: flex-start;
        padding:10px 20px;
        gap:10px;
    }

    #navcenter > ul{
        flex-direction: column;
        gap:10px;
        width:100%;
    }

    #navcenter ul li{
        width:100%;
    }

    .has-dropdown .dropdown{
        position: relative;
        transform:translateY(0);
        opacity:1;
        visibility:visible;
        box-shadow:none;
        border:none;
        padding-left:20px;
    }

    #navright{
        align-self: stretch;
        justify-content: flex-start;
        gap:10px;
        width:100%;
    }

    #navright button{
        width:100%;
        text-align:center;
    }
}

@media (max-width: 480px) {
    #navleft img{
        height:25px;
    }

    #navcenter > ul{
        gap:6px;
    }

    #navright button{
        padding:8px;
        font-size:13px;
    }
}



#hamburger { display:none; }
#navcenter { display:flex; }

@media (max-width:768px){
  #hamburger { display:flex; }
  #navcenter { display:none; }
  #navcenter.active { display:flex; }
  .has-dropdown .dropdown { display:none; }
  .has-dropdown.open .dropdown { display:block; }
}
/* ================= HAMBURGER ================= */
#hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

#hamburger span{
  width:26px;
  height:3px;
  background:#111;
  border-radius:2px;
  transition:0.3s ease;
}

/* ================= MOBILE ================= */
@media (max-width: 768px){

  /* NAV WRAP */
  #nav{
    flex-direction:column;
    align-items:flex-start;
    padding:12px 20px;
  }

  /* SHOW HAMBURGER */
  #hamburger{
    display:flex;
  }

  /* HIDE MENU BY DEFAULT */
  #navcenter{
    display:none;
    width:100%;
  }

  /* SHOW MENU WHEN ACTIVE */
  #navcenter.active{
    display:block;
  }

  /* STACK MENU ITEMS */
  #navcenter > ul{
    flex-direction:column;
    width:100%;
    gap:14px;
    margin-top:15px;
  }

  #navcenter ul li{
    width:100%;
  }

  #navcenter ul li a{
    display:block;
    padding:8px 0;
  }

  /* RIGHT BUTTON FULL WIDTH */
  #navright{
    width:100%;
    margin-top:10px;
  }

  #navright button{
    width:100%;
  }

  /* ================= MOBILE DROPDOWN ================= */
  .has-dropdown .dropdown{
    position:relative;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    border:none;
    padding-left:18px;
    display:none;
  }

  .has-dropdown.open .dropdown{
    display:block;
  }

  /* Disable hover dropdown on mobile */
  .has-dropdown:hover .dropdown{
    display:none;
  }
}


/* HERO SECTION */
/* ===== HERO SECTION ===== */
.hero {
  max-width: 100%;
  margin: 50px auto;
  
  background: linear-gradient(to bottom, rgba(236, 254, 255, 0.5), #ffffff);
  box-sizing: border-box;
}

/* GRID CONTAINER */
.container.hero-grid {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr; /* form 40%, video 60% */
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  box-sizing: border-box;
}

/* LEFT: HERO FORM */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

/* FORM CARD */
.demo-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
  width: 100%;
  box-sizing: border-box;
}

/* FORM LAYOUT */
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.demo-field label {
  font-weight: 600;
  color: #334155;
  font-size: 14px;
}

.demo-field input,
.demo-field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
  width: 100%;
  transition: border-color 0.3s;
}

.demo-field input:focus,
.demo-field textarea:focus {
  outline: none;
  border-color: #06b6d4;
}

.wpcf7-textarea {
  width: 100%;
  max-width: 360px;   /* 🔽 reduce width */
  height: 90px;       /* 🔽 reduce height */
  resize: vertical;   /* allow resize only vertically (optional) */
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 8px;
}

.demo-btn {
  margin-top: 10px;
  padding: 14px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(90deg, #06b6d4, #0d9488);
  width: 100%;
  text-align: center;
}

/* TRUST ITEMS */
.demo-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  font-weight: 500;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ecfeff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}






/* Wrapper */
.hero-left {
  width: 100%;
}

/* Form container */
#formWrapper {
  display: block;
}

/* Video container (hidden initially) */
#videoWrapper {
  display: none;
}

/* Video itself */
#videoWrapper video {
  width: 100%;
  height: auto;
  border-radius: 12px;
}


/* ===== RIGHT: VIDEO SECTION ===== */
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.video-frame {
  width: 100%;
  /* aspect-ratio: 5.5/4; */
  aspect-ratio: 16 / 12;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  max-height: 80vh;
}

.video-frame video {
  width: 100%;
  height: 100%;
   object-fit: contain;
  /* object-fit: cover; */
  border-radius: 14px;
}

.video-heading {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0f172a;
  letter-spacing: -0.3px;
}

.video-heading::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #06b6d4, #0d9488);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container.hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .demo-grid {
    grid-template-columns: 1fr;
  }

  .video-frame {
    min-height: 350px;
    max-height: 60vh;
  }
}

@media (max-width: 768px) {
  .demo-card {
    padding: 30px 15px;
  }

  .video-frame {
    min-height: 300px;
    max-height: 50vh;
  }

  .demo-btn {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 28px;
  }

  .demo-btn {
    font-size: 14px;
    padding: 10px;
  }

  .demo-field input,
  .demo-field textarea {
    font-size: 13px;
  }

  .video-frame {
    min-height: 200px;
    max-height: 40vh;
  }
}


/* feature section */
#features {
  padding: 50px 0;
  background: #ffffff;
}

.features-container {
  max-width: 1400px; /* Optional: keeps design for large screens */
  width: 100%;       /* Ensures container shrinks with viewport */
  margin: auto;
  padding: 0 20px;   /* Reduce padding if needed */
  box-sizing: border-box; /* Include padding in width calculation */
  overflow-x: hidden; /* Prevent accidental scroll */
}

.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.features-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111827;
}

.features-header p {
  color: #6b7280;
  font-size: 18px;
  line-height: 1.6;
}

/* Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns desktop */
  gap: 30px;
}

/* Card */
.feature-card {
  background: #ffffff;
  border: 3px solid #e5e7eb;
  border-radius: 18px;
  padding: 30px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transform: translateY(-6px);
}

/* Icon */
.icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon i {
  color: #ffffff;
  width: 26px;
  height: 26px;
}

/* Gradient backgrounds */
.bg-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.bg-teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.bg-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.bg-indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.bg-violet { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

/* Text */
.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111827;
}

.feature-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 14px;
}

.btn-outline {
  padding: 10px 20px;
  border-radius: 10px;
  background: #f3f4f6;
  border: none;
  cursor: pointer;
}

.btn-primary {
  padding: 10px 22px;
  border-radius: 10px;
  background: linear-gradient(90deg, #06b6d4, #0d9488);
  color: #fff;
  border: none;
  cursor: pointer;
}

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

/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* Mobile: 1 column */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-header h2 {
    font-size: 32px;
  }

  .features-header p {
    font-size: 16px;
  }

  .feature-card {
    padding: 24px;
  }

  .icon {
    width: 50px;
    height: 50px;
  }

  .icon i {
    width: 22px;
    height: 22px;
  }
}

/* Small mobile: text shrink slightly */
@media (max-width: 480px) {
  .features-header h2 {
    font-size: 28px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .btn-outline, .btn-primary {
    padding: 8px 16px;
    font-size: 14px;
  }
}



.stats-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ecfeff, #f0fdfa);
}

.stats-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-card h3 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 15px;
  color: #6b7280;
}

.icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: #fff;
}

/* Icon Colors */
.icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.icon.teal {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.icon.indigo {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}




/* screen shot section */
/* Section Base */
.screenshots-section {
  padding: 100px 0;
  background: #ffffff;
  font-family: "Inter", sans-serif;
  /* max-height: 1200px; */
}

.Screen_shot-Container {
  max-width: 1350px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: #64748b;
}

/* Screenshot Rows */
.screenshot-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 20px;
}

.screenshot-row.reverse {
  flex-direction: row-reverse;
}

/* Text */
.screenshot-text {
  flex: 1;
}

.screenshot-text h3 {
  font-size: 28px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.screenshot-text p {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 14px;
  margin-right:50px;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #475569;
  font-size: 15px;
}

.check-icon {
  width: 26px;
  height: 26px;
  background: #ecfeff;
  color: #0891b2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Screenshot Image */
.screenshot-image {
  flex: 1;
}
/* Specific styling for 3rd screenshot image */
/* Make the 3rd screenshot smaller */
/* 3rd screenshot without frame */
.third-screenshot {
  width: 100%;
  max-width: 250px; /* adjust size as needed */
  height: auto;
  display: block;   /* use block so no extra inline spacing */
  margin: 0 auto;   /* center image */
}




/* Browser Frame */
.browser-frame {
  background: #f1f5f9;
  border-radius: 12px;
  padding: 12px;
}

.browser-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #f87171; }
.dot.yellow { background: #facc15; }
.dot.green { background: #4ade80; }

.browser-frame img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .screenshot-row,
  .screenshot-row.reverse {
    flex-direction: column;
  }

  .screenshot-row {
    gap: 40px;
  }
}


/* mobile view section */
.mobileview {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  box-sizing: border-box; /* include padding in width */
}

/* LEFT CONTENT */
.mobileview {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start; /* align top on desktop */
  justify-content: space-between;
  gap: 100px;
  box-sizing: border-box;
  flex-wrap: wrap; /* allow wrapping on small screens */
}

/* LEFT CONTENT */
.mobileview-left {
  flex: 1.2;
  min-width: 280px; /* prevent shrinking too much */
}

.mobileview-left h3 {
  font-size: 38px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 14px;
  margin-left: 0; /* remove extra margin */
  text-align: left;
}

.mobileview-left p {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 14px;
  max-width: 100%; /* prevent overflow */
  word-wrap: break-word; /* wrap long text */
}

/* RIGHT IMAGE */
.mobileview-right {
  flex: 0.8;
  min-width: 220px; /* prevent shrinking */
  text-align: center;
  margin-top: 0;
}

.mobileview-right img {
  width: 100%;
  max-width: 300px; 
  height: auto;
  display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mobileview {
    flex-direction: column; /* stack content vertically */
    text-align: center;
    gap: 32px;
    padding: 0 16px;
  }

  .mobileview-left {
    flex: 1;
    margin-left: 0;
  }

  .mobileview-left h3 {
    font-size: 32px;
  }

  .mobileview-left p {
    font-size: 16px;
    line-height: 1.6;
  }

  .mobileview-right {
    flex: 1;
    margin-top: 20px;
  }

  .mobileview-right img {
    max-width: 260px;
  }
}

@media (max-width: 480px) {
  .mobileview-left h3 {
    font-size: 28px;
  }

  .mobileview-left p {
    font-size: 15px;
    line-height: 1.5;
  }

  .mobileview-right img {
    max-width: 220px;
  }
}




/* Testimonial Section */
.testimonial-card {
  flex: 0 0 calc(100% / 3 - 20px); /* 3 cards visible */
}

/* Tablet */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(100% / 2 - 20px);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

/* Section Base */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, rgba(173, 227, 230, 0.5), #ffffff);
  font-family: "Inter", sans-serif;
}

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

/* Header */
.section-header {
  text-align: center;
  max-width: 700px;
   margin: 0 auto 70px;
 
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 18px;
  color: #64748b;
}

/* Grid */
.testimonials-grid {
  display: flex;
  gap: 30px;
  overflow: hidden;
  scroll-behavior: smooth;
}


/* Card */
.testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

/* Stars */
.stars {
  color: #facc15;
  font-size: 20px;
  margin-bottom: 16px;
}

/* Text */
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 24px;
}

/* Author */
.author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #e5e7eb;
}

.author h4 {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

.author span {
  font-size: 13px;
  color: #64748b;
}

/* footer-section */



/* MODAL BACKGROUND */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* MODAL CONTENT */
.modal-content {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* FORM STYLING */
.modal-content h2 {
  margin-bottom: 12px;
  color: #0d9488;
}

.modal-content p {
  margin-bottom: 20px;
  color: #475569;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
}

.form-grid textarea {
  grid-column: span 2;
  resize: none;
}

.modal-content button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #06b6d4, #0d9488);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.modal-content button:hover {
  opacity: 0.95;
}

/* TRUST BADGES */
.trust-badges {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  font-weight: 500;
  color: #0d9488;
  gap: 12px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  fill: #06b6d4;
}

/* RESPONSIVE */
@media(max-width: 600px){
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    flex-direction: column;
    gap: 8px;
  }
}







/* Software Module Page CSS */
/* SECTION */
/* ===============================
   GALLERY SECTION
================================ */
/* ===============================
   SECTION
================================ */
/* FORCE IMAGE LEFT & CONTENT RIGHT */
/* ===== FLEX LAYOUT FIX ===== */
.mix > .row {
  display: flex !important;
  align-items: center;
}

/* Prevent Bootstrap float stacking */
.mix > .row > [class*="col-"] {
  float: none !important;
}

/* ===== CARD ===== */
.mix {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

.mix:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.10);
}

/* ===== IMAGE ===== */
.pcat-box {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.pcat-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.6s ease;
}

.mix:hover .pcat-box img {
  transform: scale(1.06);
}

/* ===== CONTENT ===== */
.product-box-content {
  padding-left: 40px;
}

.product-box-title h5 {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}

.product-content {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 24px;
}

/* ===== BUTTON ===== */
.product-quantity .btn {
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
}

.product-quantity .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(16, 185, 129, 0.35);
}

/* ===== PAGE TITLE ===== */
.page-title {
  margin-bottom: 50px;
}

.page-sub-title {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #10b981;
  font-weight: 600;
}

.page-main-title {
  font-size: 34px;
  font-weight: 800;
  color: #111827;
  margin-top: 6px;
}

/* ===== FILTER BUTTONS ===== */
.gallery-menu-box .btn {
  background: #f3f4f6;
  color: #374151;
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 26px;
  margin: 6px;
  transition: all 0.3s ease;
}
.btn-group{
    
    padding-left:300px;
    margin:20px 20px;
}
.gallery-menu-box .btn:hover,
.gallery-menu-box .mixitup-control-active {
  background: linear-gradient(90deg, #06b6d4, #0d9488);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .mix {
    padding: 26px;
  }

  .product-box-content {
    padding-left: 20px;
  }

  .product-box-title h5 {
    font-size: 22px;
  }
}




#img{
    background: linear-gradient(90deg, #06b6d4, #0d9488);
}
































/* ===============================
   SECTION WRAPPER
================================ */
.pathology-features {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 20px;
}

.pathology-features h3 {
  font-size: 40px;
  font-weight: 600;
  margin: 20px auto;
  color: #000;
  text-align: center;
  max-width: 900px;
}

/* ===============================
   FLEX ROW
================================ */
.pathology-features-row {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: stretch;
}

/* ===============================
   FEATURE CARD
================================ */
.pathology-feature-card {
  flex: 0 0 50%;
  padding: 12px;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* HEADING */
.pathology-feature-card h3 {
  font-size: 40px;
  font-weight: 600;
  margin: 10px 0;
  color: #0d9488;
}

/* IMAGE (DESKTOP) */
.pathology-feature-card img {
  width: 100%;
  object-fit: contain;
   height: auto;
  height: 550px;           /* desktop height */
  
}

/* ===============================
   CENTER FEATURE
================================ */
.pathology-feature-center {
  display: flex;
  flex-direction: column;
  justify-content: center;   /* center vertically (if needed) */
  align-items: center;       /* center horizontally */
  text-align: center;

  max-width: 900px;          /* IMPORTANT */
  margin: 0 auto;            /* 🔥 THIS centers the block itself */

  padding: 24px;
}

.pathology-feature-center h3 {
   font-size: 40px;
  font-weight: 700;
  margin: 20px auto;
  color: #000;
  text-align: center;
  max-width: 900px;
  
  
}

.pathology-feature-center p {


 font-size: 18px;
  color: #64748b;
 
  margin: 0 auto;            /* 🔥 center paragraph block */
}

.pathology-feature-center img {
  display: block;            /* 🔥 removes inline spacing issues */
  margin: 16px auto 0;       /* 🔥 centers image */
  max-width: 100%;
  height: auto;
  margin-left:50px;
}


/* ===============================
   TABLET RESPONSIVE
================================ */
@media (max-width: 900px) {
  .pathology-features-row {
    flex-direction: column;
    gap: 30px; /* reduced */
  }

  .pathology-feature-card {
    flex: 100%;
  }
}

/* ===============================
   MOBILE RESPONSIVE (FIXED SPACING)
================================ */
@media (max-width: 768px) {

  /* CHANGED: Reduce overall section spacing */
  .pathology-features {
    margin: 40px auto; /* was 100px */
  }

  /* CHANGED: Reduce card spacing */
  .pathology-features-row {
    gap: 20px;
    margin-bottom: 30px;
  }

  /* CHANGED: Reduce card padding */
  .pathology-feature-card {
    padding: 8px;
  }

  /* CHANGED: Smaller headings */
  .pathology-feature-card h3,
  .pathology-feature-center h3 {
    font-size: 28px;
    margin: 10px 0;
  }

  /* 🚨 MOST IMPORTANT FIX */
  /* CHANGED: Remove fixed image height on mobile */
  .pathology-feature-card img {
    height: auto;      /* FIXED huge empty space */
    max-height: none;
  }

  /* CHANGED: Remove desktop offsets */
  .pathology-feature-center h3 {
    margin-right: 0;
  }

  /* CHANGED: Reduce vertical spacing */
  .pathology-feature-center {
    margin: 40px auto;
  }

  .dashboard-desc {
    margin-bottom: 20px;
    font-size: 15px;
  }
}

/* ===============================
   AUTHOR TAG
================================ */
.author h6 {
  color: #fff;
  font-size: 30px;
  background-color: #06b6d4;
  border-radius: 100%;
}


















/* POPUP OVERLAY */
.image-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}

/* IMAGE */
.popup-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* CLOSE BUTTON */
.popup-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
}

/* CLICKABLE CURSOR */
.popup-img {
  cursor: zoom-in;
}







/* why choose us section css */
/* WHY CHOOSE US SECTION */
/* WHY CHOOSE US - SIMPLE */
/* WHY CHOOSE US */
.why-atm-softek {
  position: relative;
 
  background: #ffffff;
  overflow: hidden;
  margin-top:0px;
}

.why-wrapper {
  max-width: 1300px;
   margin: auto;
 
  padding: 0 20px;
}

/* TOP CENTER */
.why-top {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
  
}

.why-top h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}

.why-top p {
  max-width: 680px;
  margin: 0 auto;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

/* CONTENT + IMAGE ROW */
.why-bottom {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 45px;
  align-items: center;
  margin-bottom: 60px;
}

.why-bottom.reverse {
  grid-template-columns: 1fr 1.25fr;
}

/* CONTENT */
.why-content h3 {
  font-size: 19px;
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 6px;
}

.why-content p {
  max-width: 620px;
  margin-bottom: 14px;
  color: #475569;
  font-size: 15.5px;
  line-height: 1.6;
}

/* IMAGE */
.why-images img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.12);
}

/* MOBILE */
@media (max-width: 900px) {
  .why-atm-softek {
    padding: 45px 0;
  }

  .why-bottom,
  .why-bottom.reverse {
    grid-template-columns: 1fr;
  }

  .why-bottom .why-images {
    margin-top: 25px;
  }
}






















































/* ===============================
   FOOTER MAIN
================================ */
.footer {
  background: linear-gradient(180deg, #020617, #0f172a);
  color: #f8fafc;
  font-family: "Inter", sans-serif;
}

/* MAIN GRID */
.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 90px 24px 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

/* BRAND */
.brand-col {
  max-width: 340px;
}

.footer-logo {
  height: 44px;
  margin-bottom: 18px;
  background: #ffffff;   /* white background */
  padding: 8px;
  border-radius: 8px;
}

.brand-text {
  font-size: 16px;
  line-height: 1.8;
  color: #c7d2fe;
}

/* HEADINGS */
.footer-col h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #ffffff;
  position: relative;
}

.footer-col h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #38bdf8;
  margin-top: 8px;
  border-radius: 2px;
}

/* ===============================
   LINKS & CONTACT (UNIFORM STYLING)
================================ */
.footer-links li,
.footer-contact li,
.office-block p {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.8;         /* spacing for readability */
  color: #cbd5f5;           /* bright enough for dark background */
}

/* Make links same hover as Pages links */
.footer-links a,
.footer-contact a {
  color: #cbd5f5;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #38bdf8;
  text-decoration: underline;
  padding-left: 6px;
}

/* Headings inside contact list */
.footer-contact li strong,
.office-block h4 {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
  color: #ffffff;
}

/* ===============================
   SOCIAL
================================ */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #e5e7eb;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #38bdf8;
  color: #020617;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(56,189,248,0.4);
}

/* ===============================
   BOTTOM
================================ */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 26px 20px;
  text-align: center;
  font-size: 15px;
  color: #94a3b8;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 520px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 70px 20px;
  }

  .footer-col h3 {
    font-size: 20px;
  }

  .brand-text {
    font-size: 15px;
  }

  .footer-social {
    justify-content: flex-start;
  }
}


























/* ================================
   WhatsApp Floating Button
================================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 99999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
}