
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  margin: 0;
  background-color: #fff;
  color: #333;
  line-height: 1.5;
}


.container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;    
}


    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding:26px 0;
      border-bottom: 1px solid #eee;
    }
    header .logo {
      font-size: 20px;
      font-weight: bold;
      color: #00a3ff;
    }
    nav a {
      margin: 0 10px;
      text-decoration: none;
      color: #333;
      font-weight: 500;
    }
    nav a:hover {
      color: #00a3ff;
    }
    .auth-buttons a {
      padding: 8px 16px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      color: var(--color-neutral-800, #262626);
      font-size: var(--font-size-base, 16px);
      font-weight: var(--font-weight-normal, 400);
      line-height: var(--font-leading-6, 24px); /* 150% */
    }
    
    .auth-buttons .login {
      color: #333;
    }
    .auth-buttons .signup {
      background-color: #00a3ff;
      color: #fff;
    }
   

nav {
  display: flex;
  align-items: center;
}



.dropdown {
  position: relative;
}

.dropdown > a {
  margin: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: var(--color-neutral-800, #262626);
  font-size: var(--font-size-base, 16px);
  font-weight: var(--font-weight-normal, 400);
  line-height: var(--font-leading-6, 24px); /* 150% */
}

.dropdown > a:hover {
  color: #00a3ff;
}

/* Arrow icon */
.arrow {
  display: inline-block;
  margin-left: 5px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.dropdown:hover .arrow {
  transform: rotate(-135deg);
  border-color: #00a3ff;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #eee;
  border-radius: 5px;
  min-width: 180px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #00a3ff;
}

/* Show menu on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}


.auth-buttons .signup {
  background-color: #00a3ff;
  color: #fff;
  border-radius: 50px; /* makes it round/pill shape */
  padding: 12px 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.auth-buttons .signup:hover {
  background-color: #007acc; /* darker blue on hover */
  transform: scale(1.05); /* slight zoom effect */
}


/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: auto;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: 0.3s;
  border-radius: 3px;
}


/* ==================================================== */



.file-converter{
  padding: 60px 0 20px;
}

.file-converter h1 {
      color: #333;
      text-align: center;
      font-size: var(--font-size-5xl, 48px);
      font-weight: var(--font-weight-bold, 700);
      line-height: var(--font-size-5xl, 48px); /* 100% */
    }

.file-converter h1 span {
      color: #1296E5;
    }

.file-converter p{
  color: var(--color-neutral-800, #262626);
  text-align: center;
  font-size: var(--font-size-base, 16px);
  font-weight: var(--font-weight-normal, 400);
  line-height: var(--font-leading-6, 24px); /* 150% */

}
.upload-box {
  padding:86px 0;
  margin: 60px 0 60px;
  border-radius: 32px;
  border: 2px dashed #1296E5;
  background: #F0F8FF;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.upload-content {
  display: flex;
  flex-direction: column; /* Stack icon above text */
  align-items: center;
  gap: 20px; /* Space between icon & text */
}

.upload-icon i {
  color: #fff!important;
}

.upload-box p {
color: var(--color-neutral-800, #262626);
text-align: center;
font-size: var(--font-size-xl, 20px);
font-weight: var(--font-weight-normal, 400);
line-height: var(--font-leading-7, 28px); /* 140% */
}


/* CSS */
.upload-info {
  display: flex;
  gap: 16px; /* space between pills */
  justify-content: center; /* center align */
  flex-wrap: wrap; /* allow wrapping on small screens */
  margin-bottom: 60px;
}

.badge {
  background-color: #f0f7ff; /* light blue background */
  color: #262626; /* black text */
  padding: 15px 25px;
  border-radius: 50px; /* fully rounded pill */
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap; /* keep text in one line */
  display: inline-block;
}


/*---------------------------------------*/

.features {
  text-align: center;
}

.features h2 {
  color: var(--color-neutral-800, #262626);
  text-align: center;
  font-family: var(--font-family-sans, Montserrat);
  font-size: var(--font-size-5xl, 48px);
  font-style: normal;
  font-weight: var(--font-weight-bold, 700);
  line-height: var(--font-size-5xl, 48px); /* 100% */
  letter-spacing: var(--font-tracking-normal, 0);
}

.features span {
  color: var(--Primary-500, #1296E5);
}

.features p {
  color: var(--color-neutral-500, #737373);
  font-size: var(--font-size-base, 16px);
  font-weight: var(--font-weight-normal, 400);
  line-height: var(--font-leading-6, 24px); /* 150% */
  padding: 16px 0 60px;
}

/* Feature Card */
.feature-card {
  padding: 32px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: left;
  height: 100%;
  border-radius: var(--radius-4xl, 32px);
  background: var(--Primary-50, #F0F8FF);
}

/* Icon background for both img and inline svg */
.feature-card i {
  display: inline-block;
  border-radius: 100%;
  background: var(--Primary-500, #1296E5); /* Blue background */
  padding: 24px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 30px;

}

/* Hover: Card turns black, text turns white */
.feature-card:hover {
  background-color: #000;
}

.feature-card:hover h3,
.feature-card:hover p {
  color: #fff;
}

/* Hover: Icon background turns white */
.feature-card:hover i
 {
  background: #fff;
  color: #0088cc!important;
}

/* Title */
.feature-card h3 {
  margin-bottom: 10px;
  color: var(--color-neutral-800, #262626);
  font-size: var(--font-size-2xl, 24px);
  font-weight: var(--font-weight-semibold, 600);
  line-height: var(--font-leading-8, 32px); /* 133.333% */
}

/* Description */
.feature-card p {
  margin: 0;
  color: var(--color-neutral-800, #262626);
  font-size: var(--font-size-base, 16px);
  font-weight: var(--font-weight-normal, 400);
  line-height: var(--font-leading-6, 24px); /* 150% */
  padding: 0;
}


/* =================How It Works Section======================== */
.how-it-works {
  background: linear-gradient(81deg, var(--Primary-400, #3CB1F4) -16.2%, var(--color-purple-400, #C27AFF) 99.64%);
  color: #fff;
  text-align: center;
  margin: 80px 0;
  padding-bottom: 80px;
}

.how-it-works h2 {
padding:80px 0 60px;
color: #FFF;
text-align: center;
font-size: var(--font-size-5xl, 48px);
font-weight: var(--font-weight-bold, 700);
line-height: var(--font-size-5xl, 48px); /* 100% */
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 90%;
  margin: 0 auto;
}

.step {
  border-radius: var(--radius-full, 9999px);
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  padding: 12px;
  /* border-radius: 50px; */
  text-align: left;
}

.icon-circle {
  background: #000;
  color: #fff;
  /* width: 40px;
  height: 40px; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 15px;

}
.icon-circle img {
  padding: 24px;
}

.step h3 {
color: var(--color-neutral-800, #262626);
font-size: var(--font-size-2xl, 24px);
font-weight: var(--font-weight-semibold, 600);
line-height: var(--font-leading-8, 32px); /* 133.333% */
margin-bottom: 0;
}


.step p {
  color: var(--color-neutral-800, #262626);
font-size: var(--font-size-lg, 18px);
font-weight: var(--font-weight-normal, 400);
line-height: var(--font-leading-7, 28px); /* 155.556% */
margin-bottom: 0;
}


/* ======================Most-Used Conversions==================== */
.most-used-conversions {
  text-align: center;
  margin-top: 50px;
}

.most-used-conversions h2 {
  margin-bottom: 16px;
  color: var(--color-neutral-800, #262626);
  font-size: var(--font-size-5xl, 48px);
  font-weight: var(--font-weight-bold, 700);
  line-height: var(--font-size-5xl, 48px); /* 100% */
}

.most-used-conversions h2 span {
  color: #00a3ff;
}

.most-used-conversions p {
  margin-bottom: 28px;
  color: var(--color-neutral-500, #737373);
  font-size: var(--font-size-base, 16px);
  font-weight: var(--font-weight-normal, 400);
  line-height: var(--font-leading-6, 24px); /* 150% */
}

.conversion-card {
  padding:40px 20px 20px;
  transition: all 0.3s ease;

  border-radius: var(--radius-4xl, 32px);
  border: 2.5px dashed var(--Primary-500, #1296E5);
  background: var(--Primary-50, #F0F8FF);
  text-decoration: none!important;
}
.conversion-card a {
  text-decoration: none!important;
}

.conversion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 163, 255, 0.2);
}

.file-types {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
  color: #00a3ff;
}

.file {
  font-size: 16px;
}

.file-types span {
color: #000;
font-size: var(--font-size-base, 16px);
font-weight: var(--font-weight-medium, 500);
line-height: var(--font-leading-6, 24px); /* 150% */
}
.file-types p {
color: #000;
font-size: var(--font-size-base, 16px);
font-weight: var(--font-weight-medium, 500);
line-height: var(--font-leading-6, 24px); /* 150% */
}

.convert-btn {
  background: #00a3ff;
  color: white;
  border: none;
  padding: 12px 12px 12px 20px;
  border-radius: 25px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 100%;
  transition: all 0.3s ease;

  font-size: var(--font-size-base, 16px);
  font-weight: var(--font-weight-medium, 500);
  line-height: var(--font-leading-6, 24px); /* 150% */
}

.convert-btn:hover {
  background: #007acc;
  transform: scale(1.05);
}

.convert-btn i {
  font-size: 20px;
}


.view-more-container {
  margin-top: 20px;
}

.view-more-btn {
  color: white;
  border: none;
  padding: 16px 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: var(--radius-full, 9999px);
  background: var(--color-neutral-800, #262626);
}

.view-more-btn:hover {
  background: #333;
  transform: scale(1.05);
}


/* ======================CTA Section======================== */
.cta {
  background: radial-gradient(circle at bottom center, #66ccff -50%, #001f33 80%);
  color: #fff;
  padding: 100px 80px;
  margin: 80px auto;
  border-radius: 40px;
  position: relative;
}
.angle_jpg{
  position: absolute;
    /* Positioning offsets */
  top: 220px;               /* Distance from top edge */
  right: auto;          /* Distance from right edge */
  bottom: auto;         /* Distance from bottom edge */
  left: 3px;              /* Distance from left edge */

  /* Size */
  width: 100px;         /* Element width */
  height: 100px;        /* Element height */
  min-width: auto;      
  min-height: auto;
  max-width: none;
  max-height: none;

  /* Layer order */
  z-index: 1;           /* Controls stacking order */

  /* Transform (optional for centering/movement) */
  transform: translate(0, 0);

  /* Overflow handling */
  overflow: visible;    

  /* Visual tweaks */
  opacity: 1;           
  pointer-events: auto; 
}
.angle_png {
  position: absolute;
  top: 0;          /* Stick to top edge */
  right: 70px;        /* Stick to right edge */

  /* Size */
  width: 100px;
  height: 100px;

  /* Layer order */
  z-index: 2;

  /* Optional: fine-tune position if you want spacing from edges */
  /* top: 20px;
     right: 20px; */

  /* Visual tweaks */
  opacity: 1;
  pointer-events: auto;
}


.cta h2 {
  margin-bottom: 12px;
  color: var(--color-white, #FFF);
  font-size: var(--font-size-5xl, 48px);
  font-weight: var(--font-weight-semibold, 600);
  line-height: var(--font-size-5xl, 48px); /* 100% */
}

.cta h2 span {
  color: #00a3ff;
}

.cta p {
  margin-bottom: 40px;
  color: var(--color-white, #FFF);
  font-size: var(--font-size-base, 16px);
  font-weight: var(--font-weight-normal, 400);
  line-height: var(--font-leading-6, 24px); /* 150% */
}

.cta-btn {
  background: #1296E5;
  color: #fff;
  padding: 16px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: var(--font-size-base, 16px);
  font-weight: var(--font-weight-medium, 500);
  line-height: var(--font-leading-6, 24px); /* 150% */
}

.cta-btn:hover {
  background: #094b6d;
}

/* ==================Footer=================== */
.footer {
  background: var(--color-neutral-950, #0A0A0A);
  color: #fff;
  padding: 80px 330px;
  font-size: 0.9rem;
  text-align: left;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  /* max-width: 1100px; */
  margin: auto;
}

.footer-left p {
  color: #FFF;
  font-size: var(--font-size-base, 16px);
  font-weight: var(--font-weight-normal, 400);
  line-height: var(--font-leading-6, 24px); /* 150% */
  padding: 24px 0;
}

.footer-bottom-links {
 color: #FFF;
  font-size: var(--font-size-base, 16px);
  font-weight: var(--font-weight-normal, 400);
  line-height: var(--font-leading-6, 24px); /* 150% */
}

.social-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  padding-bottom: 40px;
}

.social-icons i{
  background: #171717;
  padding: 16px;
  border-radius: 100px;
  font-size: 20px;
  color: #fff;
}
.social-icons i:hover{
  color: #007acc;
}



.footer-links h4,
.newsletter h4 {
  margin-bottom: 30px;
  color: #FFF;
  font-size: var(--font-size-base, 16px);
  font-weight: var(--font-weight-semibold, 600);
  line-height: var(--font-leading-6, 24px); /* 150% */
}
.subscribe{
  color: var(--color-white, #FFF);
  font-size: var(--font-size-base, 16px);
  font-weight: var(--font-weight-normal, 400);
  line-height: var(--font-leading-6, 24px); /* 150% */
}


.footer-links a {
  display: block;
  text-decoration: none;
  margin-bottom: 15px;
  color: #FFF;
  font-size: var(--font-size-base, 16px);
  font-weight: var(--font-weight-normal, 400);
  line-height: var(--font-leading-6, 24px); /* 150% */
}

.footer-links a:hover {
  color: #00a3ff;
}

.newsletter input {
  width: 100%;
  padding: 18px 20px;
  border-radius: 50px;
  border: 1px solid #1296E5;
  margin-bottom: 16px;
  background: transparent;
  color: #fff;
  font-size: var(--font-size-base, 16px);
  font-weight: var(--font-weight-normal, 400);
  line-height: var(--font-leading-6, 24px); /* 150% */

}

.subscribe-btn {
  background: #00a3ff;
  color: #fff;
  padding: 5px 5px 5px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: var(--font-size-base, 16px);
  font-weight: var(--font-weight-normal, 400);
  line-height: var(--font-leading-6, 24px); /* 150% */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 127px;
}

.subscribe-btn i{
  border: 1px solid #fff;
  padding: 20px;
  border-radius: 50px;
}

.subscribe-btn:hover {
  background: #0088cc;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin: 20px auto 0;
  border-top: 1px solid #222;
  padding-top: 15px;
  flex-wrap: wrap;
}
.footer-bottom p{
  color: #FFF;
  font-size: var(--font-size-base, 16px);
  font-style: normal;
  font-weight: var(--font-weight-normal, 400);
  line-height: var(--font-leading-6, 24px); /* 150% */
}

.footer-bottom-links a {
  color: #ccc;
  margin-left: 15px;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #00a3ff;
} 

/* ======================second page css start============== */
/* ============================================================ */
.file-name, .file-size{
  margin-bottom: 0!important;
}
.file_description .file-name{
  color: var(--color-neutral-800, #262626);
  font-size: var(--font-size-lg, 18px);
  font-weight: var(--font-weight-medium, 500);
  line-height: var(--font-leading-7, 28px); /* 155.556% */
}
.file_description .file-size{
  color: var(--color-neutral-400, #A1A1A1);
  font-size: var(--font-size-base, 16px);
  font-weight: var(--font-weight-normal, 400);
  line-height: var(--font-leading-6, 24px); /* 150% */
}


.file-info {
  display: flex;
  align-items: center;
  gap: 12px; /* space between icon and text */
}

.file_description, .file-size {
  text-align: left!important;
}
.file-converter h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.file-converter h1 span {
  color: #1296E5;
}

.file-converter p {
  color: #666;
  margin-bottom: 40px;
}

/* File List */
.file-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.file-item {
  padding: 20px 40px 20px 20px ;
  display: flex;
  justify-content: space-between;
  align-items: center;

  border-radius: var(--radius-3xl, 24px);
  border: 1px solid var(--color-neutral-200, #E5E5E5);
  background: var(--color-white, #FFF);
}

.file-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.file-info img {
  width: 120px;
  height: 80px;
  border-radius: 10px;
}

.file-name {
  font-weight: 600;
}

.file-size {
  font-size: 14px;
  color: #888;
}

.file-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.file-action label {
  font-size: 14px;
  color: var(--color-neutral-400, #A1A1A1);
  text-align: center;
  font-size: var(--font-size-base, 16px);
  font-weight: var(--font-weight-medium, 500);
  line-height: var(--font-leading-6, 24px); /* 150% */
}

.file-action select {
  padding: 8px 36px 8px 12px;
  border: 2px solid transparent;   /* default transparent border */
  border-radius: var(--radius-full, 9999px);
  background: var(--Primary-50, #F0F8FF);
  color: var(--Primary-500, #1296E5);
  font-size: var(--font-size-base, 16px);
  font-weight: var(--font-weight-semibold, 600);
  line-height: var(--font-leading-6, 24px);

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231296E5' viewBox='0 0 16 16'><path d='M4 6l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.file-action select:focus-visible {
  border-color: #1296E5;              /* blue border */
  outline: none;                      /* remove default outline */
  box-shadow: 0 0 0 3px rgba(18,150,229,0.2); /* subtle glow */
}


.remove_button{
  padding-left: 80px;
}

.remove-btn {
  border-radius: 50px;
  border: 1px solid var(--color-neutral-200, #E5E5E5);
  background: var(--color-white, #FFF);
  padding: 6px 14px;
  font-size: 20px;
  
}

.remove-btn:hover {
  color: red;
}

/* Upload more */
.upload-more {
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  color: var(--color-neutral-400, #A1A1A1);
  font-size: var(--font-size-xl, 20px);
  font-weight: var(--font-weight-medium, 500);
  line-height: var(--font-leading-7, 28px); /* 140% */
  cursor: pointer;
  border-radius: var(--radius-full, 9999px);
  background: var(--color-neutral-100, #F5F5F5);
}
.upload_more_text p{
  margin-bottom: 0!important;
}
.plus_icon i{
  font-size: 16px;
  border: 1px solid #A1A1A1;
  border-radius: 50px;
  padding: 3px 5px;
}
.upload-more:hover {
  background: #eaeaea;
}

/* Convert Button */
.convert-container {
  margin-top: 30px;
  text-align: right;
}

.convert-btn-2 {
    background: #00a3ff;
    color: white;
    border: none;
    padding: 12px 12px 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    /* width: 100%; */
    transition: all 0.3s ease;
    font-size: var(--font-size-base, 16px);
    font-weight: var(--font-weight-medium, 500);
    line-height: var(--font-leading-6, 24px);
}

.convert-btn-2:hover {
  background: #007acc;
  transform: scale(1.05);
}
.convert-container{
  display: flex;
justify-content: right;
}
.convert-container a{
  text-decoration: none;
}

/* ===============================================3rd page css start===================================== */


.page_description_3rd {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  text-align: left !important;
  min-width: 180px !important;   /* ensures column stays wide enough */
  max-width: 250px !important;   /* gives room for longer names */
}

 .file_name_3rd {
    text-align: left !important;
  font-weight: 600 !important;
  line-height: 20px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  width: 100% !important;        /* fit within parent */
}

.file_size_3rd {
  font-size: 14px !important;
  color: #888 !important;
  line-height: 18px !important;
}

.file-status {
  min-width: 160px;
  text-align: left;
}



.file-status p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.Status{
    display: flex;
    justify-content: space-between;
    align-items: center;
      gap: 38px;
    width: 200px;

}

.status.done { color: #00b894; }
.status.progress { color: #0984e3; }
.status.queue { color: #e17055; }
.progress{
  background-color: transparent!important;
}

.status.done { color: #00b894; }
.status.progress { color: #0984e3; }
.status.queue { color: #e17055; }

.progress-bar {
  width: 100%;
  height: 6px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
}

.progress {
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress.done { background: #00b894; }
.progress.in-progress { background: #0984e3; }
.progress.queue { background: #e17055; }

/* Download Button */
.download-btn,
.remove-btn {
  border: none;
  background: #f8f8f8;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: 0.2s;
}

.download-btn:hover { background: #dfe6e9; }
.remove-btn:hover { color: red; }

/* ==================================4th page css start================================= */
/* ====== Layout ====== */
/* ====== Layout ====== */
.cf-section {
  padding: 40px 20px;
}
.cf-wrap {
  /* max-width: 1100px; */
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}



/* ====== Left preview cards ====== */
/* --- Force diagonal preview layout --- */
.cf-left{
  position: relative !important;
  display: block !important;        
  /* max-width: 640px;                 
  min-height: 360px;                 */
  margin: 0 auto;
}

/* place wrappers */
.cf-left .first_img{
  position: absolute;
  top: -176px;
        right: 75px;
}

.cf-left .second_img{
  position: absolute;
  right: -280px;
    bottom: -192px;
}
.cf-left .third_img{
  position: absolute;
      right: 50px;
    bottom: -160px;
}



/* size the FIGUREs (not the <img>) */
.cf-card{ border-radius: 22px; overflow: hidden; }
.cf-card.cf-small{ width: 220px; height: 220px; }
.cf-card.cf-large{ width: 296px; height: 296px; }

/* images fill their cards */
.cf-card img{ width: 100%; height: 100%; object-fit: cover; display:block; }




.cf-small img { width: 220px; height: 220px; }
.cf-large img { width: 296px; height: 296px; }



/* ====== Right upload card ====== */
.cf-upload-card {
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  background: #fff;
  text-align: center;
  padding: 28px;
}
.cf-upload-inner {
  border: 2px dashed #E5E5E5;
  border-radius: 20px;
  padding: 28px;
}

.cf-upload-card h3 {
  color: #262626;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.cf-browse {
  color: #1296E5;
  font-weight: 500;
  cursor: pointer;
}
.cf-browse:hover { text-decoration: underline; }

.cf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1296E5;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease;
}
.cf-btn:hover { background: #007acc; transform: translateY(-1px); }

.cf-note {
  margin: 12px 0 8px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.cf-info {
  display: inline-grid;
  place-items: center;
  margin-right: 6px;
  width: 18px;
  height: 18px;
  border: 1.5px solid #cfd8e3;
  border-radius: 50%;
  font: 700 11px/1 "Montserrat", sans-serif;
  color: #64748b;
}

/* benefits row */
.cf-benefits {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 14px 0 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}
.cf-benefits li {
  position: relative;
  padding-left: 24px;
}
.cf-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1296E5;
  box-shadow: 0 0 0 4px rgba(18,150,229,.12);
}

