@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #000;
  color: #fff;
}

/* Navbar-section */

.navbar { 
  background: #000; 
  padding: 25px 25px; 
  height: 100px;
}

/* FLEXBOX ALIGNMENTS */ 
.navbar { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 20px 50px; 
}

/* LOGO */ 
.logo img { 
  height: 45px; 
  padding-left: 40px; 
}

/* NAV CONTAINER */ 
.nav-container { 
  display: flex; 
  align-items: center; 
  gap: 40px; /* space between menu and contact button */ 
} 

/* NAV LINKS */ 
.nav-links { 
  display: flex; 
  align-items: center; 
  list-style: none; 
  padding-right: 150px; 
  gap: 30px; /* equal spacing between all menu items */ 
} 

.nav-links li a { 
  text-decoration: none; 
  color: #fff; 
  font-size: 16px; 
} 

.nav-links li a:hover { 
  color: #cac9c8; 
} 

/* DROPDOWN */ 
.dropdown { 
  position: relative; 
} 

.dropdown-menu { 
  position: absolute; 
  top: 35px; 
  left: 0; 
  background: white; 
  width: 220px; 
  list-style: none; 
  padding: 10px 0; 
  border-radius: 6px; 
  display: none; 
} 

.dropdown-menu li a { 
  padding: 10px 18px; 
  display: block; 
  color: black; 
}

.dropdown:hover .dropdown-menu { 
  display: block; 
}

/* CONTACT BUTTON */ 
.contact-btn { 
  background-color: transparent; 
  color: #fff; 
  border: 1.5px solid #fff; 
  padding: 12px 30px; 
  border-radius: 25px; 
  cursor: pointer; 
  font-size: 16px; 
  text-decoration: none; 
} 

.contact-btn:hover { 
  background-color: #fff; 
  color: #000; 
}

.close-btn {
    display: none;
}



/* MENU ICON DEFAULT */
.menu-icon {
    width: 28px;
    height: 22px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-icon div {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 5px;
}
/* MENU → X TRANSFORM */
.menu-icon.active div:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}
.menu-icon.active div:nth-child(2) {
    opacity: 0;
}
.menu-icon.active div:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}

/* MOBILE NAV PANEL */
.nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: 0.4s ease;
    z-index: 1001;
}

/* PANEL SHOW */
.nav-container.active {
    right: 0;
}




/* Hero Section */
.hero {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at center, #111 0%, #000 100%);
  padding: 45px 0;
}

.hero-content {
  max-width: 100%;
  width: 100%;
}

.hero h1 {
  font-size: 4.7rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}


.hero p {
  font-size: 1.6rem;
  color: #ccc;
  
}

.animate-btn {
  background: transparent;
  border: 1.5px solid #fff;
  border-radius: 20px;
  color: #fff;
  padding: 12px 35px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  font-size: 20px;
}

.animate-btn:hover {
  background: #fff;
  color: #000;
}

/* Animation */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* logo-slider section  */

