/*==========================================================
        INDIAN FIBRE SHEETS
        STYLE.CSS
        PART 1
==========================================================*/

/*==========================================================
                    GOOGLE FONT
==========================================================*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/*==========================================================
                    ROOT VARIABLES
==========================================================*/

:root {
  --primary: #0b3d91;

  --secondary: #f58220;

  --dark: #111827;

  --light: #ffffff;

  --grey: #f5f5f5;

  --text: #555;

  --shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

  --radius: 18px;

  --transition: 0.35s ease;
}

/*==========================================================
                    RESET
==========================================================*/

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

/* ===============================
   DEVELOPER SECTION
=============================== */

.developer-section {
  background: #0b2e63; /* Same as footer */
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.developer-section {
  padding: 60px 0;
}

.developer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 35px 0;
  flex-wrap: wrap;
}

.developer-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.developer-text p {
  color: #d8d8d8;
  max-width: 650px;
  line-height: 1.7;
}

.developer-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.developer-btn:hover {
  background: #1fb857;
  transform: translateY(-4px);
}

.developer-btn i {
  font-size: 24px;
}

.developer-credit {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 18px 10px;
}

.developer-credit p {
  color: #cfcfcf;
  margin: 0;
  font-size: 15px;
}

.developer-credit strong {
  color: #fff;
  font-weight: 700;
}

/* Responsive */

@media (max-width: 768px) {
  .developer-content {
    flex-direction: column;
    text-align: center;
  }

  .developer-text h3 {
    font-size: 21px;
  }

  .developer-btn {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;

  background: #ffffff;

  color: var(--dark);

  overflow-x: hidden;

  line-height: 1.7;
}

img {
  max-width: 100%;

  display: block;
}

a {
  text-decoration: none;

  color: inherit;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

/*==========================================================
                    CONTAINER
==========================================================*/

.container {
  width: min(1200px, 90%);

  margin: auto;
}

section {
  padding: 90px 0;
}

/*==========================================================
                    SCROLLBAR
==========================================================*/

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);

  border-radius: 50px;
}

::-webkit-scrollbar-track {
  background: #eeeeee;
}

/*==========================================================
                    LOADER
==========================================================*/

#loader {
  position: fixed;

  inset: 0;

  background: #ffffff;

  display: none;

  align-items: center;

  justify-content: center;

  z-index: 99999;
}

.spinner {
  width: 70px;

  height: 70px;

  border: 6px solid #ddd;

  border-top: 6px solid var(--primary);

  border-radius: 50%;
}

/*==========================================================
                SCROLL PROGRESS BAR
==========================================================*/

.progress-bar {
  position: fixed;

  top: 0;

  left: 0;

  width: 0;

  height: 5px;

  background: var(--secondary);

  z-index: 99999;
}

/*==========================================================
                    COMMON BUTTONS
==========================================================*/

.btn-primary {
  display: inline-block;

  padding: 18px 38px;

  background: var(--secondary);

  color: #ffffff;

  border-radius: 50px;

  font-weight: 600;

  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-6px);

  box-shadow: 0 15px 35px rgba(245, 130, 32, 0.4);
}

.btn-secondary {
  display: inline-block;

  padding: 18px 38px;

  border: 2px solid #ffffff;

  color: #ffffff;

  border-radius: 50px;

  transition: var(--transition);
}

.btn-secondary:hover {
  background: #ffffff;

  color: var(--primary);
}

.btn-nav {
  padding: 14px 28px;

  background: var(--secondary);

  color: #ffffff;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-nav:hover {
  transform: translateY(-3px);

  box-shadow: 0 12px 30px rgba(245, 130, 32, 0.4);
}

/*==========================================================
                    SECTION TITLE
==========================================================*/

.section-title {
  text-align: center;

  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 42px;

  color: var(--primary);

  position: relative;

  display: inline-block;
}

.section-title h2::after {
  content: "";

  width: 200px;

  height: 5px;

  background: var(--secondary);

  position: absolute;

  bottom: -18px;

  left: 50%;

  transform: translateX(-50%);
}

.section-title p {
  max-width: 700px;

  margin: 25px auto 0;

  color: #666;
}

/*==========================================================
                    STATS SECTION
==========================================================*/

.stats {
  background: linear-gradient(135deg, #0b3d91, #103d83);

  color: #ffffff;

  padding: 80px 0;
}

.stats-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 35px;

  text-align: center;
}

.stat {
  padding: 25px;
}

.stat h2 {
  font-size: 55px;

  color: var(--secondary);

  font-weight: 800;
}

.stat p {
  font-size: 18px;

  letter-spacing: 1px;
}

