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

html {
  scroll-behavior: smooth;
}

/* This is the main container  */
.main-container {
  position: relative;
  z-index: 1;
}

body {
  font-family: "Inter", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: url("./images/BGImage.png") no-repeat center center / cover;
  opacity: 0.2;

  z-index: -1;
}

/* * {
  box-sizing: border-box;
} */

/* Hamburger menu code Hamburger come at small screnn sizes  */

.hamburger {
  display: none; 
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #111;
  border-radius: 2px;
}

.dropbtn {
  display: flex;
  align-items: center; 
  gap: 5px;
}
.arrow-img {
  width: 14px;
  height: 14px;
  margin-top: 0;
}

/* Dropdown  when click products this dropdown shown*/

.dropdown {
  position: relative;
}

.dropbtn {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-content {
  position: absolute;
  top: 40px;
  left: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 10px 0;
  display: none;
  min-width: 200px;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: black;
}

.dropdown-content a:hover {
  background: #f5f6f8;
}

/* Arrow rotation used arrow img  */
.arrow-img {
  width: 15px;
  margin-left: 5px;
  transition: transform 0.3s ease;
  height: 15px;

  
}

nav.active {
  display: flex;
}

.dropdown-content.show {
  display: block;
}

/* for mobile like devices (small devices)*/

@media (max-width: 1025px) {
  nav {
    position: absolute;
    top: 77px;
    right: 10px;
    background: #fff;
    flex-direction: column;
    width: 220px;

    display: none !important ;  

    padding: 15px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    z-index: 1000;
  }

   nav a,
  nav .btn,
  .dropdown {
    width: 100%;
    margin: 5px 0;
  }
  nav.active {
    display: flex !important; 
  }

  .hamburger {
    display: flex;
    z-index: 1001;
    margin-right: 18px;
  }
}

/* This is the HEADER Code */

header {
  width: 100%;
  border-bottom: 1px solid #e1e3e8;
  background: white;
  display: flex;
  justify-content: center;
}

.nav-container {
  max-width: 1240px;
  width: 100%;
  height: 77px;
margin: 0 auto;


  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 110px;
}

@media (max-width: 1025px) {
  .logo{
    margin-left: 18px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: black;
}

.btn {
  padding: 8px 16px;
  background: #2B3990;
  color: white;
  border-radius: 20px;
  border: none;
}

.breadcrumb {
  font-size: 16px;
  /* margin-bottom: 20px; */
  max-width: 1240px;
  margin: 0 auto ;
  padding: 0 20px;
  text-align: left;
  margin-top: 40px;

}

.crumb-light {
  color: #9ca3af;  
}

.crumb-arrow {
  margin: 0 5px;
  color: #9ca3af;
}

.crumb-dark {
  color: #111; 
  font-weight: 500;
}

/* HERO SECTION CODE */
.hero {
  display: flex;
  justify-content: center; 
}

.hero-container {
  max-width: 1240px;
  width: 100%;
  display: flex;
  gap: 120px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 50px;
}

.hero-left {
  width: 500px;
}

.image-box {
  position: relative;

}

.image-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
    border: 3px solid #ffffff;
  display: none;
  box-shadow: 0px 20px 40px rgba(0,0,0,0.08);
}

.image-box img.active {
  display: block;
}

/* ARROWS */
.arrow-left1,
.arrow-right1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.arrow-left1 {
  left: 10px;
}

.arrow-right1 {
  right: 10px;
}

/* THUMBNAILS CONTAINER */
.thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 15px;

  overflow-x: auto;      
  white-space: nowrap; 
  scrollbar-width: none; 
}

.thumbnails::-webkit-scrollbar {
  display: none;        
}

/* THUMBNAIL IMAGES */
.thumbnails img {
  width: 70px;      
  height: 70px;
  border-radius: 10px;
  border: 1px solid #ddd;
  cursor: pointer;

  flex-shrink: 0;     
  object-fit: cover;
}

