* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /*font-family: 'Inter', sans-serif;*/
  background-color: #fff;
  padding: 0;
  margin: 0;
  
  cursor: url('./img/cursor.png') 16 16, auto;
}

 


/* ------------------ HERO SECTION ------------------ */
.hero-section {
  position: relative;
  background: url('./img/Home_Banner-01.png') no-repeat center center / cover;
   /*height: 600px */
  padding:  50px 100px 60px 100px;

  color: white;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  /*display: flex;*/
  /*flex-direction: column;*/
  /*justify-content: space-between;*/
  overflow: visible; 
}

/* Approximate 80% zoom: viewport looks wider */
@media (min-width: 1600px) {
  .hero-section {
    /*padding: 50px 100px 150px 100px; */
  }
  
  .hero-content {
       margin:145px 40px!important;
  }
}

/* Approximate 100% zoom: normal desktop width */
@media (max-width: 1400px) {
  .hero-section {
    padding: 50px 100px 60px 100px; 
  }
  
  .hero-content {
      margin:88px 20px!important;
  }
  
  .feature-chips {
  position: absolute;
  bottom: -10px;  
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px!important;
  width: 100%;
  padding: 20px 40px;
  border-radius: 0 0 20px 20px;
  z-index: 10;
  /*max-width: 1100px;*/
}


.chip {
  background: linear-gradient(to bottom, rgba(255,255,255,0.08) 10%, rgba(20,20,20,0.9) 90%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 13px!important;
  border-radius: 16px;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content:space-evenly;
  gap: 35px!important;
  font-size: 14px!important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  width: 180px!important;
}

}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  font-weight: 800;
  font-size: 24px;
  margin-top:10px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #f16521;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.cta-btn {
  background: linear-gradient(90deg, #ff5e00, #ff8800);
  border: none;
  color: white;
  padding: 15px 27px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #d75512;
}

/* Hero Content */
.hero-content {
  /*margin-top: 50px;*/
  /*margin-bottom: 50px;*/
 margin:115px 40px;
}

.hero-content h1 {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 2px;
  word-spacing: 3px;
}

.hero-content h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 2px;
  word-spacing: 3px;
}

.hero-content p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 25px; 
}

.feature-chips {
  position: absolute;
  bottom: -10px;  
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding: 20px 40px;
  border-radius: 0 0 20px 20px;
  z-index: 10;
  /*max-width: 1100px;*/
}


.chip {
  background: linear-gradient(to bottom, rgba(255,255,255,0.08) 10%, rgba(20,20,20,0.9) 90%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 15px;
  border-radius: 16px;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content:space-evenly;
  gap: 50px;
  font-size: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  width: 200px;
}

.chip i {
  color: #f16521;
  font-size: 20px;
}


.chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.welcome-section {
  background: white;
  /*margin: 0 150px;*/
  margin:auto;
  width:75%;
  padding: 40px;
  border-radius:30px;
  /*border-bottom-left-radius: 30px;*/
  /*border-bottom-right-radius: 30px;*/
  /*box-shadow: 0 8px 20px rgba(122, 122, 122, 0.4);*/
  position: relative;
  z-index: 2;
  
}

.welcome-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  
  
  
}

.welcome-left {
  flex: 1 1 550px;
}

.welcome-left h2 {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ff6f00;
}

.welcome-left p {
  font-size: 15px;
  line-height: 1.6;
  color: #535252;
  margin-bottom: 15px;
  text-align:justify;
}

.welcome-right {
  flex: 1 250px;
  text-align: center;
}

.welcome-right img {
  width: 75%;
  height: auto;
}


.feature-grid-section {
  background: #f6f9fc;
  padding: 200px 160px 40px;
  text-align: left;
  position: relative;
  z-index: 1;
  /*top: -150px;*/
  margin-top:-150px;
  
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  /*max-width: 1000px;*/
  margin: 0 auto 50px;
}