.logo-slider {
  width: 100%;
  padding: 15px;
  overflow: hidden;
  background: radial-gradient(circle at center, #111 0%, #000 100%);
}

.logo-track {
  display: flex;
  width: calc(220px * 15); 
  animation: scroll 25s linear infinite;
}

.logo-track img {
  width: 120px;
  filter: brightness(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-track img:hover {
  transform: scale(1.1);
  filter: brightness(150%);
}

/* Infinite scroll animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.container {
  width: 80%;
  max-width: 100%;
  padding: 60px 0;
}

.about-header {
  text-align: left;
  margin-bottom: 20px;
}

.about-header h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.about-header p {
  color: #fff;
  font-size: 1.4rem;
}

.about-content {
  margin-top: 20px;
  color: #ddd;
  line-height: 1.8;
  font-size: 1.4rem;
}

.icon {
  font-size: 28px;
  box-sizing: content-box;
  background: transparent;
  border-radius: 12px;
  margin-bottom: 10px;
}

.counter {
  font-size: 40px;
  font-weight: 700;
  display: inline-block;
  color: #f5f5f5;
}

.plus, .percent {
  font-size: 40px;
  font-weight: 700;
  display: inline-block;
  color: #f5f5f5;
}

p {
  opacity: 0.8;
}



.stats {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
}

.stat-item {
  flex: 1 1 200px;
  margin: 10px;
}

.stat-item h3 {
  font-size: 1.8rem;
  color: #fff;
}

.stat-item p {
  color: #f1eeee;
  font-weight: 500;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 0;
    text-align: center;
}

.stat-item h3 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

.stat-item p {
    margin-top: 8px;
    font-size: 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: #111;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  background-color: #000;
}

.card-content h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 8px;
}

.card-content p {
  color: #aaa;
  font-size: 1.rem;
}

/* Background grid lines (like in your image) */
.about-section {
  position: relative;
  background: linear-gradient(#0b0b0b, #0b0b0b);
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* service-section */

.services-section {
  padding: 40px;
  width: 100%;
  background-color: #bbb;
}

.services-section h2{
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #000;
  text-align: center;
}

.sub-text {
  color: #000;
  font-size: 1.3rem;
  margin-bottom: 25px;
  text-align: center;
}

.services-container {
  display: flex;
  gap: 30px;
}

/* LEFT SIDE MENU */
.services-menu {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #444444;
}

.service-btn {
  padding: 14px 10px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  transition: 0.3s;
}

.service-btn:hover,
.service-btn.active {
  color: #000;
  font-weight: 600;
  border-bottom: 2px solid black;
}

/* RIGHT BOX */
.service-content {
  flex: 2;
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 8px;
  min-height: 450px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: 0.4s;
  opacity: 1;
}

.service-content #serviceTitle {
  padding-top: 15px;
  text-align: left;
}

.service-content.fade {
  opacity: 0;
}

.service-content img {
  width: 100%;
  height: 300px;
}

.service-content #serviceList li {
  text-decoration: underline;
}
.meeting-btn {
  padding: 12px 20px;
  background-color: transparent;
  color: #000;
  border: 1.5px solid #000;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 50px;
}

.meeting-btn:hover {
  background: black;
  color: #fff;
  border: 1.5px solid #fff;
}




/* RESPONSIVE */
@media screen and (max-width: 820px) {
  .services-container {
    flex-direction: column;
  }
}


/* technology-section */
.container-part {
      display: flex;
      min-height: 80%;
      flex-wrap: wrap;
      padding: 50px 80px;
      gap: 30px;
      background-color: #000;
    }

    /* Sidebar */
    .sidebar {
      flex: 1 1 200px;
      max-width: 250px;
      padding-left: 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      position: relative;
    }

    .sidebar h2 {
      font-size: 2.2rem;
      margin-bottom: 10px;
      display: inline;
      color: #fff;
    }

    .sidebar p {
      font-size: 1rem;
      color: #ccc;
      margin-bottom: 40px;
    }

    .tabs {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .tab {
      font-size: 1.1rem;
      color: #bbb;
      cursor: pointer;
      position: relative;
      transition: all 0.3s ease;
    }

    .tab.active {
      color: #fff;
      font-weight: 600;
    }

    .tab.active::before {
      content: "";
      position: absolute;
      left: -20px;
      top: 50%;
      transform: translateY(-50%);
      width: 2px;
      height: 100%;
      background: #fff;
    }

    /* Content section */
    .content {
      flex: 3 1 900px;
      max-width: 100%;
      background: #1a1a1a;
      padding: 20px;
      margin: 15px;
      margin-top: 50px;
      display: none;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      gap: 30px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .content.active {
      display: flex;
      opacity: 1;
      transform: translateY(0);
    }

    .text-section {
      flex: 2;
      width: 100%;
    }

    .text-section h3 {
      font-size: 1.7rem;
      margin-bottom: 10px;
      color: #fff;
    }

    .text-section p {
      font-size: 1rem;
      color: #aaa;
      margin-bottom: 30px;
      max-width: 600px;
    }

    .tech-icons {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }

    .tech-icons div {
      text-align: center;
      font-size: 0.9rem;
      color: #ccc;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .tech-icons div:hover {
      transform: translateY(-5px);
      color: #fff;
    }

    .image-section {
      flex: 1;
      text-align: center;
    }

    .image-section img {
      width: 100%;
      max-width: 320px;
    }

    .hire-btn {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 20px;
      background-color: transparent;
      border: 1.5px solid #fff;
      color: #fff;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .hire-btn:hover {
      background: #fff;
      color: #000;
      transform: scale(1.05);
    }



/* contact-section */
.contact-container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 40px;
      padding: 60px;
      background-color: #f3f3f3ec;
    }

    /* Left section */
    .contact-left {
      flex: 1 1 45%;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .contact-left h2 {
      font-size: 2.5rem;
      font-weight: 500;
      color: #000;
    }

    .contact-left h4 {
      font-size: 1.3rem;
      font-weight: 500;
      line-height: 1.2;
      color: #000;
    }

    .contact-left p {
      color: #555;
      font-size: 1.3rem;
      max-width: 90%;
    }

    .google-review {
      display: flex;
      align-items: center;
      gap: 10px;

    }

    .google-review img {
      width: 180px;
      height: auto;
      margin-top: 40px;
      margin-bottom: 30px;
    }

    .social-section {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .social-section p {
      font-weight: 600;
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icons a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 42px;
      height: 42px;
      background: #000;
      color: #fff;
      border-radius: 50%;
      font-size: 16px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-icons a:hover {
      color: #fff;
      position: pointer;
    }

    /* Right section form */

    .successBox {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 9999;
}

.success-card {
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 350px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.success-card .icon {
    background: #daf7e3;
    color: #2ecc71;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: auto;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}



    .contact-right {
      flex: 1 1 45%;
      background: #fff;
      color: #000;
      padding: 50px;
      box-shadow: 0 0 15px rgba(0,0,0,0.08);
    }

    .contact-right h3 {
      font-size: 1.3rem;
      font-weight: 500;
      padding-bottom: 20px;
      margin-bottom: 25px;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    form label {
      font-weight: 500;
      font-size: 1.2rem;
    }

    form input,
    form textarea {
      width: 100%;
      padding: 10px;
      border: none;
      border-bottom: 1px solid #aaa;
      font-size: 1.2rem;
      background: transparent;
      outline: none;
      transition: 0.3s ease;
    }

    form input:focus,
    form textarea:focus {
      border-bottom: 1px solid #000;
    }

    .phone-group {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .phone-group span {
      background: #f1f1f1;
      padding: 6px 12px;
      border-radius: 5px;
    }

    form textarea {
      min-height: 90px;
      resize: none;
    }

    form button {
      margin-top: 15px;
      background: black;
      color: #fff;
      border: 1.5px solid #000;
      padding: 12px 25px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 250px;
  
    }

    form button:hover {
      color: #000;
      background-color: #fff;
    }

 .phone-group {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  padding: 8px 0;
  margin-bottom: 20px;
  position: relative;
  overflow: visible !important;
}

/* Country select dropdown */

.country-select img {
  width: 20px;
}

.country-select {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}

.country-list {
    position: absolute;
    top: 45px;
    left: 0;
    width: 160px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0;
    display: none;
    list-style: none;
    z-index: 9999;
}

.country-list.show {
    display: block;
}


.country-list li {
    padding: 8px 12px;
    cursor: pointer;
}

.country-list li:hover {
    background: #f2f2f2;
}

.country-select {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #ddd;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    background: #fff;
}


/* Phone input */
.phone-group input {
  border: none;
  outline: none;
  flex: 1;
  padding-left: 10px;
  font-size: 15px;
}


/* industry-section */

.industries-section {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
}

.industries-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
}

.subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 20px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.industry-box img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.industry-box img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.industry-box p {
    margin-top: 8px;
    font-size: 14px;
    color: #111;
}

/* work-section */

.work-process {
    width: 100%;
    max-width: 100%;
    padding: 50px;
}

.work-process h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
}

.subtitle {
    color: #000;
    margin-bottom: 35px;
    font-size: 22px;
}

/* GRID LAYOUT EXACT SAME */
.box-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 100%;
}

/* Box styling EXACT same */
.box {
    background: #ffffff;
    border: 1px solid #e3e3e3;
    padding: 30px;
    border-radius: 6px;
    transition: 0.3s ease;
    width: 400px;
}

.box:hover {
    background-color: #fab6f4;
    color: #fff;
}

/* Number (01 —) style */
.box h3 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
}

.box h3 span {
    font-size: 34px;
    font-weight: 600;
}

/* Title */
.box h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Description */
.box p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}


/*portfolio-Section */
.portfolio-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px 80px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

/* Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 25px;
}

/* Cards */
.portfolio-card {
    background: #fff;
    width: 550px;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    position: relative;
    transition: 0.3s ease;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Tags */
.tags {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.tags span {
    background: #f5f5f5;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 6px;
}

/* Title */
.project-title {
    font-size: 20px;
    color: #222;
    margin: 10px 0;
    text-align: left;
}

/* Description */
.project-desc {
    font-size: 14px;
    color: #595959;
    margin-bottom: 15px;
    text-align: left;
}

/* Image */
.project-img {
    width: 120px;
    height: auto;
    border-radius: 10px;
    margin-left: 330px;
    left: 0;
}

/* View Project Link */
.view-project {
    color: #ff8c00;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    margin-right: 350px;
}

.view-project:hover {
    text-decoration: underline;
}

/* Bottom Button */
.center-button {
    margin-top: 30px;
}

.more-btn {
    background: #1b2735;
    color: white;
    padding: 12px 28px;
    font-size: 14px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}


.more-btn:hover {
    background: #10202c;
}




/* Testimonial-section */
.testimonial-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #d0cdcd;
}

.main-title {
    font-size: 46px;
    font-weight: 800;
}

.subtitle {
    font-size: 17px;
    color: #000;
    margin-top: 8px;
}

/* ------------------------ */
/* SLIDER BASE */
/* ------------------------ */
.testimonial-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.slider-window {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 25px;
    transition: transform 0.45s ease;
}

/* ------------------------ */
/* CARD */
/* ------------------------ */
.testimonial-card {
    min-width: 100%;   /* Default → 1 slide */
    padding: 35px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: left;
    transition: 0.3s ease;
}

.quote-icon {
    font-size: 34px;
    color: #ff8a00;
}

.client-data {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

.client-data img {
    width: 75px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

/* ------------------------ */
/* ARROWS */
/* ------------------------ */
.arrow-btn {
    width: 46px;
    height: 46px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    font-size: 22px;
    transition: 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.arrow-btn:hover {
    background: #f1f1f1;
}

.prev { left: 10px; }
.next { right: 10px; }

.testimonial-card {
    min-width: 100%;
}

/* Tablet (>= 768px) → 2 cards */
@media (min-width: 768px) {
    .testimonial-card {
        min-width: calc(50% - 12px);
    }
}

/* Desktop (>= 1024px) → 3 cards */
@media (min-width: 1024px) {
    .testimonial-card {
        min-width: calc(33.333% - 17px);
    }
}


/* blog-section */

.blogs-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
    padding: 60px;
}

.title {
  text-align: center;
  margin-top: 20px;
}

.subtitle {
    color: #505050;
    text-align: center;

}

.filter-buttons {
    display: flex;
    gap: 12px;
    margin: 20px 0 30px;
    margin-left: 340px;
}

.filter-btn:hover {
    background-color: #a5a3a3;
    color: #000;
    cursor: pointer;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    background: #f1f1f1;
    font-size: 15px;
    transition: 0.3s;
}

.filter-btn.active {
    background: #ff7c23;
    color: #fff;
}


.blog-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.blog-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.blog-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-box .content1 {
    padding: 18px;
}

.read-btn {
    padding: 5px 12px;
    border-radius: 5px;
    top: 10px;
    bottom: 10px;
    cursor: pointer;
}

.read-btn:active {
    transform: 0.3s ease;
}

.blog-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.blog-box p {
    color: #555;
    font-size: 15px;
}



.close-btn {
    font-size: 30px;
    cursor: pointer;
    float: right;
}

#panelTitle {
    color: #000;
    margin-bottom: 10px;
    border-bottom: 2px solid #474747;
}

.panel-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}


.container {
    display: flex;
    gap: 20px;
    padding: 20px;
}

/* Blog List */
.blog-list {
    width: 60%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.blog-box {
    padding: 20px;
    background: #f3f3f3;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.blog-box:hover {
    background: #e8e8e8;
}


/* cta-section */
.cta-section {
  background-color: #dfdddd;
}

.cta {
            text-align: center;
            padding: 80px 20px;
            font-weight: 500;
            color: rgb(93, 91, 91);
        }

          .cta-section h2 {
              font-size: 42px;
              font-weight: 700;
              margin-bottom: 15px;
          }

          .cta-section p {
              font-size: 18px;
              margin-bottom: 35px;
              color: #000;
          }

          .cta-buttons {
              display: flex;
              justify-content: center;
              gap: 20px;
              flex-wrap: wrap;
          }

          .btn-orange {
              background-color: #ff8500;
              color: white;
              padding: 14px 28px;
              border-radius: 30px;
              text-decoration: none;
              font-size: 16px;
              font-weight: 600;
              transition: 0.3s;
          }

          .btn-orange:hover {
              background-color: #e87300;
              border: 2px solid #fff;
          }

          .btn-dark {
              background-color: #2c5468;
              color: white;
              padding: 14px 28px;
              border-radius: 30px;
              text-decoration: none;
              font-size: 16px;
              font-weight: 600;
              transition: 0.3s;
          }

          .btn-dark:hover {
              background-color: #1e3e4d;
          }




/* Footer Section */
.new-footer {
    width: 100%;
    padding: 60px 30px;
    background: #000;
    color: #a5a3a3;
    font-family: "Poppins", sans-serif;
}

.footer-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

.footer-info p {
    font-size: 16px;
    margin-bottom: 8px;
}

.footer-info a {
    color: #a5a3a3;       /* your footer theme अनुसार बदलो */
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
    color: #fff
}


.footer-info i {
    color: #fff;
    margin-right: 7px;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-left: 28px;
    text-align: left;
    justify-content: flex-start;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
    padding: 5px;
}

.footer-col ul li:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: 0.8;
}

.bottom-left a {
    margin-right: 20px;
    font-size: 13px;
    color: #a5a3a3;
}

.footer-socials a i {
    font-size: 22px;
    color: #fff;
    margin-right: 12px;
    transition: 0.3s;
}
.footer-socials a i:hover {
    color: #a5a3a3;
}

.footer-socials i {
    font-size: 18px;
    margin-left: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-socials i:hover {
    color: #fff;
}


.menu-icon {
    width: 35px;
    height: 28px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-icon div {
    width: 100%;
    height: 4px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
}

/* MENU ICON ACTIVE ANIMATION */
.menu-icon.active div:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}

.menu-icon.active div:nth-child(2) {
    opacity: 0;
}

.menu-icon.active div:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}