/* RIGHT */
.hero-right {
  width: 550px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.hero-right p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-right p img {
  width: 16px;
  height: 16px;
}

.badges {
  display: flex;
  gap: 10px;
}

.badge {
  padding: 6px 10px;
  background: #f1f2f4;
  border-radius: 6px;
  font-size: 13px;
}


.badge img {
  width: 16px; 
  height: 16px;
  object-fit: contain;
  margin-right: 5px;
}

.hero-right h1 {
  font-size: 30px;
  line-height: 1.3;
}

/* PRICE BOX */
.price-box {
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
}
.price-box p{
  margin-bottom: 5px;
}

.tags {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.tags span {
  background: #fff4cc;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: #92400E;
}

.cert {
   display: flex;
  gap: 10px;
  margin-top: 10px;

}

.cert span{
  background: #f1f2f4;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;

}
/* BUTTONS */
.buttons {
  display: flex;
  gap: 10px;
}

.primary {
  background: #2B3990;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
}

.secondary {
  padding: 12px 18px;
  border: 1px solid #000;
  border-radius: 8px;
  background: transparent;
}

/* LOGOS */


.logos-section {
  margin-top: 60px;
  text-align: center;
}

/* TITLE */
.logos-title {
  color: #878B94;
  margin-bottom: 30px;
}

/* CONTAINER */
.logos {
  max-width: 1040px;   
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  gap: 40px;

  overflow-x: auto;     
  white-space: nowrap;   
  scrollbar-width: none;
}

.logos::-webkit-scrollbar {
  display: none;
}

/* LOGOS */
.logos img {
  width: 140px;     
  height: 120px;
  object-fit: contain;

  flex-shrink: 0;  
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    gap: 60px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .image-box img {
    height: auto;
  }
}

/* TABLET */
@media (max-width: 768px) {
  .logos img {
    width: 120px;
    height: 90px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .logos img {
    width: 120px;
    height: 90px;
  }
}


/* TABLET */
@media (max-width: 768px) {
  .thumbnails img {
    width: 65px;
    height: 65px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .thumbnails img {
    width: 60px;
    height: 60px;
  }
}


/* SPEC SECTION */
.specs {
  width: 100%;
  height: auto;
  background: #111827;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.specs-container {
  max-width: 1024px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px;
  margin: 0 auto;
}

/* Heading */
.specs h2 {
  font-family: Urbanist,sans-serif;

  font-size: 32px;
 color:#ffffffcc ;
 text-align: start;
}

.subtext {
  color: #ffffffcc;
  font-family: Inter,sans-serif;

  font-size: 16px;
  text-align: start;
  
}

/* TABLE */
.table-box {
  margin-top: 40px;
  width: 100%;
  max-width: 1024px; 
  margin-left: auto;
  margin-right: auto;

  background: #1b263b;
  color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2e3a52;
}

table {
  width: 100%;
  border-collapse: collapse;

}

thead {
  background: #374152;
}

th,
td {
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
}

th {
  color: #b0b7c3;
}

td {
  border-top: 1px solid #2e3a52;
  background-color: #1f2937;
}

/* BUTTON */
.download-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.download-btn button {
  background: transparent;
  color: white;
  border: 1px solid #5a6b85;
  cursor: pointer;
  display: flex;
  width: 325px;
  height: auto;
  border-radius: 12px;
  border: 1px solid #ffffff;
  padding: 16px 20px 16px 16px;
  gap: 8px;
  font-size: 16px;
}

.download-btn button:hover {
  background: #2B3990;
}


@media (max-width: 768px) {
  .specs-container {
    padding: 0 18px;   
  }

  .table-box {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .specs-container {
    padding: 0 16px;  
  }
}


@media (max-width:992px) {
  .specs-container{
    padding: 0 16px;
  }
}
@media (max-width:600px) {
  .specs-container{
    padding: 0 16px;
  }
}




.features {
  text-align: center;
}

.features-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1024px;
  gap: 20px;
margin: 0 auto;
padding: 0 20px ;
align-items: flex-start;
text-align: left;
}
.features-container h2 {
  color: #0d0d0d;
  font-family: Urbanist ,sans-serif;
  margin-top:40px ;
}

.features-container p {
  font-size: 18px;
}
.features-container h2,
.features-container p {
  width: 100%;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  max-width: 1024px; 
  margin-left: auto;
  margin-right: auto;
  width: 100%;
padding: 0 20px;

}

.card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid #cfd1d4;
  box-shadow: 0px 2px 4px 0px #1b1c1d0a;
  gap: 16px;
  padding: 20px;
  background-color: #ffffff;
}

.card h3 {
  width: 100%;
  gap: 16px;
  text-align: start;
  margin-bottom: 10px;
  height: auto;
  font-family: Urbanist,sans-serif;
}

.card p {
  width: 100%;
  color: #535a61;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.6%;
  text-align: start;
  height: auto;
  overflow: hidden;
}

.center-btn {
  margin-top: 20px;
  padding: 16px 24px 16px 24px;
  background-color: #2B3990;

  width: 174px;
  height: 52px;
  border-radius: 12px;
  border: none;
  color: #ffffff;
  display: block;
  margin: 30px auto 0;
  margin-bottom:30px ;
}

.center-btn:hover {
  background-color: #5a6b85;
}
@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr); 
    padding: 0 16px ;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
}



.faq {
background-color: #ffffff;
  padding: 80px 0;
  width: 100%;
}

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

.container h2{
  text-align: left;
  margin-bottom: 25px;
  font-family: Urbanist,sans-serif;
  font-size: 40px;
}
.container h2 span{
  color: #2B3990 ;
}


.faq-box {
  /* margin-top: 40px; */

  max-width: 1024px;
  /* margin: 40px auto; */
  margin-top: 20px;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  cursor: pointer;
  font-weight: 600;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 15px;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px;
}

/* ARROW ROTATE */
.arrow {
  transition: transform 0.3s;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .faq {
    padding: 40px 16px; 
  }


  .container h2 {
    width: 100%;
    max-width: 100%;
    height: auto;

    font-size: 26px;
    text-align: left;
  }

  
  .container p {
    width: 100%;
    max-width: 100%;
    height: auto;

    font-size: 14px;
    line-height: 1.5;
  }

  .faq-box {
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
  }

 
  .faq-item {
    width: 100%;
  }

 
  .faq-question span {
    font-size: 14px;
  }
}



.container2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;

  width: 100%;
  max-width: 1024px;
  margin: 40px auto;

  padding: 24px;
  background-color: #f7f8f9;
  border: 1px solid #cfd1d4;
  border-radius: 10px;
  box-shadow: 0px 2px 4px 0px #1b1c1d0a;
}