@media (min-width: 1600px) {
 .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  /*max-width: 1000px;*/
  margin: 0 auto 50px;
}

}





/* Approximate 100% zoom: normal desktop width */
@media (max-width: 1400px) {
  .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  /*max-width: 1000px;*/
  margin: 0 auto 50px;
}

}

.feature-card {
  background: #fff;
  padding: 30px 20px;
  border-bottom: 3px solid #e6e6e6;
  /*border-radius: 8px;*/
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.06);
}

.feature-card i {
  font-size: 30px;
  color: #f16521;
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
}

.know-more-container {
  text-align: center;
}

.know-more-btn {
  background: #f16521;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.know-more-btn:hover {
  background: #e25413;
}


/* Call-to-Action Box Above Footer */
.footer-cta {
  background: linear-gradient(90deg, #22052b, #00a98e);
  color: white;
  padding: 40px 20px;
  margin: 60px auto -40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  max-width: 1100px;
  /* border-radius: 1; */
  position: relative;
  z-index: 5;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0px 40px;
}

.cta-text h2 {
  font-size: 24px;
  font-weight: bold;
}

.cta-text p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.cta-button {
  background-color: #f16521;
  padding: 12px 25px;
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #e1530c;
}

/* Footer Main */
.site-footer {
  background: url(./img/Home_Footer.png);
  color: white;
  padding: 50px 0px 0px;
  position: relative;
  z-index: 1;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 30px 100px;
}

.footer-left {
  max-width: 450px;
}

.footer-logo {
  width: 140px;
  /* margin-bottom: 20px; */
  margin-left: -15px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials a {
  display: inline-block;
  background: white;
  color: #032c76;
  margin-right: 10px;
  padding: 10px;
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #f16521;
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 60px;
  margin-top: 30px;
}

.footer-links h4 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: white;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-links ul li a.active {
  color: #f16521;
}

.footer-bottom {
  display: flex;
  text-align: center;
  font-size: 13px;
  color: #ccc;
  padding: 15px 20px;
  background-color: #031b3b; /* Darker footer strip */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  margin: 0;
  justify-content: center;
  gap: 250px;
}

.footer{
    padding: 0;
    margin: 0;
}

.codly-action {
  background: white;
  padding: 10px 0px;
  /*top: -100px;*/
  position: relative;
  margin: 0;
}

.codly-action .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  /*gap: 30px;*/
}
.action-text {
  flex: 1 1 50%;
  max-width: 600px;
}

.action-text h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.action-text p {
  font-size: 16px;
  color: #555;
}

.action-image {
  flex: 1 1;
}

.action-image img {
  width: 100%;
  /*max-width: 500px;*/
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: auto;
  display: block;
}

.hero-section .container{
      max-width: 80%;
  margin: auto;
}
.container {
    /*margin-top: 30px;*/
  
  max-width: 70%;
  margin: auto;

  }


@media (max-width: 1024px) {
  .codly-action {
    padding: 40px 60px;
  }

  .action-text h2 {
    font-size: 26px;
  }

  .action-text p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
    
    
    .container {
    /*margin-top: 30px;*/
  
  max-width: 100%;
  margin: auto;

  }
  
    .welcome-section {
        width:100%!important;
    }
  .codly-action {
    padding: 40px 30px;
  }

  .codly-action .row {
    flex-direction: column-reverse;
    text-align: center;
  }

  .action-text, .action-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .action-text h2 {
    font-size: 22px;
  }

  .action-text p {
    font-size: 14px;
  }

  .action-image img {
    max-width: 100%;
  }

}

@media (max-width: 480px) {
  .codly-action {
    padding: 0 20px;
    /*top: -140px;*/
    margin-top: 10px;
  }

  .action-text h2 {
    font-size: 20px;
  }

  .action-text p {
    font-size: 13px;
  }
  .container {
    margin-top: 5px;
  }
}


.framework-image {
  margin-top: 60px;
  text-align: center;
  border: 2px solid rgb(233, 230, 230);
  padding: 40px;
  border-radius: 10px;
  background: url(./img/Picture1.jpg) no-repeat center center / cover;
}

.framework-image img {
  max-width: 100%;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.btn-center {
  margin-top: 20px;
}

.btn-orange {
  background-color: #f26522;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-orange:hover {
  background-color: #d45217;
}

@media (max-width: 768px) {
  .action-text, .action-image {
    flex: 1 1 100%;
    text-align: center;
  }

  .action-text h2 {
    font-size: 22px;
  }
}

/* ----------------------------------------------- */
.container2 {
  text-align: center;
  padding: 10px;
  position: relative;
}
.users {
  /* background: #444; */
  color: white;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}
.main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 20px 0;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.column {
  flex: 1;
  padding: 20px;
  border-radius: 10px;
}
.studio {
  flex: 1;
  background-color: #93E2FF;
}
.codly {
  flex: 1.5;
  background: #FAC6A6;
  border: 1px solid #ccc;
  align-items: stretch;
}
.codly-bar {
 background: linear-gradient(90deg, #00c3a5, #00aaff, #ff6500);
  color: white;
  font-weight: 600;
  padding: 10px;
  border-radius: 30px;
  margin-bottom: 10px;
}
.supervisor {
  background: white;
  padding: 10px;
  font-weight: 600;
  margin: 5px 0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.agents {
  display: flex;
  justify-content: space-around;
}

.agent-card {
  background: #e0f7e0;
  padding: 15px;
  border-radius: 12px;
  width: 30%;
  font-weight: 600;
  position: relative;
}

.agent-card .sub-card {
  margin-top: 10px;
  background: #fff;
  padding: 5px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.governance {
  background-color: #F6CBEC;
}

.card {
  background: white;
  padding: 10px;
  margin: 10px 0;
  border-radius: 10px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.bottom {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  gap: 20px;
}

.bottom div {
  background: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
}

/* Arrow Styles */
.arrow {
  position: absolute;
  width: 0;
  height: 0;
  z-index: 1;
}

.arrow.down {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid #555;
}

.arrow.right {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #555;
}

.arrow.left {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 10px solid #555;
}
.agent-glow-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.agent-glow-card {
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.green-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #00c896, #006644);
  box-shadow:
    0 0 0 3px rgba(0, 200, 150, 0.2),
    0 0 12px 4px rgba(0, 200, 150, 0.4),
    0 0 25px rgba(0, 200, 150, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  overflow: hidden;
}

.green-circle img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.agent-label {
  font-size: 10px;
  font-weight: 400;
  margin-bottom: 6px;
  color: black;
}

.mini-chip {
  background: white;
  color: #1a1a1a;
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 8px;
  margin-top: 5px;
  font-weight: 500;
}

.section7{
  background: #f5f6f8;
  padding: 200px 280px 40px;
  text-align: left;
  position: relative;
  z-index: 1;
 
}

.use-cases {
  padding: 80px 20px;
  background: #f6f9fc;
  text-align: center;
}

.section-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 50px;
  color: rgb(255, 115, 0);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  /*max-width: 1100px;*/
  margin: 0 auto;
}

.use-case-card {
  background: white;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align:left;
}

.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
  /*width: 80px;*/
  /*height: 80px;*/
  /*border-radius: 50%;*/
  /*background: #e6f7f4;*/
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: center;*/
  margin: 0 auto 30px;
  /*overflow: hidden;*/
  
}

.use-case-icon img {
  width: 30%;
  height: 30%;
  object-fit: contain;
  
}

.use-case-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.use-case-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
svg {
	width: 50px;
	height: auto;
}

.arrow-icon {
	path:nth-child(2) {
		d: path('M14.5 4H3.5H4');
	}
	
	path {
		transition: 0.25s ease;
	}
	
	&:hover {
		path:nth-child(1) {
			d: path('M15 4H4V4');
		}
		
		path:nth-child(2) {
			d: path('M14.5 4H3.5H0');
			transform: translateX(4px);
		}
		
		path:nth-child(3) {
			transform: translateX(4px);
		}
	}
}


.circle-container {
  width: 200px;
  text-align: center;
  position: relative;
}

.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #ccc;
  border: 10px solid #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  /*margin: 0 auto 10px;*/
  margin:auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.circle img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}



.arrow-up, .arrow-down {
  width: 100%;
  text-align: center;
  font-size: 20px;
  color: #666;
  /* margin: 10px 0; */
}

.text {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.green { background-color: #168561; }
.blue { background-color: #115193; }
.orange { background-color: #f47c2c; }
.gray { background-color: #3e3e3e; }
.purple { background-color: #9c27b0; }
.lightblue { background-color: #3399ff; }

/*.circle-container:nth-child(1) { top: 24px; left: 0.10%; }*/
/*.circle-container:nth-child(2) { top: -10px; left: 0.6%; }*/
/*.circle-container:nth-child(3) { top: 24px; left: 0.3%; }*/
/*.circle-container:nth-child(4) { top: -10px; left: 0%; }*/
/*.circle-container:nth-child(5) { top: 24px; right: 0.3%; }*/
/*.circle-container:nth-child(6) { top: 29px; right: 0.5%; }*/


.circle-container:nth-child(1) { top: 10px; left: 1.3%; }
.circle-container:nth-child(2) { top: 10px; left: 0.6%; }
.circle-container:nth-child(3) { top: 10px; left: 0.3%; }
.circle-container:nth-child(4) { top: 10px; left: 0%; }
.circle-container:nth-child(5) { top: 10px; right: 0.3%; }
.circle-container:nth-child(6) { top: 29px; right: 1%; }


.arrow-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.arrow-down i {
  font-size: 18px;
  margin: -13px auto; 
  color: gray; /* Change based on background */
  animation: bounce 1.5s infinite;
}

.arrow-down div:nth-child(2) i {
  animation-delay: 0.2s;
}

.arrow-down div:nth-child(3) i {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(5px); opacity: 1; }
}


.arrow-up {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 10px;
}

.arrow-up i {
  font-size: 18px;
  margin: -13px auto;
  animation: bounce-up 1.5s infinite;
}

.arrow-up i:nth-child(2) {
  animation-delay: 0.2s;
}

.arrow-up i:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce-up {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-4px); opacity: 1; }
}


@media (max-width: 768px) {
    
    .codly-flow-img{
        margin-top:100px;
    }
  .feature-grid,
  .use-case-grid,
  .framework-image {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}


@media (max-width: 768px) {
  .feature-grid-section,
  .section7 {
    padding: 180px 30px 40px;
  }

  .hero-section {
    padding: 20px 30px 60px;
    height: auto;
  }

  .welcome-section {
    /*margin: 40px 20px 20px;*/
    padding: 30px;
  }
  .cta-content{
    padding: 10px;
  }
  .cta-text p {
    margin-bottom: 20px;
    text-align: left;
  }
  .footer-container{
    padding: 0 20px;
  }
  .footer-bottom{
    display: block;
  }
}
html {
  scroll-behavior: smooth;
}


/* --------------------- Responsive: Tablets --------------------- */
@media (max-width: 1024px) {
  .hero-section {
    padding: 10px 50px 30px;
  }

  .hero-content h1 {
    font-size: 36px;
    word-spacing: 4px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .nav-links {
    gap: 20px;
  }

  .feature-chips {
    width: 90%;
    gap: 15px;
    padding: 15px 30px;
  }

  .chip {
    width: 160px;
    font-size: 11px;
    padding: 12px;
  }
  .footer-cta{
    margin: 20px 40px -30px;
    padding: 20px;
  }
  .cta-content .cta-button{
    margin-right: 0 !important;
  }
}

/* --------------------- Responsive: Mobile --------------------- */
@media (max-width: 768px) {
  .navbar {
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 15px;
  }

  .nav-right {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 15px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .cta-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero-content {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 28px!important;
    letter-spacing: 1px;
    word-spacing: 3px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .feature-chips {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    width: 90%;
    position: relative;
  }

  .chip {
    width: 100%;
    justify-content: center;
    font-size: 13px;
  }

  .welcome-section {
    /*margin: 0 20px;*/
    padding: 25px;
  }
}

/* --------------------- Small Devices (under 480px) --------------------- */
@media (max-width: 480px) {
  .hero-section {
    padding: 10px 20px 30px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .chip {
    font-size: 12px;
    padding: 10px;
  }
}
    /* Hamburger Button */
.hamburger {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 250px;
  height: 100%;
  background-color: #031b3b;
  color: white;
  transition: right 0.3s ease;
  z-index: 9999;
  padding: 20px 20px;
}

/* Show Sidebar */
.sidebar.open {
  right: 0;
}

/* Sidebar Links */
.sidebar-links {
  list-style: none;
  padding: 0;
}

.sidebar-links li {
  margin-bottom: 20px;
}

.sidebar-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.sidebar-links a:hover {
  color: #f16521;
}
.sidebar-logos {
  display: flex;
  flex-direction: row; /* or row if side-by-side */
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-top: 20px;
}

.sidebar-logo {
  width: 120px; /* adjust as needed */
  height: auto;
}

@media (max-width: 768px) {
  .nav-right {
    display: none;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 25px;
    right: 30px;
  }
  .sidebar-links li:hover {
  color: #f16521;
}
.hero-section{
    padding: 20px;
}
.about-section{
    padding: 20px;
}
.hero-content{
    text-align: center;
} 
}
.about2 p{
    max-width: 750px;
}

@media (max-width: 1024px) {
  .main {
    flex-direction: column;
    align-items: center;
  }
  .column {
    width: 100%;
    padding: 10px;
  }
  .agents {
    flex-direction: column;
    align-items: center;
  }
  .agent-glow-container {
    justify-content: center;
  }
  .bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .action-text h2 {
    font-size: 24px;
  }
  .action-text p {
    font-size: 14px;
  }
  .codly-bar, .supervisor, .card, .mini-chip {
    font-size: 14px;
  }
  .framework-image {
    padding: 20px;
  }
  .bottom {
    margin-left: 0 !important; /* Hide arrows on mobile for better readability */
  }
}

@media (max-width: 480px) {
  .green-circle {
    width: 30px;
    height: 30px;
  }
  .agent-label {
    font-size: 9px;
  }
  .bottom {
    flex-direction: column;
    gap: 10px;
  }
  
}
.mobile-hidden {
  display: block;
}

.desktop-hidden {
  display: none;
}
@media (max-width: 768px) {
  .mobile-hidden {
    display: none;
  }

  .desktop-hidden {
    display: block;
    width: calc(100% - 40px); 
    height: auto;
    margin: -80px 20px 20px 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
  }
  
}
.feature-card,
.know-more-btn {
  position: relative;
  z-index: 2;
}
.card__grid-effect {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(10, 1fr);
}
.card__grid-effect-tile {
  position: relative;
}
.card__grid-effect-tile:before {
  content: "";
  color: #FAC6A6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0.2rem;
  width: 0.2rem;
  border-radius: 50%;
  background: #FAC6A6;
  transition: 500ms linear all;
  box-shadow: 0 0 0, 3rem 0 0 -0.3rem , -3rem 0 0 -0.3rem , 0 -3rem 0 -0.3rem , 0 3rem 0 -0.3rem, 3rem 3rem 0 -0.45rem , 3rem -3rem 0 -0.45rem , -3rem 3rem 0 -0.45rem , -3rem -3rem 0 -0.45rem, 3rem 6rem 0 -0.9rem , 3rem -6rem 0 -0.9rem , -3rem 6rem 0 -0.9rem , -3rem -6rem 0 -0.9rem, 3rem 9rem 0 -1.35rem , 3rem -9rem 0 -1.35rem , -3rem 9rem 0 -1.35rem , -3rem -9rem 0 -1.35rem, 3rem 12rem 0 -1.8rem , 3rem -12rem 0 -1.8rem , -3rem 12rem 0 -1.8rem , -3rem -12rem 0 -1.8rem, 6rem 0 0 -0.6rem , -6rem 0 0 -0.6rem , 0 -6rem 0 -0.6rem , 0 6rem 0 -0.6rem, 6rem 3rem 0 -0.9rem , 6rem -3rem 0 -0.9rem , -6rem 3rem 0 -0.9rem , -6rem -3rem 0 -0.9rem, 6rem 6rem 0 -1.8rem , 6rem -6rem 0 -1.8rem , -6rem 6rem 0 -1.8rem , -6rem -6rem 0 -1.8rem, 6rem 9rem 0 -2.7rem , 6rem -9rem 0 -2.7rem , -6rem 9rem 0 -2.7rem , -6rem -9rem 0 -2.7rem, 6rem 12rem 0 -3.6rem , 6rem -12rem 0 -3.6rem , -6rem 12rem 0 -3.6rem , -6rem -12rem 0 -3.6rem, 9rem 0 0 -0.9rem , -9rem 0 0 -0.9rem , 0 -9rem 0 -0.9rem , 0 9rem 0 -0.9rem, 9rem 3rem 0 -1.35rem , 9rem -3rem 0 -1.35rem , -9rem 3rem 0 -1.35rem , -9rem -3rem 0 -1.35rem, 9rem 6rem 0 -2.7rem , 9rem -6rem 0 -2.7rem , -9rem 6rem 0 -2.7rem , -9rem -6rem 0 -2.7rem, 9rem 9rem 0 -4.05rem , 9rem -9rem 0 -4.05rem , -9rem 9rem 0 -4.05rem , -9rem -9rem 0 -4.05rem, 9rem 12rem 0 -5.4rem , 9rem -12rem 0 -5.4rem , -9rem 12rem 0 -5.4rem , -9rem -12rem 0 -5.4rem, 12rem 0 0 -1.2rem , -12rem 0 0 -1.2rem , 0 -12rem 0 -1.2rem , 0 12rem 0 -1.2rem, 12rem 3rem 0 -1.8rem , 12rem -3rem 0 -1.8rem , -12rem 3rem 0 -1.8rem , -12rem -3rem 0 -1.8rem, 12rem 6rem 0 -3.6rem , 12rem -6rem 0 -3.6rem , -12rem 6rem 0 -3.6rem , -12rem -6rem 0 -3.6rem, 12rem 9rem 0 -5.4rem , 12rem -9rem 0 -5.4rem , -12rem 9rem 0 -5.4rem , -12rem -9rem 0 -5.4rem, 12rem 12rem 0 -7.2rem , 12rem -12rem 0 -7.2rem , -12rem 12rem 0 -7.2rem , -12rem -12rem 0 -7.2rem;
}
.card__grid-effect-tile:hover:before {
  height: 2rem;
  width: 2rem;
  transition: 70ms linear all;
}
.user-card {
  display: flex;
  align-items: center;
  background: #3d3d3d;
  color: #fff;
  /* padding: 20px 30px; */
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  width: min-content;
  gap: 0px;
  margin: 0;
  padding: 5px;
  position: relative;
}

.icon-circle {
  background: #c4c4c4;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform: translateX(-20px);
  /* position: relative; */
}

.icon-circle img {
  width: 70%;
  height: auto;
}

.card-label {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
.column .card,
  .agent-glow-card,
  .mini-chip,
  .codly-bar,
  .supervisor,
  .bottom div {
    transition: all 0.4s ease-in-out;
  }

  /* === Hover Effects === */
  .column .card:hover,
  .green-circle:hover,
  .mini-chip:hover,
  .bottom div:hover,
  .supervisor:hover{
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
  }

  .green-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  /* === Floating Bubble Effect on Hover === */
  .agent-glow-card:hover {
    animation: floatUp 1.5s ease-in-out infinite alternate;
  }

  @keyframes floatUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
  }

  /* === Section Entry Animation === */
  .column, .user-card, .btn-center {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
  }

  .column:nth-child(1) { animation-delay: 0.4s; }
  .column:nth-child(2) { animation-delay: 0.6s; }
  .column:nth-child(3) { animation-delay: 0.8s; }
  .btn-center { animation-delay: 2s; }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Optional: glowing Codly bar */
  .codly-bar {
    background: linear-gradient(to right, #00c3a5, #00aaff, #ff6500);
    background-size: 300% 100%;
    animation: glowBar 5s linear infinite;
    color: white;
    padding: 8px 20px;
    font-weight: bold;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
  }

  @keyframes glowBar {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
  }
  /* === Arrow Animation Base === */
.arrow i {
  font-size: 18px;
  /* animation: bounceArrow 1.5s infinite ease-in-out; */
  transition: transform 0.3s ease;
}

/* === Optional Hover Effect === */
.arrow i:hover {
  transform: scale(1.3);
  color: #ff6600;
}

/* === Keyframes for Bounce Animation === */
@keyframes bounceArrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* === Arrow Entry Animation === */
.arrow {
  opacity: 0;
  transform: translateY(20px);
  animation: showArrow 0.6s ease forwards;
  animation-delay: 1s; /* Adjust based on when your columns finish animating */
}

@keyframes showArrow {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

  .green { background: radial-gradient(circle at 30% 30%, #1ecb81, #168561); }
  .blue { background: radial-gradient(circle at 30% 30%, #4fa1e8, #115193); }
  .orange { background: radial-gradient(circle at 30% 30%, #fbb040, #f47c2c); }
  .gray { background: radial-gradient(circle at 30% 30%, #d0d0d0, #3e3e3e); }
  .purple { background: radial-gradient(circle at 30% 30%, #cc80ff, blueviolet); }
  .lightblue { background: radial-gradient(circle at 30% 30%, #7ecbff, #3399ff); }
  .circle:hover img {
    transform: scale(1.2);
  }
  .circle img {
    /* width: 50%; */
    transition: transform 0.3s ease;
  }
  .circle{
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-in-out;
  }
  .circle:hover {
    transform: translateY(-10px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.7));
  }
  .circle-container{
    transition: transform 0.3s ease, filter 0.3s ease;
     opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
  }
.circle-container:hover .text {
    color: #000;
  }
    .circle:hover img {
    transform: scale(1.2);
  }
  
  .circle-container:hover .circle::before {
    opacity: 1;
    transform: scale(1.1);
  }
  .circle-container:nth-child(1) { animation-delay: 0.1s; }
  .circle-container:nth-child(2) { animation-delay: 0.3s; }
  .circle-container:nth-child(3) { animation-delay: 0.5s; }
  .circle-container:nth-child(4) { animation-delay: 0.7s; }
  .circle-container:nth-child(5) { animation-delay: 0.9s; }
  .circle-container:nth-child(6) { animation-delay: 1.1s; }

.feature-card {
  /*background: rgba(255, 255, 255, 0.1);*/
  /*backdrop-filter: blur(12px);*/
  /*border-radius: 20px;*/
  border: 1px solid rgba(114, 114, 114, 0.2);
}
  @keyframes moveAround {
    0% { transform: translate(0, 0) scale(1.05); }
    25% { transform: translate(5px, -5px) scale(1.05); }
    50% { transform: translate(0, 0) scale(1.05); }
    75% { transform: translate(-5px, 5px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1.05); }
}
.feature-card:hover {
    animation: moveAround 2s infinite ease-in-out;
}