/*==========================================================
                    INDUSTRIES SECTION
==========================================================*/

.industries {
  background: #ffffff;
}

.industry-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;
}

.industry-card {
  background: #fdfafa;

  padding: 40px 30px;

  border-radius: 20px;

  text-align: center;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.09);

  transition: 0.35s;
}

.industry-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.industry-card i {
  font-size: 55px;

  color: var(--secondary);

  margin-bottom: 25px;
}

.industry-card h3 {
  color: var(--primary);

  margin-bottom: 12px;
}

.industry-card p {
  color: #666;
}

/*==========================================================
                MANUFACTURING PROCESS
==========================================================*/

.process {
  background: #ffffff;
}

.timeline {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  gap: 30px;
}

.step {
  background: #f8fafc;

  border-radius: 20px;

  padding: 35px;

  text-align: center;

  position: relative;

  transition: 0.35s;
}

.step:hover {
  transform: translateY(-10px);
}

.step span {
  width: 70px;

  height: 70px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 20px;

  border-radius: 50%;

  background: var(--secondary);

  color: #ffffff;

  font-size: 24px;

  font-weight: 700;
}

.step h3 {
  color: var(--primary);

  margin-bottom: 15px;
}

.step p {
  color: #666;
}

/*==========================================================
                    COLORS SECTION
==========================================================*/

.colors {
  background: #f8fafc;
}

.color-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));

  gap: 25px;
}

.color-card {
  background: #ffffff;

  padding: 25px;

  text-align: center;

  border-radius: 18px;

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);

  transition: 0.35s;
}

.color-card:hover {
  transform: translateY(-8px);
}

.color {
  width: 90px;

  height: 90px;

  border-radius: 18px;

  margin: 0 auto 18px;
}

.white {
  background: #ffffff;

  border: 1px solid #ddd;
}

.blue {
  background: #1d4ed8;
}

.orange {
  background: #f58220;
}

.grey {
  background: #808080;
}

.green {
  background: #16a34a;
}

.red {
  background: #dc2626;
}

.yellow {
  background: #facc15;
}

.black {
  background: #1f2937;
}

.color-card h4 {
  color: var(--primary);

  font-size: 18px;
}

/*==========================================================
                SPECIFICATION TABLE
==========================================================*/

.specifications {
  background: #f5f7fb;
}

.specifications table {
  width: 100%;

  border-collapse: collapse;

  background: #ffffff;

  margin-top: 40px;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.specifications th {
  background: var(--primary);

  color: #ffffff;

  padding: 18px;
}

.specifications td {
  padding: 18px;

  border-bottom: 1px solid #eeeeee;

  color: #555;
}

.specifications tr:hover {
  background: #f8fafc;
}

/*==========================================================
                    WHY CHOOSE US
==========================================================*/

.why {
  background: #ffffff;
}

.why-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;
}

.why-card {
  background: #ffffff;

  padding: 40px 25px;

  text-align: center;

  border-radius: 18px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

  transition: 0.4s;

  border-top: 5px solid transparent;
}