/* LEFT SIDE */
.container3 {
  flex: 1;
  min-width: 0;
}

.container3 h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 6px;
  text-align: left;
}

.container3 p {
  font-size: 14px;
  color: #6a7077;


  max-width: 100%;
  word-wrap: break-word;
  text-align: left;
}

.container h2,
.container p {
  max-width: 800px;
  width: 100%;
}

/* RIGHT SIDE */
.container4 {
  flex: 1;
  min-width: 0; 

  max-width: 320px;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.container4 input {
  width: 100%;
  padding: 12px;
  border: 1px solid #cfd1d4;
  border-radius: 6px;

  box-sizing: border-box; 
}

.container4 button {
  width: 100%;
  padding: 12px;

  background: #2B3990;
  color: white;
  border: none;
  border-radius: 6px;
}

@media (max-width: 768px) {
  /* MAIN BOX */
  .container2 {
    flex-direction: column; 
    align-items: stretch;
    gap: 20px;

    padding: 20px;
    width: 90%; 
  }

  /* TEXT BLOCK */
  .container3 {
    text-align: left;
  }

  .container3 h3 {
    font-size: 18px;
  }

  .container3 p {
    font-size: 14px;
  }

  /* INPUT + BUTTON */
  .container4 {
    width: 100%; 
    max-width: 100%;
  }

  .container4 input {
    width: 100%;
    padding: 12px;
  }

  .container4 button {
    width: 100%;
    padding: 12px;
  }
}


.applications {
  padding: 80px 0;

  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  border-bottom: 1px solid #e1e3e8;
  gap: 56px;
}

.application-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.app-header {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.app-header-text {
  max-width: 600px;
}

.app-header h2 {
  font-size: 28px;
  font-family: Urbanist,sans-serif;
}

.app-header p {
  color: #666;
  /* max-width: 600px; */
  margin-top: 10px;
}

/* arrows */
.arrows {
  display: flex;
  gap: 10px;
}

.arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
}

/* slider */
.app-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto; 
  scroll-behavior: smooth;
}

