* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

html, body {
  height: auto;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}
main.main {
  min-height: auto;
  height: auto;
  overflow: visible;
  display: block;
}

      /* Styles for the loading spinner */
      #loading-spinner {
        position: fixed; /* Fixes it to the viewport */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
        display: flex;
        justify-content: center;
        align-items: center; 
        z-index: 9999; 
        transition: opacity 0.5s ease-out; 
        opacity: 1; /* Start visible */
        visibility: visible; 
    }
    
    #loading-spinner.hidden {
        opacity: 0; /* Fade out */
        visibility: hidden; /* Hide after fading out */
        pointer-events: none; /* Prevents interaction with elements underneath */
    }
    
    .spinner {
        border: 8px solid #f3f3f3; 
        border-top: 8px solid #6666ff; 
        border-radius: 50%; 
        width: 60px;
        height: 60px;
        animation: spin 1s linear infinite; /* Spinning animation */
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

/* navbar */
.navbar1 {
  width: 100%;
  padding: 13px 0; 
  display: flex;
  justify-content: center;
  position: static; 
  z-index: auto;
  background-color: transparent; 
  backdrop-filter: none;
  box-shadow: none;
}

.navbar-container {
  width: 771px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52.92px;
  /* background-color: #ffffff; */
  background: linear-gradient(
    90deg,
    rgba(217, 217, 217, 0.1) 0%,
    rgba(115, 115, 115, 0.1) 100%
  );
  border: 1px solid #f2f2f2;
  backdrop-filter: blur(27.5px);
  border-radius: 25px;
  position: fixed;
  top: 13px; 
  left: 50%;
  transform: translateX(-50%); 
  z-index: 1000; 
  
}

.logo img {
  height: 50px;
  width: 41.08px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 53px;
}

.nav-links li a {
  font-size: 15px;
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  transition: color 0.3s ease;
}
.nav-link.active-link {
  color: #6666FF;}
.nav-links li a.active{
  color: #5c6cff;
}
.nav-links li a:hover {
  color: #5c6cff;
}

.contact-btn {
  /* width: 117px; */
  padding: 10px 19px;
  height: 44px;
  background-color: #6666ff;
  border: 3px solid #acacff;
  border-radius: 34px;
  transition: background-color 0.5s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
a.contact-btn{
  font-size: 15px;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
}

.contact-btn:hover {
  background-color: #4a58d4;
}

/* for dark theme */
.navbar-container.white-background {
    background: #ffffff; /* Solid white background */
    border: 1px solid #e0e0e0; /* Adjust border if needed */
}

/* New: Toggle Button for Mobile */
.toggle-button {
  display: none; /* Hidden by default for desktop */
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001; /* Above other content */
}

.toggle-button .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* banner */
.bannerContainer {
  position: relative;
  height: 827px;
  margin: 0 30px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  padding-top: 105px; 
}

/* Vector 1 */
.vector-1 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

/* Vector 2 */
.vector-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

/* banner content */
.banner-content {
  position: absolute;
  top: 199px;
  left: 0%;
  text-align: center;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%; 
}

/*// Border Animation START //*/
.badge {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.animated-border-box,
.animated-border-box-glow {
  max-height: 50px;
  max-width: 320px;
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden;
  z-index: 0;
  border-radius: 40px;
}

.animated-border-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.animated-border-box span {
  display: flex;
  gap: 10px;
  color: #403f3fb2;
  font-family: 'Open Sans', sans-serif; /* Use font-family for 'Open Sans' */
  font-weight: 600;
  font-size: 13px;
}

.animated-border-box-glow {
  overflow: hidden;
  filter: blur(10px); /* This controls the glow blur */
}

.animated-border-box:before,
.animated-border-box-glow:before {
  content: '';
  z-index: -2;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  position: absolute;
  width: 99999px;
  height: 99999px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: conic-gradient(rgba(0, 0, 0, 0), #6666ff, rgba(0, 0, 0, 0) 25%);
  animation: rotate 4s linear infinite;
}

.animated-border-box:after {
  content: '';
  position: absolute;
  z-index: -1;
  /* Adjust these values to control border thickness */
  left: 2px; /* Reduced from 5px */
  top: 2px; /* Reduced from 5px */
  width: calc(100% - 4px); /* Reduced from 10px (2 * 2px) */
  height: calc(100% - 4px); /* Reduced from 10px (2 * 2px) */
  background: #ffffff;
  border-radius: 40px;
}

@keyframes rotate {
  100% {
    transform: translate(-50%, -50%) rotate(1turn);
  }
}

/*// Border Animation END //*/

.banner-content h1 {
  margin-top: 31px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 70px;
  line-height: 82px;
  text-align: center;
  padding: 0 120px;
}
.banner-heading{
  color: #2E2662;
}
.banner-content .gradient-heading {
  background: linear-gradient(280.02deg, #000000 -29.98%, #6666ff 126.06%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner-content .highlight {
  color: #6666ff !important;
  font-style: italic;
  font-weight: 400;
}

.banner-content p {
  padding: 0 240px;
  margin-top: 33px;
  font-size: 24px;
  font-weight: 400;
  color: #575757;
  line-height: 38px;
}

.buttons {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
/* banner buttons */
.btn.primary {
  min-width: 146px;
  height: 44px;
  background-color: #6666ff;
  border: 3px solid #acacff;
  border-radius: 34px;
  transition: background-color 0.5s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 19px;
}
.btn.btn.primary:hover{
  background-color: #4a58d4;
}

.btn.outline {
  min-width: 216.66px;
  height: 44px;
  padding: 10px 21px;
  border: 1px solid #575757;
  color: #575757;
  background-color: transparent;
  display: flex;
  justify-content:center;
  gap: 10px;
  transition: background-color 0.5s ease-out;
}
.btn.outline:hover{
  background-color: #ffffff;
}

/* about section */
.about-section{
  display: flex;
  align-items: center;
}
.about-container {
  margin-top: 100px;
  margin-bottom: 124px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}

.about-btn {
  height: 35px;
  padding: 10px 26px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f2f2ff;
  color: #2e2662;
  font-size: 14px;
  font-weight: 600;
  gap: 10px;
  border: none;
}

.circle {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #6666ff;
  border: 2px solid #b1b1ff;
}

.about-container h5 {
  margin-top: 26px;
  font-size: 24px;
  line-height: 38px;
  font-weight: 400;
  color: #575757;
  margin-left: 240px;
  margin-right: 276px;
  text-align: center;
}

.about-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  /* margin: 60px 83px 0px 83px; */
  gap: 42px;
  justify-content: center;
  width: 100%;
  
}

.about-left {
  width: 619px;
  display: flex;
  justify-content: center;
}

.image-placeholder img{
  width: 100%;
  height: 430px;
  max-width: 619px;
  min-height: 250px;
  border-radius: 32px;
  /* object-fit: cover; */
}

.about-right {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 17px;
  width: 613px;
  height: 430px;
}

.info-card {
  width: 613px;
  height: auto;
  background: linear-gradient(214.37deg, #6666ff -101.04%, #ffffff 40.26%);
  border: 1px solid #e5e5e5;
  border-radius: 32px;
  /* padding: 12px; */
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.info-card h4 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 10px;
}

.info-card p {
  font-size: 15px;
  font-weight: 400;
  margin-top: 9px;
  color: #575757;
  padding-right: 10px;
}
.about-img-div{
  /* width: 50%; */
  border-radius: 32px;
}

.about-img {
  border-radius: 32px;
  width: 200px;     
  height: 200px;  
  object-fit: contain;
  position: relative;
  bottom: -10px;
}

.vision-img{
  position: relative;
  left: -6px;
  transform: rotateY(190deg);
  border-radius: 32px;
}

/* ai and podcast Section */

.content-wrapper {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 29px;
  margin-top: 33px;
  margin-bottom: 33px;
}
.content-wrapper p {
  color: #ffffff;
  border-radius: 24px;
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
}

.tag-btn {
  height: 39px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  background: transparent;
  background: linear-gradient(#000000, #000000) padding-box,
    linear-gradient(90deg, #6666ff, #2e2662) border-box;
  border: 1px solid transparent;
  border-radius: 40px;
  color: #c2b9ff;
  font-size: 13px;
  font-weight: 600;
  line-height: 105px;
}

/* new ai section start */
.ai-responsibility-section {
  background: radial-gradient(213.89% 227.21% at -60.68% 166.88%, #43439D 0%, #000000 100%);
  border-radius: 32px;
  padding: 40px 64px;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  backdrop-filter: blur(12px);
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); */
  max-width: 1278px;
  margin: 40px auto; /* Centers the whole section */
}

.ai-responsibility-section h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 33px;
  text-align: center;
  margin: 33px 150px;
}

.ai-responsibility-section h3 {
  margin: 50px 0 36px 0;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 33px;
}

.intro-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
  color: #FFFFFF;
  text-align: center;
  margin: 0 100px;
}

.footer-note {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin: 50px 150px;
  color: #ffffff;
}

/* Base Grid Layout (for screens > 1200px) */
.pillars-grid,
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Default: 4 columns */
  gap: 43px;
  justify-items: center; /* Centers items within their grid cells */
}

/* Pillar & How Card shared styles */
.pillar,
.how-card {
  background: linear-gradient(90deg, rgba(102, 102, 255, 0.1) 0%, rgba(46, 38, 98, 0.1) 100%);
  border: 1px solid #32327E;
  backdrop-filter: blur(27.5px);
  border-radius: 14px;
  padding: 25px;
  text-align: center;
  font-weight: 500;
  color: #fff;
  width: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 230px;
}

.pillar {
  align-items: center;
}

.pillar-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 29px;
  text-align: center;
  margin-top: 10px;
}

/* Icons inside cards */
.how-grid .ai-icon {
  display: flex;
  justify-content: start;
}

.how-card h4 {
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 5px;
  color: #fff;
  font-weight: 700;
  text-align: start;
  margin-top: 15px;
}

.how-card p {
  text-align: start;
  font-size: 14px;
  color: #ffffff;
  line-height: 25px;
  font-weight: 400;
}

.divider {
  text-align: center;
  font-size: 24px;
  margin: 24px 0;
  color: #bbb;
}

.ai-footer-link {
  color: #8080FB !important;
  text-align: center;
  font-size: 20px;
  line-height: 29px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  text-underline-offset: 6px;
}
/* end fo ai section */

/* faq */
.faq-section {
  margin-top: 137px;
  margin-bottom: 93px;
  display: flex;
  justify-content: center;
}
.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 30px;
}
.internship-section .content-heading{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content-heading h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  margin-top: 35px;
  margin-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
}

.content-heading p {
  margin: 0;
  font-size: 20px;
  color: #707070;
  font-weight: 400;
  line-height: 29px;
  max-width: 696px;
  padding-right: 20px;
  padding-left: 20px;
}

.faq-container {
  margin-top: 36px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 15px 39px;
  border: 1px solid #e9e9e9;
}

.faq-question {
  width: 100%;
  font-size: 16px;
  text-align: left;
  background: #ffffff;
  border: none;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  display: flex
;
    align-items: center;
    justify-content: space-between;

}

.faq-question .icon {
  position: absolute;
  top: 0;
  right: 0;
  color: #949494;
  font-size: 14px;
  pointer-events: none;
}

.faq-answer {
  text-align: left;
  height: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 29px;
  color: #707070;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.faq-item.active .faq-answer {
  height: auto;
  opacity: 1;
  margin-top: 19px !important;
}
.faq-item.active .faq-question,.faq-item.active i{
  color: #4a58d4;
  font-weight: 600;
}

/* podcast */
.podcast-section {
  display: flex;
  justify-content: center;
  margin-top: 137px;
  margin-bottom: 65px;
}

.podcast-container {
  position: relative;
  background: radial-gradient(
    237.77% 221.6% at -89.84% -95.75%,
    #549d64 0%,
    #000000 100%
  );
  border-radius: 32px;
  overflow: hidden;
  width: 1278px;
  height: 340px;
  margin: 0 81px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 232px;
}

.podcast-btn {
  height: 39px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  background: transparent;
  background: linear-gradient(#0a0a0a, #0a0a0a) padding-box,
    linear-gradient(90deg, #549d64, #083111) border-box;
  border: 1px solid transparent;
  border-radius: 40px;
  color: #549d64;
  font-size: 13px;
  font-weight: 600;
  line-height: 105px;
}
.podcast-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #549d64;
  border: 2px solid #b1f4c0;
  filter: blur(0.65px);
}


.podcast-button {
  /* width: 117px; */
  padding: 10px 19px;
  height: 44px;
  background-color: #549d64;
  border: 3px solid #295b34;
  border-radius: 34px;
  transition: background-color 0.5s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
a.podcast-button{
  font-size: 15px;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
}

.podcast-button:hover {
  background-color: #295b34;
  border: 3px solid #549d64;
}


/* product */
/* product Styles */
.product-section {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 100vh;
}
.product-container{
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 15px;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 24px;
  font-weight: 400;
  margin-top: 28px;
  color: #575757;
  max-width: 800px;
  line-height: 29px;
}
.product-container .section-header{
  margin-bottom: 25px;
}
.product-container .section-header h2{
  margin-top: 15px;
}
.product-container .about-btn{
  margin-top: 28px;
}

.about-btn span {
  color: #000000;
}

.about-btn .circle {
  width: 10px;
  height: 10px;
  background-color: #6a6fe0;
  border-radius: 50%;
}

/* Main Grid Container (Desktop: > 992px) */
.main-grid {
  display: grid;
  grid-template-columns: 544px 700px;
  grid-template-rows: auto auto;
  gap: 20px;
  width: 100%;
  justify-items: center;
}

/* General Card Styling */
.card {
  position: relative;
  background: linear-gradient(180deg, #E6E6FF 0%, #FFFFFF 100%);
border: 1px solid #DEDEDE;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  /* min-height: 250px; */
  height: auto;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
}

.card p {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 1px;
  color: #777777;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

/* Specific Card Dimensions and Placement (Desktop: > 992px) */
.card-1 {
  grid-area: 1 / 1 / 2 / 2;
  width: 498px;
  justify-self: start;
  display: flex;
  flex-wrap: wrap;
  height: 220px;
}

.card-2 {
  grid-area: 1 / 2 / 2 / 3;
  width: 740px;
  justify-self: start;
  position: relative;
  left: -45px;
  display: flex;
  flex-wrap: wrap
}

.card-4 {
  grid-area: 2 / 1 / 3 / 2;
  width: 544px;
  justify-self: start;
}

/* New container for card-5 and card-6 */
.card-container-bottom-right {
  grid-area: 2 / 2 / 3 / 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* height: 250px; */
}

.card-5 {
  width: 689px;
  display: flex;
  flex-wrap: wrap;
}
.card-1 .card-1-content{
  width: 55%;
  text-align: start;
}
.card-2 .card-2-content{
  width: 50%;
}
.card-5 .card-5-content{
  width: 60%;
}
.card-5 p{
  margin-bottom: 0;
}
.card-6 {
  width: 689px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
}
.card-6 p {
  font-size: 20px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #000000;
  margin: 0;
  text-align: center;
}

/* Image position adjustments for new card sizes (Desktop: > 992px) */
.card-img1 {
  position: absolute;
  top: 50px;
  right: -20px;
  width: 300px;
  max-width: 100%;
  height: auto;
  z-index: 0;
  border-radius: 8px;
}
.card-img21 {
  width: 251px;
  position: absolute;
  top: 20px;
  right: 100px;
  height: 201px;
  z-index: 1;
  border-radius: 8px;
}
.card-img22 {
  width: 290px;
  position: absolute;
  top: 10px;
  right: 10px;
  height: 201px;
  z-index: 0;
  border-radius: 8px;
}
.card-img41 {
  width: 300px;
  position: absolute;
  top: 110px;
  right: 90px;
  height: auto;
  z-index: 1;
  border-radius: 8px;
}
.card-img42 {
  width: 300px;
  position: absolute;
  top: 56px;;
  right: 40px;
  height: 197px;
  transform: rotate(6.66deg);
  z-index: 0;
  border-radius: 8px;
}
.card-img51 {
  width: 316.5px;
  position: absolute;
      top: -70px;
    object-fit: contain;
  right: -5px;
  height: 300px;
  z-index: 1;
  border-radius: 8px;
}
.card-img52 {
  width: 308.5px;
  position: absolute;
  top: -5px;
  right: -35px;
  height: 240px;
  transform: rotate(-13.66deg);
  z-index: 0;
  border-radius: 8px;
}

/* Footer  */
.footer {
  margin: 0 120px;
  position: relative;
  overflow: hidden;
  background-color: transparent; 
}

/* Top Section */
.top-section {
  margin-top: 10px;
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  gap: 40px;
}

/* LEFT COLUMN (50%) */
.left-column {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.logo-box img {
  width: 275px;
  height: 137px;
  margin-left: -15px;
}

.tagline {
  font-size: 12px;
  color: #444;
  margin-top: 8px;
}

.link-columns {
  display: flex;
  width: 100%;
  gap: 150px;
}

.link-group h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  color: #000000;
  margin-bottom: 13px;
}

.link-group a {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  margin-bottom: 13px;
  transition: color 0.3s ease; 
}

.link-group a:hover {
  color: #6666ff; 
}

/* RIGHT COLUMN (50%) */
.right-column {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end; 
  position: relative;
}
.talk-box {
  width: 100%; 
  /* margin-top: 33px; */
}
.talk-box h3 {
  font-size: 28px;
  line-height: 29px;
  color: #0B0B0B;
  margin-bottom: 12px;
  text-align: left; /* Aligned left even in right column */
  width: 100%;
}

.input-row {
  border-bottom: 1px solid #121212;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.input-row input {
  border: none;
  outline: none;
  font-size: 16px;
  flex: 1;
  background: transparent;
  padding: 6px 0;
}
.input-row input::placeholder{
  color: #333;
  font-size: 20px;
  line-height: 22px;
  font-weight: 400;
}
.arrow {
  font-size: 20px;
  padding-left: 10px;
  cursor: pointer; /* Indicate it's clickable */
  color: #000; /* Default color */
  transition: color 0.3s ease; /* Smooth transition */
}

.arrow:hover {
  color: #6666ff; /* Hover effect for arrow */
}

/* Social Icons */
.social-icons {
  width: 100%;
  display: flex;
  justify-content: end;
  gap: 40px;
  margin-top: auto; /* Pushes social icons to the bottom in flex column */
  padding-top: 40px; /* Space from above content if column is short */
}

.social-icons i {
  font-size: 34px;
  color: #000;
  cursor: pointer;
  transition: color 0.3s ease; /* Smooth transition */
}

.social-icons i:hover {
  color: #6666ff; /* Hover effect for social icons */
}

/* Bottom Section */
.bottom-section {
  position: relative;
  margin: 100px 0 50px 0;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
}


.background-text {
  font-size: 184px;
  font-weight: 700;
  line-height: 22px;
  color: #D2D6FF;
  text-align: center;
  user-select: none; 
  pointer-events: none;
}

.footer .bottom-section p {
  text-align: right;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400px;
  color: #D2D6FF;
  margin-top: 70px;
}

/* Contact page */

.contact-section {
  margin: 60px 150px 60px 150px;
  display: flex;
  align-items: center;  
  justify-content: center;
}

.contact-container {
  height: auto;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 139px;
  justify-content: center;
  align-items: center;
}

.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mail-box {
  /* width: 491px; */
  margin-top: 30px;
  max-width: 100%;
  height: 132px;
  background-color: #F4F4FF;
  border-radius: 10px;
  padding: 22px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mail-box h4 {
  margin-bottom: 7px;
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
}

.mail-box p {
  font-size: 13px;
  color: #676767;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 16px;
}

.mail-box a {
  color: #000;
  font-weight: 500;
  font-size: 13px;
  line-height: 22px;
}
.mail-box a:hover{
  color: #6666FF;
}

.mail-box i {
  margin-right: 8px;
  color: #333;
}

.gradient-columns {
  display: flex;
  gap: 36px;

}
.gradient-column img{
  max-width: 170px;
}
.gradient-column1 img{
  max-width: 170px;
}
.gradient-column2 img{
  max-width: 170px;
}
.contact-right {
  flex: 1;
  min-width: 280px;
}

.contact-right h2 {
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 400;
  line-height: 29px;
  text-align: center;
  color: #000000;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.form-field {
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
}

.contact-form label {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 10px;
  color: #000000;
}
.contact-form textarea{
  margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
  font-size: 15px;
  padding: 6px 0;
  border: none;
  border-bottom: 1px solid #6E6E6E;
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
  color: #000000;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #C7C7C7;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom: 2px solid #6666FF;
}

.contact-form textarea {
  /* resize: vertical;
  min-height: 80px; */
}

.submit-button {
  background-color: #6666FF;
  color: white;
  padding: 12px;
  border: 3px solid #ACACFF;
  border-radius: 68px;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-button:hover {
  background-color: #5555ee;
}

/* internship page */

.internship-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.apply-button{
  background-color: #6666FF;
  color: white;
  padding: 5px 19px;
  border: 3px solid #ACACFF;
  border-radius: 68px;
  font-weight: 600;
  line-height: 22px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.5s ease;
}
.apply-button:hover{
  background-color: #4a58d4;
}
.apply-section{
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 10px; */
}
.internship-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 35px;
  padding-bottom: 35px;
}
.internship-fig{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.internship-heading{
  margin: 30px 0;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.internship-row{
  display: flex;
  justify-content: center;
  align-items: center;
  gap:50px 40px;
  flex-wrap: wrap;
  margin-left: 90px;
  margin-right: 90px;
}
.internship-col{
  max-width: 250px;
  height: 340px;
  background-color: #F5F5FE;
  border: 3px solid #ACACFF;
  border-radius: 20px;
  padding: 20px;
}
.internship-col img{
  /* object-fit: contain; */
}
.internship-img-div{
  overflow: hidden;
}
/* .internship-col img:hover{
  transform: scale(1.06);
} */
.internship-col img{
  transition: all 0.3s ease-out;
  max-width: 100%;
  height: 250px;
}


    /* Modal Styling */
    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.85);
      overflow: hidden;
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      max-width: 90%;
      max-height: 80vh;
      border-radius: 10px;
      box-shadow: 0 0 20px #000;
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 30px;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      z-index: 10000;
    }

    body.modal-open {
      overflow: hidden;
      height: 100vh;
    }
  
/* --- Responsive Behavior --- */

/* Screens between 992px and 1299px */
@media (min-width: 992px) and (max-width: 1299px) {
  .about-row {
    flex-wrap: nowrap;
    flex-direction: row;
    margin: 50px 40px 0 40px;
    gap: 30px;
    justify-content: center;
  }
  .about-left {
    width: 460px !important;
    max-width: 460px !important;
  }
  .about-right {
    width: 460px !important;
    max-width: 460px !important;
  }

  .info-card {
    width: 100%;
    height: auto;
  }
  .ai-container {
    padding: 0px 160px;
  }
  .podcast-container {
    padding: 0 150px;
  }

  .contact-section{
    margin-left: 60px;
    margin-right: 60px;
  }
  .contact-container{
    flex-direction: row;
    /* gap: 50px; */
  }
  .gradient-column1{
    display: none;
  }
  .main-grid {
    grid-template-columns: 360px 520px;
    gap:25px 65px;
  }
  .card-1{
    width: 400px;
    flex-direction: column;
    height: 300px;
    
  }
  .product-container{
    height: auto;
  }
  .card-4{
    width: 400px;
    height: 350px;
  }
  .card-img41{
    top: 185px;
  }
  .card-img42{
    top: 130px;
        right: 60px;
  }
  .card-5{
    width: auto;
    height: 285px;
  }
  .card-6{
    width: auto;
  }
  .card-img51{
   top: 30px;
  }
  .card-img52{
    top: 30px;
  }
  .card-5-content{
    width: 50% !important;
  }
  .card-2{
    width: auto;
    left: 0;
    flex-direction: column;
  }
  .card-2-content{
    width: 100% !important;
  }
  .card-img21{
    top: 135px;
  }
  .card-img22 {
    top: 125px;
  }
  .card-img1{
    top: 150px;
  }
  .card-1-content{
    width: 100% !important;
  }
  .about-container{
    height: auto;
  }
  .about-container h5{
    margin-right: 150px;
    margin-left: 150px;
    font-size: 22px;
  }
  .section-header h2 {
    font-size: 22px;
  }
  .internship-heading {
    margin: 35px 0 50px 0;
  }
  .pillars-grid, .how-grid{
    gap: 35px;
  }
  .ai-responsibility-section{
    margin: 40px 28px;
  }
  .footer-note {
margin: 50px;
  }
    .background-text {
        font-size: 115px !important;
    }
}
@media(min-width:1071px) and (max-width:1200px){
  .background-text {
        font-size: 128.5px !important;
    }
}
@media(min-width:1201px) and (max-width:1300px){
  .background-text {
        font-size: 145.5px !important;
    }
}
@media(min-width:1301px) and (max-width:1400px){
  .background-text {
        font-size: 160.5px !important;
    }
}
/* Screens smaller than 992px (tablets and mobile) */
@media (max-width: 991.98px) {
  
  .navbar-container {
    height: 55px;
    width: 90%; 
    justify-content: space-between; 
    padding: 0 15px; 
    top: 13px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: linear-gradient(
      90deg,
      rgba(217, 217, 217, 0.1) 0%,
      rgba(115, 115, 115, 0.1) 100%
    );
    /* background-color: #ffffff; */
    border: 1px solid #f2f2f2;
    backdrop-filter: blur(27.5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links {
    display: none; 
    flex-direction: column; 
    width: 100%;
    position: absolute;
    top: 56px;
        left: 0;
        padding: 20px 0;
        background-color: rgba(255, 255, 255, 0.95);
        /* background: linear-gradient(
      90deg,
      rgba(217, 217, 217, 0.1) 0%,
      rgba(115, 115, 115, 0.1) 100%
    ); */
        border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex; /* Show when active */
  }

  .nav-links li {
    text-align: center;
    margin: 10px 0;
  }

  .nav-links li a {
    padding: 10px 0;
    display: block;
    color: #333;
  }

  .contact-btn {
    color: white !important;
    width: 117px;
    /* margin: 0 100px; */
    /* margin: 20px auto 0;  */
  }

  .toggle-button {
    display: flex; /* Show toggle button */
    order: 2;
  }

  .banner-content {
    top: 100px;
  }

  .about-row {
    flex-wrap: wrap;
    /* flex-direction: column; */
    margin: 40px 20px 0 20px;
    gap: 30px;
    justify-content: center;
  }

  .about-left,
  .about-right {
    /* width: 100% !important; */
    max-width: 100% !important;
    display: flex;
    justify-content: center;
  }

  .image-placeholder {
    width: 100%;
    max-width: 90vw;
  }

  .about-right {
    align-items: center;
  }

  .info-card {
    width: 100%;
    max-width: 90vw;
    height: auto;
  }

  .banner-content h1 {
    font-size: 50px;
    line-height: 70px;
    padding: 0 50px;
  }

  .banner-content p {
    padding: 0 100px;
  }

  .about-container h5 {
    margin-left: 30px;
    margin-right: 30px;
  }

  .faq-section {
    padding: 10px;
  }

  .tag-btn {
    font-size: 12px;
    padding: 8px 20px; 
  }


  /* Podcast container for smaller screens */
  .podcast-container {
    width: 90%;
    height: auto;
    margin: 0 auto;
    padding: 30px 20px;
  }

  .podcast-container .content-wrapper h2 {
    font-size: 26px;
    line-height: 35px;
  }

  .podcast-container .content-wrapper p {
    font-size: 16px;
    line-height: 24px;
    padding: 0 10px;
  }

  .podcast-btn {
    font-size: 12px;
    padding: 8px 20px;
  }

  .podcast-button {
    font-size: 14px;
    margin-top: 25px;
  }
  /* product */
  .main-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    width: 100%;
    max-width: 992px;
}
.card-container-bottom-right {
  align-items: center;
}
.card-1-content{
  width: 60% !important;
}
.card-1{
  height: 250px;
}
.card-2-content{
  width: 60% !important;
}
.card-img1{
  top: 100px !important;
}
.card-2{
  height: 250px;
}
.card-img21{
  top: 70px ;
  right: 70px;
}
.card-img22{
  top: 50px ;
}

.card-4{
  height: 250px;
}
.card-img41{
  top: 85px;
  right: 35px;
}
.card-img42{
top: 30px;
right: 10px;
}
.card-6{
  height: 50px ;
}
.product-container{
height: auto;
}
.product-section{
  margin-top: 0px;
}
.card-2{
  left: 0;
}
.card-5-content{
  width: 60% !important;
}
.card-5{
  height: 250px;
  flex-direction: column ;
}
.card-img51{
  top: -45px;
  object-fit: inherit;
}
.card-img52{
  top: 20px;
}
.card,
.card-container-bottom-right {
    grid-area: unset;
    width: 100%;
    justify-self: unset;
}
.product-container {
  margin-left: 25px;
  margin-right: 25px;
}
.card p{
  padding-right: 40px;
}
.card-4 p{
  width: 60%;
}
.about-container{
  height: auto;
  padding-top: 90px;
}

/* footer */
  .footer {
    margin: 0 45px !important;
  }
  .link-columns {
    gap: 60px !important;
  }
  .background-text {
    font-size: 95px !important;
  }
  .contact-section {
    margin-left:30px ;
    margin-right: 30px;
  }
  .contact-container{
    gap: 80px;
    margin-bottom: 0 !important;
  }
  
  .internship-heading {
    margin: 60px 0
  }
  .internship-row{
    margin-left: 20;
    margin-right: 20;
  }
/* ai section */
.pillars-grid,
.how-grid {
  grid-template-columns: repeat(2, 1fr) !important;
}
.footer-note{
  margin-left: 30px;
  margin-right: 30px;
}
 .gradient-column1{
    display: none;
  }
}

/* ai Responsive Adjustments */

@media (max-width: 1200px) {
  .pillars-grid,
  .how-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ai-responsibility-section {
    /* padding: 40px 43px; */
    margin-left: 35px;
    margin-right: 35px;
  }
  .ai-responsibility-section h2{
     margin: 33px 0px;
  }
  .intro-text {
    margin: 0;
  }
}

/* Specific for screens up to 768px (tablets and larger mobile) */
@media screen and (max-width: 768px) {
  .link-columns {
  gap: 30px !important;
  }
  .contact-section {
    margin-left:20px ;
    margin-right: 20px;
  }
  .nav-links {
gap: 0px;
  }
  .navbar-container{
    gap: 20px;
    align-items: center;
  }
  .logo{
    position: relative;
  }
  .logo img{
    position: absolute;
    left: -2px;
    top: -25px;
  }
  .banner-content h1 {
    font-size: 40px; 
    line-height: 55px;
  }

  .banner-content p {
    font-size: 16px;
    padding: 0 50px; 
  }

  .info-card {
    height: auto; 
  }
  .info-card h4 {
font-size: 28px;
  }
  /* product */
  .main-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
    width: 100%;
    max-width: 480px;
}
.card-4 p{
  width: 100% !important;
}

.card {
    grid-area: unset;
    width: 90%;
    max-width: 400px;
    justify-self: center;
    /* min-height: 280px; */
    padding: 15px;
}
.product-container {
  margin-left: 0px;
  margin-right: 0px;
}

.faq-item {
  padding: 15px 15px;
}
  /* Footer adjustments for 768px and below */
  .footer {
    margin: 0 33px ;
  }

  .left-column,
  .right-column {
    width: 90% !important; 
    align-items: flex-start; 
  }

  .social-icons {
    margin-top: 30px; 
    padding-top: 0; 
    justify-content: start !important;
  }
.bottom-section{
  padding: 20px 0 !important;
  margin: 30px 0;
}
  .background-text {
    word-wrap: break-word;
    font-size: 65px !important;
    line-height: 60px !important; 
  }
 
  .footer .bottom-section p {
    text-align: center !important; 
    /* margin-top: 10px;  */
    padding-right: 0; /* Remove padding */
    margin-top: 20px !important;
    font-size: 12px;
  }
  .section-header h2 {
    font-size: 16px;
}
.about-container h5 {
  font-size: 16px;
  line-height: 29px;
}
.image-placeholder img{
  height: 350px;
}

/* contactpage */
.contact-section{
  margin-bottom: 50px;
  margin-top: 55px;
}

.contact-container {
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.gradient-columns {
  justify-content: center;
}
.gradient-column{
  display: none;
}
.gradient-column1{
  display: none;
}
.gradient-column2{
  display: none;
}
.mail-box {
  max-width: 100%;
  height: auto;
  padding: 20px;
}

.contact-right h2 {
  font-size: 24px;
}

.card-container-bottom-right {
align-items: center;
}
.card-1-content{
width: 100% !important;
}
.card-1{
height: 350px;
flex-direction: column ;
}
.card-2-content{
width: 100% !important;
}
.card-img1{
top: 200px !important;
}
.card-2{
height: 400px;
flex-direction: column ;
}
.card-img21{
top: 210px ;
right: 55px;
}
.card-img22{
top: 190px ;
}

.card-4{
height: 350px;
}
.card-img41{
top: 185px;;
right: 35px;
}
.card-img42{
top: 130px;
right: 0px;
}
.card-6{
height: 50px ;
}
.product-container{
height: auto;
padding-top: 45px;
}
.product-section{
margin-top: 0px;
}
.card-2{
left: 0;
}
.card-5-content{
width: 100% !important;
}
.card-5{
height: 500px;
flex-direction: column ;
}
.card-img51{
top: 205px;
}
.card-img52{
top: 250px;
}
.card p{
  padding-right: 0px;
}
/* ai section */

  .ai-responsibility-section {
    /* padding: 40px 43px; */
    margin-left: 30px;
    margin-right: 30px;
  }
  .ai-responsibility-section h2 {
    font-size: 24px;
    margin: 40px 30px;
  }
  .ai-responsibility-section .content-wrapper p {
    margin: 0 30px;
    font-size: 17px;
  }
  .ai-responsibility-section h3 {
    margin-left: 30px;
    margin-right: 30px;
    font-size: 24px;
  }
  .footer-note {
    font-size: 17px;
    margin: 50px 20px;
  }
  .ai-footer-link {
    font-size: 15px;
    padding: 0 10px;
  }

  .content-heading p {
    font-size: 16px;
    padding: 0;
  }
  .content-heading h2{
    padding: 0;
    font-size: 28px;
  }
  .pillar, .how-card{
    width: 200px;
  }

}

/* Specific for screens up to 600px (smaller mobile) */
@media screen and (max-width: 600px) {
      .pillar, .how-card {
        width: 230px;
      }
    .left-column,
      .right-column {
        width: 100% !important;
      }
.about-btn {
    padding: 6px 12px;
    font-size: 0.9rem;
}
/* .image-placeholder img{
  height: 320px;
} */
.faq-section {
  margin-top: 50px;
}
.podcast-section {
  margin-top: 50px;
}
  .content-heading h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .banner-content h1 {
    font-size: 32px; /* Even smaller for very small screens */
    line-height: 45px;
    padding: 0 10px;
  }

  .banner-content p {
    line-height: 24px;
    padding: 0 5px;
  }
 
  .tag-btn {
    font-size: 11px;
    padding: 6px 15px;
  }
  .buttons {
flex-wrap: wrap;
  }
  .vector-1 {
    bottom: -150px;
  }
  /* product */
  .card p {
font-size: 12.5px;
  }
  /* Podcast container for very small screens */
  .podcast-container {
    border-radius: 20px;
    padding: 20px 15px;
  }

  .podcast-container .content-wrapper h2 {
    font-size: 22px;
    line-height: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .podcast-container .content-wrapper p {
    font-size: 14px;
    line-height: 22px;
    padding: 0;
  }

  .podcast-btn {
    font-size: 11px;
    padding: 6px 15px;
  }

  .podcast-button {
    margin-top: 20px;
  }
  a.podcast-button {

    font-size: 13px;
  }
  
  .background-text {
    font-size: 45px !important;
  }
  .link-columns {
    flex-direction: column; 
    gap: 20px !important;
  }
  .footer {
    margin: 0px 33px !important;
}
.footer .bottom-section p{
  margin-top: 10px !important;
}
.bottom-section{
  margin: 0 ;
}
.internship-section {
  padding: 25px;
}
.internship-row{
  margin-left: 0px;
  margin-right: 0px;
}
.pillars-grid,
  .how-grid {
    grid-template-columns: 1fr;
    display: flex; /* Using flexbox for better centering of single items */
    flex-direction: column;
    align-items: center; /* Centers the single item */
  }

  .ai-responsibility-section {
      padding: 24px 0px;
      margin-left: 20px;
      margin-right: 20px;
  }
  .ai-responsibility-section h2 {
    font-size: 22px;
    margin: 40px 20px;
  }
  .ai-responsibility-section .content-wrapper p {
    margin: 0 30px;
    font-size: 16px;
  }
  .ai-responsibility-section h3 {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 22px;
  }
  .footer-note {
    font-size: 16px;
    margin: 50px 20px;
  }
  .ai-footer-link {
    font-size: 15px;
  }
  .about-right{
    height: auto;
    gap: 35px;
  }
  .info-card {
    flex-direction: column !important;
    height: 400px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }
  .info-card p {
    padding-right: 0;
font-size: 13px;
  }
  .internship-container{
    padding-top: 30px;
  }
  
  .top-section {
    flex-direction: column;  
  }
  
.left-column{
  order: 2;
}
}

/* Specific for 320px width (smallest common mobile screen) */
@media screen and (max-width: 390px) {
  .internship-heading {
    margin: 30px 0
  }
  .banner-content h1 {
    font-size: 28px;
    line-height: 38px;
  }

  .banner-content p {
    font-size: 15px;
  }
  .badge {
    width: auto;
    padding: 8px 15px;
  }
  .animated-border-box-glow {
    filter: blur(5px);
  }
  
  .animated-border-box, .animated-border-box-glow {
    max-width: 240px;
  }
  .animated-border-box span{
    align-items: center;
    padding: 0px 15px;
  }
  .buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
    width: 90%;
  }
  .btn {
    width: 100%; /* Make buttons full width of their container */
    text-align: center;
    padding: 10px;
  }

  .tag-btn {
    font-size: 10px;
    padding: 5px 10px;
  }
/* about */
.image-placeholder img{
  height: 250px;
}
  /* Podcast container for smallest mobile screens */
  .podcast-container {
    padding: 15px 10px;
  }

  .podcast-container .content-wrapper h2 {
    font-size: 20px;
    line-height: 28px;
  }

  .podcast-container .content-wrapper p {
    font-size: 13px;
    line-height: 20px;
  }

/* product */
    .card-img21 {
        right: 35px;
    }
.card-img41 {
  top: 185px;
  right: 20px;
}
  /* Footer */
  .footer .bottom-section p{
    margin-top: 0px !important;
  }
  .footer{
    margin: 0 20px !important;
  }
  .link-columns {
    gap: 20px !important;
  }
  .left-column {
gap: 20px !important;
  }
  .talk-box h3 {
    font-size: 20px !important; 
  }

  .input-row input {
    font-size: 15px !important;
  }
  .input-row input::placeholder{
    font-size: 15px !important;
  }

  .right-column {
    width: 90% !important;
  }
  .link-group a {
    font-size: 13px; 
  }

  .social-icons i {
    font-size: 24px; 
  }
  .bottom-section {
    padding: 25px 0 !important;
    padding-top: 10px !important;
}
  .background-text {
    font-size: 35px !important; 
  }
  .mail-box{
    padding: 15px;
  }
  .mail-box p{
    margin-bottom: 10px;
  }
}
@media(min-width:1300px) and (max-width:1499px){
      .background-text {
        font-size: 169.5px;
      }
}
@media(max-width:1500px){
  .gradient-column1{
    display: none;
  }
  .contact-container{
  margin-bottom: 180px;
  }
  
}
@media (min-width:992px) and (max-width:1199px){
  .banner-content h1 {
    font-size: 50px;
    line-height: 70px;
  }
  .banner-content p {
    padding: 0 100px;
  }
      .ai-responsibility-section h2 {
        font-size: 28px;
      }
      .content-wrapper p {
        font-size: 18px;
      }
      .ai-responsibility-section h3 {
        font-size: 28px;
      }
      .footer-note {
        font-size: 18px;
        margin: 40px;
      }
      .content-heading h2 {
        font-size: 28px;
      }
      .content-heading p {
        font-size: 18px;
      }
      .content-wrapper h2 {
        font-size: 28px;
      }
      .about-container h5{
        font-size: 20px;
      }
      .section-header h2 {
        font-size: 20px;
      }
}
@media(min-width:992px) and (max-width:1450px){
  .footer{
    margin-left: 90px;
    margin-right: 90px;
  }
}
/* Styles for screens 1300px and above (desktop/laptop dimensions) */
@media (min-width: 1300px) {
  .about-left {
    width: 550px ;
    height: 400px;
  }
  .about-right {
    width: 613px !important;
    
  }
  .about-container{
  height: 100vh;
  }
  .about-container .about-btn{
    margin-top: 60px;
  }
.info-card{
  display: flex;
  flex-direction: row;
  /* gap: 60px; */
}

.info-card h4{
  margin-top: 0;
}

  .podcast-container {
    width: 1278px;
    height: 340px;
    margin: 0 81px;
    padding: 0px 232px;
  }
  .ai-container {
    width: 1278px;
    height: 340px;
    margin: 0 81px;
    padding: 0px 232px;
  }
  .top-left-img {
    display: block; 
  }
  .bottom-right-img {
    display: block; 
  }
 .contact-left {
    width: 40%;
  } 
  .contact-container{
    margin-top: 30px;
    margin-bottom: 10px;
    align-items: center ;
  }
.main-grid{
  margin-left: 43px;
}
}


  