.why-card:hover {
  transform: translateY(-12px);

  border-color: var(--secondary);

  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.why-card i {
  font-size: 60px;

  color: var(--secondary);

  margin-bottom: 25px;
}

.why-card h3 {
  color: var(--primary);

  font-size: 24px;
}

.why-card p {
  color: #666;

  margin-top: 15px;
}

/*==========================================================
                    TESTIMONIALS
==========================================================*/

.testimonials {
  background: #ffffff;
}

.testimonial-slider {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;
}

.testimonial-card {
  background: #f8fafc;

  padding: 35px;

  border-radius: 20px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

  transition: 0.35s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-card i {
  font-size: 40px;

  color: var(--secondary);

  margin-bottom: 20px;
}

.testimonial-card p {
  color: #555;
}

.testimonial-card h4 {
  margin-top: 20px;

  color: var(--primary);
}

.testimonial-card span {
  color: #888;
}

/*==========================================================
                    CTA SECTION
==========================================================*/

.cta {
  background: linear-gradient(135deg, var(--primary), #174ea6);

  color: #ffffff;

  text-align: center;
}

.cta h2 {
  font-size: 42px;

  margin-bottom: 20px;
}

.cta p {
  color: #dddddd;

  margin-bottom: 35px;
}
/*==========================================================
                TESTIMONIAL SECTION
==========================================================*/

.testimonials {
  background: #ffffff;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #f8fafc;
  padding: 35px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-card i {
  font-size: 40px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #666;
  line-height: 1.8;
}

.testimonial-card h4 {
  margin-top: 20px;
  color: var(--primary);
}

.testimonial-card span {
  color: #888;
}

/*==========================================================
                ENQUIRY SECTION
==========================================================*/

.enquiry {
  background: linear-gradient(135deg, #0b3d91, #123f8c);

  color: white;
}

.enquiry .section-title h2 {
  color: white;
}

.enquiry .section-title p {
  color: #ddd;
}

.enquiry form {
  max-width: 900px;

  margin: 50px auto 0;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 25px;

  padding: 40px;

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(15px);

  border-radius: 20px;
}

.enquiry input,
.enquiry select,
.enquiry textarea {
  width: 100%;

  padding: 17px 20px;

  border: none;

  outline: none;

  border-radius: 12px;

  font-family: inherit;

  font-size: 16px;
}

.enquiry textarea {
  grid-column: 1/3;

  resize: none;
}

.enquiry button {
  grid-column: 1/3;

  padding: 18px;

  border: none;

  border-radius: 50px;

  background: var(--secondary);

  color: white;

  font-size: 18px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.enquiry button:hover {
  background: white;

  color: var(--primary);
}

/*==========================================================
                    CTA SECTION
==========================================================*/

.cta {
  background: linear-gradient(135deg, var(--primary), #174ea6);

  text-align: center;

  color: white;
}

.cta h2 {
  font-size: 42px;

  margin-bottom: 20px;
}

.cta p {
  color: #ddd;

  margin-bottom: 35px;
}

/*==========================================================
                    CONTACT SECTION
==========================================================*/

.contact {
  background: #f8fafc;
}

.contact-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}

.contact-info {
  display: flex;

  flex-direction: column;

  gap: 25px;
}

.contact-card {
  background: white;

  padding: 25px;

  border-radius: 18px;

  display: flex;

  gap: 20px;

  align-items: center;

  box-shadow: var(--shadow);

  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card i {
  font-size: 35px;

  color: var(--secondary);
}

.contact-card h3 {
  color: var(--primary);

  margin-bottom: 5px;
}

.contact-card p {
  color: #666;
}

.map iframe {
  width: 100%;

  height: 420px;

  border: none;

  border-radius: 20px;

  box-shadow: var(--shadow);
}

/*==========================================================
                    FOOTER
==========================================================*/

footer {
  background: #08192f;

  color: white;

  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 40px;
}

footer h2 {
  font-size: 32px;

  margin-bottom: 20px;
}

footer h2 span {
  color: var(--secondary);
}

footer h3 {
  margin-bottom: 20px;
}

footer p,
footer li {
  color: #ccc;

  line-height: 2;
}

footer ul li {
  cursor: pointer;

  transition: 0.3s;
}

footer ul li:hover {
  color: var(--secondary);
}

.social {
  display: flex;

  gap: 15px;
}

.social a {
  width: 50px;

  height: 50px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: white;

  color: var(--primary);

  font-size: 20px;

  transition: 0.3s;
}

.social a:hover {
  background: var(--secondary);

  color: white;

  transform: translateY(-5px);
}

footer hr {
  margin: 40px 0;

  border-color: #333;
}

.copyright {
  text-align: center;
}

/*==========================================================
                FLOATING BUTTONS
==========================================================*/

.whatsapp,
.call-btn {
  position: fixed;

  width: 65px;

  height: 65px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  color: white;

  font-size: 30px;

  z-index: 999;

  transition: 0.3s;
}

.whatsapp {
  right: 25px;

  bottom: 25px;

  background: #25d366;
}

.call-btn {
  left: 25px;

  bottom: 25px;

  background: var(--primary);
}

.whatsapp:hover,
.call-btn:hover {
  transform: scale(1.12);
}

/*==========================================================
                BACK TO TOP
==========================================================*/

.backTop {
  position: fixed;

  right: 25px;

  bottom: 110px;

  width: 55px;

  height: 55px;

  border-radius: 50%;

  background: var(--primary);

  color: white;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  opacity: 0;

  visibility: hidden;

  transition: 0.3s;

  z-index: 998;
}

.backTop.show {
  opacity: 1;

  visibility: visible;
}

.backTop:hover {
  background: var(--secondary);
}

/*==========================================================
                PROGRESS BAR
==========================================================*/

.progress-bar {
  position: fixed;

  top: 0;

  left: 0;

  height: 5px;

  width: 0;

  background: var(--secondary);

  z-index: 99999;
}

/*==========================================================
                LOADER
==========================================================*/

#loader {
  position: fixed;

  inset: 0;

  background: white;

  display: none;

  align-items: center;

  justify-content: center;

  z-index: 99999;
}

.spinner {
  width: 70px;

  height: 70px;

  border: 6px solid #ddd;

  border-top-color: var(--primary);

  border-radius: 50%;

  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