.app-slider::-webkit-scrollbar {
  display: none;
}

.application-card {
  min-width: 240px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}
.application-card.active {
  border: 2px solid #5a6b85;
  transform: scale(1.05);
}

.application-card:hover {
  transform: scale(1.05);
}

.application-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.overlay p {
  font-size: 10px;
  opacity: 0.95;
}

/* overlay text */
.overlay {
  position: absolute;
  inset: 0; 

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 16px;
  color: white;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
     rgba(0, 0, 0, 0.45) 40%,
     rgba(0, 0, 0, 0.25) 70%,
    rgba(0, 0, 0, 0.15) 100% 
  );
}




.process {
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.process-container{

 max-width: 1100px;
  width: 100%;
  margin: 0 auto;       
  padding: 0 20px; 

}

.process-wrapper {
  width: 100%;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  margin: 0 auto;
}

.process-text h3 {
  text-align: left;
  margin-bottom: 20px;
  font-family: Urbanist,sans-serif;
}
.process-text p {
  text-align: left;
  margin-bottom:20px ;
}

/* HEADER */
.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  
}

.process-header h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-family: Urbanist,sans-serif;
}

.process-header p {
  color: gray;
}


/* TABS (CONNECTED BUTTON STYLE) */
.tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
}

.tabs::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #d1d5db;
  transform: translateY(-50%);
  z-index: 0;
}

.tabs button {
  position: relative;
  z-index: 1;

  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #ccc;
  background: white;

  font-size: 14px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  white-space: nowrap; 
}

.tabs .active {
  background: #2B3990;
  color: white;
  border-color: #2B3990;
  font-weight: 600;
}


/* CONTENT */
.process-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* TEXT */
.process-text {
  flex: 1;
}

.process-text h3 {
  margin-bottom: 10px;
}

.process-text ul {
  margin-top: 10px;
}

/* IMAGE */
.process-image {
  flex: 1;
  position: relative;
  max-width: 420px;
  width: 100%;
  height: 260px;
}

.process-image img {
  width: 100%;
  border-radius: 12px;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}


/* ARROWS */
.arrow-left,
.arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: white;
  cursor: pointer;
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

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


.process{
  padding: 60px 0;
}
.process-container{
  padding: 0 16px;
}


  .process-wrapper {
    border-radius: 12px;
    padding: 20px;
    width: 90%;
  }

  .process-content {
    flex-direction: column;
    gap: 20px;
  }

  .process-header h2 {
    font-size: 22px;
  }

  
  .tabs {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .tabs::before {
    display: none; 
  }

  .process-image {
    max-width: 100%;
    height: 220px;
  }

  .arrow-left {
    left: 10px;
  }

  .arrow-right {
    right: 10px;
  }
}




.testimonials {
  padding: 100px 0;
 
}

.testimonials-container{
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  font-weight: 700;
  font-family: Urbanist,sans-serif;
  margin-bottom: 12px;


}

.sub {
  color: #6b7280;

  margin-bottom: 50px;
}

.testimonial-grid {
 display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 24px;
  margin-top: 40px;
}

/* CARD */
.testimonial-card {
  background: #F7F8F9;
  padding: 24px;
  border-radius: 16px;
width: 100%;
  

  border: 1px solid #e5e7eb;
  box-shadow: 0px 8px 24px rgba(0,0,0,0.04);

  transition: 0.3s;
  text-align: left;

}

