html {
  scroll-behavior: smooth;
}



/* Reset / Box Sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* Container Utility Class */
.container {
  width: 90%;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
}



/* General Styles */
body {
font-family: 'Urbanist', sans-serif;
margin: 0;
padding: 0;
/* background-color: white; */
text-align: center;
/* 
background-image: url('gradient-background.svg');
background-repeat: no-repeat;
background-size: cover; */

&::before {
content: '';
position: absolute;
top: 45px;
bottom: 0px;
left: 0px;
right: 0px;


background-image: url('../assets/images/bg-img.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
min-height: 100vh;
margin: 0;
opacity: 0.8;
}
}


/* Header */
header {
  border: 0px solid #333;
  /* box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);  */
  /* padding: auto;  */
margin-left: 0px;
display: flex;
justify-content: space-between;
align-items: center;
padding-left: 30px;
background: white;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
position: relative;
top: 0;
width: 100%;
z-index: 1000;
}

.logo {
align-items: center;
margin-left: 60px;
/* gap: 10px;  */
/* flex-wrap: nowrap; */
}




/* Navigation */
nav {
display: flex;
align-items: center;
}
.nav-links {
list-style: none;
display: flex;
gap: 20px;
padding: 0;
}
.nav-links li {
display: inline;
}
.nav-links a {
text-decoration: none;
color: black;
font-weight: bold;
transition: color 0.3s;
}
.nav-links a:hover {
color: goldenrod;
}

.button-container {
  margin-left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-nav{
text-decoration: none;
display: inline-block;
padding: 10px 20px;
border-radius: 6px;
font-size: 16px;
transition: background-color 0.3s ease;
/* width: 100%; */
}

/* Toggle Button (For Mobile View) */
.toggle-button {
font-size: 24px;
background: none;
border: none;
cursor: pointer;
display: none;
}

/* Responsive Design */
@media (min-width: 100px) and (max-width: 1200px){
  .button-container {
    display: none; 
  }

.logo {
margin-left: 12px;
align-items: center;
gap: 10px; /* Adjust spacing */
flex-wrap: nowrap;
}
nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    width: 100%;
    text-align: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-links.active {
    display: flex;
}

.nav-links li {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    width: 100%;
}

.toggle-button {
  padding-right: 10px;
    display: block;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}
}

/* Buttons */


.btn {
  text-decoration: none;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.demo-btn {
  background-color: transparent;
  color: #000;
  border: 2px solid #000;
  white-space: nowrap;
}

.demo-btn:hover {
  background-color: #000;
  color: #fff;
}

.signin-btn {
  background-color: transparent;
  color: #000;
  border: 2px solid #000;
}

.signin-btn:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 1024px) {
  .navbar {
    flex-direction: column;
    text-align: center;
  }

  .nav-right {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .btn-nav{
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    width:90%;
  }
}




/* Hero Section */
.hero {
  text-align: center;
  margin-top: 100px;
  padding: 80px 0;
}

.hero h1 {
  font-size: 4.2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-btn {
  background-color: #007bff;
  color: #fff;
  border: none;
}

.hero-btn:hover {
  background-color: #0056b3;
}


/* WHY CHOOSE SECTION */
.why-choose {
  text-align: center;
  padding: 60px 0; /* Adjust spacing as needed */
  margin-bottom: 100px;

}

.why-choose h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.why-choose p {
  max-width: 800px; /* Control the text width */
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1rem;
  color: #555; /* Lighter text color */
}

/* SALIENT FEATURES SECTION */
.salient-features {
  text-align: center;
  padding: 60px 0;
  margin-bottom: 100px;
  border: 0px solid #333;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.salient-features h2 {
  font-size: 2rem;
  margin-bottom: 50px;
}

.salient-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.salient-feature-item {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.salient-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.salient-feature-item.signup-highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.salient-feature-item.signup-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s;
}

.salient-feature-item.signup-highlight:hover::before {
  animation: shine 0.8s ease-in-out;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.salient-feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #222;
}

.salient-feature-item.signup-highlight h3 {
  color: white;
}

.salient-feature-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.salient-feature-item.signup-highlight p {
  color: rgba(255, 255, 255, 0.9);
}

.signup-btn {
  background-color: #fff;
  color: #667eea;
  border: 2px solid #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.signup-btn:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

/* Responsive Design for Salient Features */
@media screen and (max-width: 1024px) {
  .salient-features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .salient-feature-item {
    padding: 25px 15px;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .salient-feature-item h3 {
    font-size: 1.2rem;
  }
  
  .salient-feature-item p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 640px) {
  .salient-features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .salient-feature-item {
    padding: 20px 15px;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
}

/* INDUSTRIES SECTION */
.industries {
  text-align: center;
  padding: 60px 0; /* Adjust spacing as needed */
  margin-bottom: 100px;
  border: 0px solid #333;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2); 
  

}

.industries h2 {
  font-size: 2rem;
  margin-bottom: 50px;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px; /* Spacing between cards */
  margin-top: 20px;
}

.industry {
  max-width: 250px;
  text-align: center;
}

.industry img {
  width: 50px; /* Adjust icon size */
  height: 50px;
  margin-bottom: 15px;
}

.industry h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.industry p {
  font-size: 0.95rem;
  color: #555; /* Lighter text color */
  line-height: 1.5;
}
/* HOW IT WORKS SECTION */
.how-it-works {
  text-align: center;
  padding: 60px 0; /* Adjust spacing as needed */
  border: 0px solid #333;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2); 
    margin-bottom: 100px;

  /* background-color: #fff; Light bluish background (optional) */
}

.how-it-works h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.how-it-works-steps {
  display: flex;
  flex-direction: column; /* Stack steps vertically */
  gap: 40px;
  max-width: 800px;       /* Limit content width */
  margin: 0 auto;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step p {
  font-size: 1rem;
  color: #555; /* Slightly lighter text color */
  line-height: 1.6;
}
/* KEY FEATURES SECTION */
.key-features {
text-align: center;
padding: 30px 15px; /* Reduced padding for mobile */
margin-bottom: 50px;
}

.key-features h2 {
font-size: 1.8rem;
margin-bottom: 30px;
}
.features-grid {
display: grid;
/* grid-template-columns: repeat(3, 1fr); */
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
}

.nested-grid {
display: grid;
grid-column: span 3; /* Span all three columns */
/* grid-template-columns: repeat(2, 1fr); Two columns for nested grid */
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
justify-content: center; /* Center the nested grid items */
padding-left: 200px;
padding-right: 200px;
}

.feature-card {
background-color: #fff; /* Card background */
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); /* Soft shadow */
transition: transform 0.3s ease;
}


/* .feature-card {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease;
width: 100%; 
box-sizing: border-box;  */



.feature-card:hover {
transform: translateY(-5px); /* Slight lift on hover */
}

.feature-card img {
width: 40px;  /* Adjust icon size */
height: 40px; /* Keep consistent aspect ratio if possible */
margin-bottom: 15px;
}

.feature-card h3 {
font-size: 1.2rem;
margin-bottom: 10px;
}

.feature-card p {
font-size: 1rem;
color: #555;
line-height: 1.5;
}
/* Media Query for Mobile Devices */
@media screen and (max-width: 1024px) {
.key-features h2 {
    font-size: 1.5rem;
}

.features-grid,
.nested-grid {
  display: grid;
  grid-column: span 1;
    grid-template-columns: 1fr; /* Single column on smaller screens */
    gap: 15px;
}

.nested-grid {
    padding-left: 10px;
    padding-right: 10px;
}

.feature-card img {
    width: 35px;
    height: 35px;
}

.feature-card h3 {
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 0.9rem;
}
}
/* HOW IT WORKS (FOUR STEPS) SECTION */
.hiw-steps-section {
  /* background-color: #fff;  */
  text-align: center;
  padding: 60px 0; /* Adjust as needed */
  margin-bottom: 100px;

}

.hiw-steps-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #000;
}

.hiw-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hiw-step {
  flex: 1 1 200px;        /* Allows the boxes to shrink/grow */
  max-width: 250px;       /* Controls maximum width of each box */
  background-color: transparent; /* No card background; adjust if desired */
  text-align: center;
}

.hiw-step-number {
  width: 50px;
  height: 50px;
  background-color: #fff; /* Circle background color */
  color: #000;            /* Circle text color */
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  border: 2px solid #ccc; /* Optional border around the circle */
}

.hiw-step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #000;
}

.hiw-step p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}
/* CTA SECTION */
.cta-section {
  text-align: center;
  padding: 60px 0; /* Adjust as needed */
  margin-bottom: 100px;

  /* background-color: #fff; Light background for contrast (optional) */
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000;
}

.contact-info {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #555;
}

.contact-info a {
  text-decoration: none;
  color: #000; /* Link color */
  margin: 0 5px;
  font-size: 20px;
}

.contact-info a:hover {
  text-decoration: underline;
}

.cta-btn {
  background-color: #000; /* Button background color */
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #333; /* Hover state */
}


.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  z-index: 1000;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.close-btn {
  margin-top: 10px;
  cursor: pointer;
  background: red;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
}

/* DEMO VIDEO SECTION */
.demo-video {
  text-align: center;
  padding: 60px 0;
  margin-bottom: 100px;
  border: 0px solid #333;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.demo-video h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000;
}

.demo-description {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.video-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  background: #000;
  aspect-ratio: 16/9; /* Maintain 16:9 aspect ratio */
}

.demo-video-player {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover; /* Ensures video covers the container while maintaining aspect ratio */
}


.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.video-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.video-overlay.hidden {
  display: none;
}

.play-button {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-bottom: 15px;
}

.play-button:hover {
  transform: scale(1.1);
}

.play-button svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.video-duration {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.video-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}

.video-feature .feature-icon {
  font-size: 1.5rem;
}

/* Responsive Design for Demo Video */
@media screen and (max-width: 1024px) {
  .demo-video h2 {
    font-size: 1.8rem;
  }
  
  .demo-description {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .video-container {
    margin: 0 20px 40px;
    aspect-ratio: 16/9; /* Maintain aspect ratio on tablets */
  }
  
  .video-features {
    gap: 30px;
  }
  
  .video-feature {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 640px) {
  .demo-video {
    padding: 40px 0;
  }
  
  .demo-video h2 {
    font-size: 1.5rem;
  }
  
  .demo-description {
    font-size: 0.9rem;
    padding: 0 15px;
  }
  
  .video-container {
    margin: 0 15px 30px;
    aspect-ratio: 16/9; /* Maintain aspect ratio on mobile */
  }
  
  .play-button svg {
    width: 60px;
    height: 60px;
  }
  
  .video-duration {
    font-size: 0.9rem;
  }
  
  .video-features {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .video-feature {
    font-size: 0.85rem;
  }
}

/*WHO WE ARE SUITED FOR Section Styling */
.suite {
padding: 60px 20px;
margin-bottom: 100px;
}

.section-title {
font-size: 2rem;
font-weight: bold;
color: #222;
position: relative;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 50px;

}

/* .section-title span {
width: 50px;
height: 3px;
background-color: red;
display: inline-block;
margin: 0 10px;
} */

/* Service Container */
.suite-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
gap: 30px;
max-width: 1100px;
margin: 40px auto;
}

/* Service Box */
.suite-box {
display: flex;
align-items: center;
background: #fff;
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
position: relative;
}

.suite-box:hover {
transform: translateY(-5px);
}

.icon {
font-size: 40px;
color: #333;
background: #ffdddd;
padding: 20px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 20px;
position: relative;
}

.icon::after {
content: '';
width: 20px;
height: 20px;
background: rgb(123, 171, 244);
opacity: 0.3;
border-radius: 50%;
position: absolute;
bottom: -5px;
right: -5px;
}

.content h3 {
font-size: 1.3rem;
font-weight: bold;
color: #222;
margin-bottom: 5px;
}

.content p {
font-size: 0.9rem;
color: #555;
}

/* Responsive */
@media (max-width: 1024px) {
.suite-container {
    grid-template-columns: 1fr;
}

.suite-box {
    flex-direction: column;
    text-align: center;
}

.icon {
    margin-bottom: 15px;
}
}


/* TESTIMONIAL SECTION */
.testimonial {
  text-align: center;
  padding: 60px 0; /* Adjust as needed */
  /* background-color: #f9f9f9; Optional background */
}
.testimonial h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #000;
}

.testimonial-icon {
  margin-bottom: 20px;
}

.testimonial-icon svg {
  width: 40px;
  height: 40px;
  fill: #007bff; /* Icon color */
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px; /* Limit text width */
  margin: 0 auto 30px; /* Center and add spacing */
  color: #333;
}

.testimonial-author {
  display: inline-block; /* So we can center it easily */
  text-align: center;
}

.author-name {
  font-weight: bold;
  margin-bottom: 5px;
  color: #000;
}

.author-title {
  font-size: 0.9rem;
  color: #666;
}

/* If you have an author photo, style it here */
.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}


/* FOOTER SECTION */
.site-footer {
  background-color: #000; /* Dark background */
  color: #fff;            /* Light text */
  padding: 40px 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
  justify-content: space-between;
  gap: 40px;
}

/* Footer Columns */
.footer-col {
  flex: 1 1 200px; /* Grows/shrinks, minimum 200px */
  min-width: 200px;
  margin-left: 0;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  text-decoration: none;
  color: #ccc; /* Lighter text for links */
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
}

/* Brand Column */
.footer-brand h3 {
  margin-left: 0;
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #f0b400; /* Gold-like color for the brand name, adjust as needed */
}

.footer-brand p {
  margin-left: 0;

  /* max-width: 220px; Limit text width */
  margin-bottom: 20px;
  color: #ccc;
  text-align: center;
}

/* Social Icons */
.footer-social a {
  color: #ccc;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
}

.attribution-section {
  margin-top: 1rem;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.attribution-section h4 {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: .5rem;
  text-align: center;
}

.attribution-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.attribution-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.attribution-links a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}




@media screen and (max-width: 1024px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}



@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* Base styles for mobile-first approach */

/* Medium devices (tablets, 1024px and up) */
@media (min-width: 1024px) {
.hero h1 {
    font-size: 3rem;
}

.features-grid {
    grid-template-columns: 1fr;
}

.nested-grid {
    grid-template-columns: 1fr;

}
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
.hero h1 {
    font-size: 4.2rem;
}

.features-grid {
    grid-template-columns: repeat(3, 1fr);
}

.nested-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 15px;
    padding-right: 15px;
}
}