.testimonial-card h3{
  margin-bottom: 10px;
  font-family: Urbanist,sans-serif;
}

.testimonial-card p{
margin-bottom: 5px;

}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* QUOTE */
.quote {
  font-size: 30px;
  color: #2B3990;
  margin-bottom: 10px;
  text-align: left;
}


.testimonial-card p{
  text-align: left;
  font-size: 14px;
}



/* USER */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.user h4 {
  font-size: 14px;
}

.user p {
  font-size: 12px;
  color: #6b7280;
}

/* RESPONSIVE */



/* TABLET */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
}

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




.portfolio {
  padding: 100px 0;
 
}

/* HEADER */
.portfolio-header {

  text-align: center;
  margin-bottom: 50px;

}

.portfolio-header h2 {
  font-family: Urbanist ,sans-serif;
  font-size: 32px;
  margin-bottom: 15px;
  text-align: center;
 
}

.portfolio-header p {
  color: #6b7280;
  text-align: center;
}
.portfolio-card h3{
  font-family: "Urbanist", sans-serif;;
}

/* GRID */
.portfolio-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.portfolio-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  width: 320px;

  border: 1px solid #e5e7eb;
  box-shadow: 0px 8px 24px rgba(0,0,0,0.04);

  transition: 0.3s;
}
.portfolio-card h3{
  text-align: left;
  margin-bottom: 10px;
}
.portfolio-card p{
  text-align: left;
}


.portfolio-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.portfolio-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;

  border-radius: 12px;
  border: 1px solid #e5e7eb;

  margin: 15px 0;
}

/* BUTTON */
.portfolio-card button {
  width: 100%;
  padding: 10px;

  background:#2B3990;
  color: white;
  border: none;
  border-radius: 8px;

  cursor: pointer;
}

/* CTA BOX */
.cta1-box {
  margin-top: 50px;
  padding: 14px 20px;

  border: 1px solid #e5e7eb;
  border-radius: 12px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #f9fafb;

   
}


.cta-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;

}

.cta-text span{
  color: #2B3990;
}

.cta1-box h4 {
  font-family: "Urbanist", sans-serif;

 font-size: 20px;
 margin: 0;

}

.cta1-box p {
  color: #6b7280;
  font-size: 14px;
  margin: 0;
}

.cta1-box button {
  padding: 10px 18px;
  background: #2B3990;
  color: white;
  border: none;
  border-radius: 8px;
}

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

  .portfolio-grid {
    flex-direction: column;
    align-items: center;
  }

  .cta1-box {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .cta1-box button {
    width: 100%;
  }

  .portfolio-container {
    padding: 0 16px;   
  }

 
  .portfolio-header {
    text-align: center;
  }


  .cta1-box {
    width: 100%;
  }


}

@media (min-width: 1024px) {
  .cta1-box {
    max-width: 1020px;   
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}



/* SECTION */
.resources-section {
    width: 100%;
  max-width: 1024px;
  padding: 60px 20px;  
  margin: 0 auto;
}


.header-box {
  /* border: 1px solid #eee; */
  border-radius: 6px;
  /* background: #fff; */
  padding: 40px;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}

.header-box h2 {
  font-size: 30px;
  margin-bottom: 15px;
  font-family: Urbanist ,sans-serif;
}

.header-box p {
  color: #6b7280;
  font-size: 18px;
}

/* DOWNLOAD BOX */
.downloads-box {
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fff;
}

/* ROW */
.dl-row {
  display: flex;
  justify-content: space-between;
  padding: 20px;

}

.dl-row:last-child {
  border-bottom: none;
}

.dl-row:hover {
  background: #f9fafb;
}

/* TEXT */
.dl-name {
  font-size: 14px;
  color: #374151;
}

/* LINK */
.dl-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}


.dl-icon {
  width: 16px;
  height: 16px;
}

.dl-link.downloading {
  color: green;
}

/* TOAST  DIV code */
#dl-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1e40af;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  opacity: 0;
  transition: 0.3s;
}


@media (max-width: 600px) {
  .dl-row {
    flex-direction: column;
    gap: 10px;
  }
}





.cta {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
 
}

/* MAIN BOX */
.cta-container {
  max-width: 1024px;
  width: 100%;
  background: #2B3990;
  border-radius: 16px;
  padding: 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.cta-left {
  flex: 1;
  color: white;
}

.cta-left h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-family: Urbanist,sans-serif;
}

.cta-left p {
  margin-bottom: 20px;
  color: #d1d5db;
}

.cta-left hr {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 20px 0;
}

/* RIGHT FORM */
.cta-right {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 12px;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-right h3 {
  margin-bottom: 10px;
}

/* INPUTS */
.cta-right input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* BUTTON */
.cta-right button {
  padding: 12px;
  background: #111827;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}


@media (max-width: 768px) {

  /* RESOURCES */
  .resource-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* CTA */
  .cta-container {
    flex-direction: column;
    padding: 20px;
  }

  .cta-left h2 {
    font-size: 22px;
  }

  .cta-right {
    width: 100%;
  }
}



/*  for popup in the page  */


.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);

  display: none;  

  justify-content: center;
  align-items: center;

  z-index: 999;
}

/* POPUP BOX */
.popup-box {
  width: 500px;
  height: 340px;
  background: #fff;
  border-radius: 12px;

  display: flex;
  flex-direction: column;
  overflow: hidden;

  box-shadow: 0px 20px 40px rgba(0,0,0,0.15);
}

.popup-header {
  background: #F9FAFB;
  padding: 15px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-header h3 {
  margin: 0;
  font-size: 18px;
}

.close-btn {
  cursor: pointer;
  font-size: 18px;
}

.popup-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup-body input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.popup-footer {
  background: #F9FAFB;
  padding: 15px 20px;

  display: flex;
  justify-content: flex-end;
}

.popup-footer button {
  padding: 10px 18px;
  background: #2B3990;
  color: white;
  border: none;
  border-radius: 8px;
}


.popup-box2 {
  width: 500px;
  height: 310px;
  background: #fff;
  border-radius: 12px;

  display: flex;
  flex-direction: column;
  overflow: hidden;

  box-shadow: 0px 20px 40px rgba(0,0,0,0.15);
}


.popup-body label {
  font-size: 13px;
  color: #555;
  margin-top: 5px;
}




.footer {
  
  padding: 60px 0 20px;
}

.container-last {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;       
  padding: 0 20px;       
}

/* TOP */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;



gap: 20px;
background-color: #FFFFFF;
border-radius:20px ;

border: 1px solid #CFD1D4;

padding: 20px 24px;


}


.footer-top h3{
  font-family: "urbanist", sans-serif;
  text-align: right;
  max-width: 500px;

}

.footer-top h3 span {
  color: #2563a8;
}

/* LINKS GRID */
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  font-family:Inter ;
}





.footer-links h4 {
  margin-bottom: 12px;
font-size: 16px;


}

.footer-links > div{
    display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a{
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-links a,
.footer-links p {


display: flex;
  align-items: center; 
  gap: 8px;

  color: #6b7280;
  font-size: 14px;
  margin-bottom: 8px;


}

.footer-links a:hover {
  color: #2563a8;
}


.footer-links img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}



.footer-top img {
  height: 50px;
}



.bottom {
  width: 100%;
  background: #FFFFFF;  
  border-top: 1px solid #eee;
  margin-top: 40px
}

/* CENTER CONTENT LIKE NAVBAR */
.bottom-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 15px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #535a61;
  gap: 30px;

}

.bottom-container p{
  font-size: 12px;
}


/* LINKS */
.bottom-links {
  display: flex;
  gap: 20px;
}

.bottom-links a {
  text-decoration: none;
  color: #535a61;
  font-size: 12px;
}
 



.social-section hr {
  margin: 15px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}




/* TABLET */
@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

.footer-top h3{
  text-align: left;
}

}

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

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

}


