* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
 
}

:root {
     --font-inter: Inter, sans-serif;
  --color-current: currentColor;
  --color-transparent: transparent;
  --color-stroke: #eeeeee;
  --color-strokedark: #2d2f40;
  --color-hoverdark: #252a42;
  --color-titlebg: #adfff8;
  --color-titlebg2: #ffeac2;
  --color-titlebgdark: #46495a;
  --color-btndark: #292e45;
  --color-white: #ffffff;
  --color-black: #181c31;
  --color-blackho: #2c3149;
  --color-blacksection: #1c2136;
  --color-primary: #006bff;
  --color-primaryho: #0063ec;
  --color-meta: #20c5a8;
  --color-waterloo: #757693;
  --color-manatee: #999aa1;
  --color-alabaster: #fbfbfb;
  --color-zumthor: #edf5ff;
  --color-socialicon: #d1d8e0;
}

body {
    background-color: var(--color-black);                   /*rgb(6, 6, 42)*/
    font-family: var(--font-inter);
    color: var();
}
.container {
    width: 80%;
    margin: 0 auto;
}
header {
    position: fixed;
    background: var(--color-black);
    top: 0px;
    padding: 10px;
    width: 100%;
    border-bottom: 1px solid rgb(0, 0, 0,0.1);
    z-index: 99;
}
.header-grid  {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-h1 {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-h1 img {
    width: 20%;
}
.header-h1 h1 {
    color: var(--color-alabaster);
}
.header-nav ul {
    display: flex;
    list-style: none;
}
.header-nav ul li {
 color: var( --color-manatee);
 margin-left: 20px;
 cursor: pointer;
 transition: .2s ease-in-out;
 font-size: 14px;
}
.header-nav ul li:hover {
 color: var(--color-primaryho);
 margin-left: 20px;
}
.header-right {
    display: flex;
    align-items: center;
    justify-content: space-around;
    list-style: none;
    color: var(--color-waterloo);
    gap: 20px;
}
.header-right i:hover {
color: var(--color-primaryho);
cursor: pointer;
}
.header-button {
    padding: 15px 30px;
    background: var(--color-primary);
    color: var(--color-alabaster);
    border-radius: 50px;
    cursor: pointer;
}

.hero {
    padding: 10px;
    margin-top: 10rem;
}
.hero-grid-right {
    line-height: 1.7;
    font-size: 1rem;
}
.hero-grid-right h3,h1 {
    color: var(--color-alabaster);
}
.hero-grid-right p  {
    color: var(--color-manatee);
    margin-top: 1rem;
}
.hero-grid-right button {
    padding: 15px 30px;
    color: var(--color-alabaster);
    border-radius: 50px;
    background: var(--color-hoverdark);
    border: none;
    margin-top: 6rem;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    transition: .2s ease-in;
}
.hero-grid-right button:hover {
    background-color: var( --color-blackho);
}
.hero-grid-left {
    position: relative;
}

.hero-grid-left .pent {
position: absolute;
top: 50px;
left: -45px;
}
.star-1, .star-2 {
    position: absolute;
    bottom: 0;
    right: 0;
}
 .star-2 {
    right: -30px;
 }
.hero-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 50px;
}
.partners {
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
    border-top: 1px solid rgb(153, 154, 161,0.2);
    border-bottom: 1px solid rgb(153, 154, 161,0.2);
    /* opacity: 20%; */
    padding:  40px 10px;
}
.partners img {
    width: 7%;
    margin: 0 auto;
  
}
.features {
margin-top: 5rem;

}
.btn-feature {
    padding: 10px 30px;
    border: 1px solid rgb(255, 255, 255,0.3);
    border-radius: 50px;
    color: var(--color-alabaster);
    background: var( --color-blacksection);
    font-weight: 700;
}

.section-text {
    text-align: center;
    line-height: 1.5;
}
.section-text h1 {
    font-size: 2.5rem;
    margin-top: 2rem;
}
.section-text p {
    color: var(--color-manatee);
    margin-top: 1.5rem;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 2rem;
}
.card {
    width: 80%;
    background: var( --color-black);
    border-radius: 10px;
    padding: 50px;
    line-height: 1.4;
    height: 300px;
     border: 1px solid rgb(255, 255, 255,0.2);
     transition: .2s ease-in-out;
}
.card:hover {
    background-color: var(--color-btndark);
}
.card i {
    background: var(--color-primary);
    padding: 20px;
    font-size: 30px;
    margin-bottom: 5px;
    color: var(--color-alabaster);
    border-radius: 5px;
}
.card  h2 {
    color: var(--color-alabaster);
}
.card p {
    color: var(--color-manatee);
}
.resety {
display: flex;
align-items: center;
margin-top: 5rem;
 
}
.reset-grid {
  width: 30%;
}
.reset img {
    width: 100%;
    margin-top: 5rem;
} 

/* .reset-grid{
    width: 50%;
} */
.reset-grid img {
    width: 50%;
}

.new {
    margin-top: 5rem;
}
.new-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.5;
}
.new-img {
    width: 50%;
}
.new-img img {
    width: 90%;
}
.new-content span {
    color: var(--color-alabaster);
    font-size: 14px;
    background: var(--color-meta);
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 300;
}
.new-content h2 {
    color: var(--color-alabaster);
    margin-bottom: 2rem;
      font-weight: 300;
}
.new-content h1 {
    font-size: 40px;
}
.new-content p {
    color: var(--color-manatee);
    margin-top: 0.5rem;
}
.new-content-flex {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 2rem;
}
.new-content-flex h1 {
    font-size: 2rem;
    background-color: var(--color-blacksection);
    padding: 4px 10px;
    border-radius: 50%;
    border: 1px solid rgb(153, 154, 161,0.2);
}
.flex-resert {
 display: block;
}
.flex-resert button {
    padding: 10px;
    color: var(--color-alabaster);
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: .2s;
}
.know {
     font-weight: 100;
}
.know i {
    margin-left: 0.2rem;
}
.flex-resert button:hover {
    color: var(--color-primaryho);
}
.flex-resert button:hover i {
 animation: right 400ms ease forwards;
}
@keyframes right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(10px);
    }
}

.dot {
    height: 300px;
    background-size: contain;
    padding: 20px;
    position: relative;
}
.dot::after {
      content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
   background: url('public/images/features/dot.png');
   background-size: 200px;
  opacity: 0.1;
  z-index: 0;
}
.dot-flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--color-blacksection);
    border-radius: 20px;
    border: 1px solid rgb(238, 238, 238,0.1);
    position: absolute;
}
.dot-flex-1 {
    display: flex;
    align-items: center;
    gap: 10px;
   justify-content: space-around;
    color: var(--color-alabaster);
}
.dot-flex-1 h1 {
    padding: 15px;
    border-radius: 50px;
    background: var(--color-black);
     border: 1px solid rgb(238, 238, 238,0.1);
}
.dot-grid {
    position: absolute;
    bottom: -300px;
    display: flex;
   align-items: center;
   gap: 250px;
}
.dot-grid-left h1 {
 font-size: 2.5rem;
 
}
.dot-grid-left p {
color: var(--color-waterloo);
margin-top: 2rem;
}
.trust {
    margin-top: 30rem;
    padding: 25px;
}
.trust-div {
    background: var(--color-blacksection);
    padding: 40px;
    height: 500px;
    border-radius: 30px;
    text-align: center;
    background-size: 200px;
    position: relative;
    
}
.trust-div::after {
      content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
   background: url('public/images/features/dot.png');
   background-size: 200px;
  opacity: 0.1;
  z-index: 0;
  border-radius: 30px;
}
.trust-div h1 {
    font-size: 3rem;
    margin-top: 2rem;
}
.trust-div p {
    margin-top: 1rem;
    color: var(--color-waterloo);
}
.trust-flex {
    display: flex;
    justify-content: center;
    gap: 200px;
    margin-top: 3rem;
}
.img-4 , .img-5 {
    position: absolute;
}
.img-4 {
    width: 25%;
    left: 0;
    top: -100px;
}
.img-5 {
    width: 10%;
    bottom: 0;
    right: -5px;

}

.pack {
    margin-top: 5rem;
}
.section-text {
    position: relative;
}
.section-text::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%); 
  background: url('public/images/features/dot.png');
  background-size: 200px;
  width: 50%;
  height: 200px; 
  opacity: 0.1;
  z-index: 0;

}
.pack-icon {
    margin-top: 3rem;
    display: flex;
    position: relative;
}
.pack-icon .p-img-1 {
    position: absolute;
    padding: 20px;
    background-color:var(--color-blackho);
    font-size: 20px;
    border-radius: 5px;
 
}
.pack-icon .p-img-2 {
    position: absolute;
    padding: 20px;
    left: 30%;
    background-color: var(--color-blackho);
    font-size: 20px;
    border-radius: 5px;
 
}
.pack-icon .brand-7 {
    width: 0.1px;
    background-color: yellow;
    border-radius: 50%;
    position: absolute;
    padding: 20px;
    left: 50%;
    top: -10px;
    right: 0;  
}
.pack-icon .p-img-3 {
    position: absolute;
    padding: 15px;
    left: 70%;
    background-color: var(--color-blackho);
    font-size: 20px;
    border-radius: 5px;
}

.pack-flex-2 {
    margin-top: 10rem;
    position: relative;
}
.br-1 {
     position: absolute;
    padding: 15px;
    left: 200px;
    background-color: var(--color-blackho);
    font-size: 5px;
    border-radius: 5px;
}
.brand-7-1 {
      width: 0.1px;
    background-color: orangered;
    border-radius: 50%;
    position: absolute;
    padding: 20px;
    left: 500px;
    top: -10px;
    right: 0;  
}
.brand-7-2 {
      width: 0.1px;
    background-color: var(--color-primaryho);
    border-radius: 50%;
    position: absolute;
    padding: 20px;
    left: 950px;
    top: -10px;
    right: 0;  
}
.br-2 {
    position: absolute;
    padding: 15px;
    left: 800px;
    background-color: var(--color-blackho);
    font-size: 20px;
    border-radius: 5px;
}
.br-3 {
    position: absolute;
    padding: 15px;
    left: 1100px;
    background-color: var(--color-blackho);
    font-size: 20px;
    border-radius: 5px;
}
.join {
    margin-top: 20rem;
    padding: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--color-blacksection);
    border-radius: 20px;
    gap: 20px;
}
.join-content h1 {
    font-size: 2.5rem;
}
.join-content p{
   color: var(--color-waterloo);
   margin-top: 1rem;
}
.join-img {
    width: 25%;
}
.join-img img {
    width: 100%;
}
.join-btn button {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    background: var(--color-alabaster);
    color: var(--color-blacksection);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}
.join-btn button i{
    margin-left: 1rem;
}
.r {
    margin-top: 10rem;
}
.r p {
    margin-bottom: 3rem;
}
.swipe-divv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.swipe-div {
    width: 100%;
    padding: 20px;
     background: var( --color-black);
    border-radius: 10px;
    padding: 50px;
    line-height: 1.4;
     border: 1px solid rgb(255, 255, 255,0.2);
    
}
.swipe-div p {
    color: var(--color-waterloo);
    margin-top: 2rem;
}
.swp {
    display: flex;
    justify-content: space-between;
    color: var(--color-alabaster);
}
hr {
    opacity: 20%;
    margin-top: 2rem;
}
  .pricing-container {
            display: flex;
            width: 100%;
            flex-wrap: wrap;
            justify-content: space-around;
            margin-top: 5rem;
        }

        .pricing-card {
            background-color: var(--color-blacksection);
            border-radius: 12px;
            padding: 2rem;
            width: 100%;
            max-width: 350px;
            position: relative;
            display: flex;
            flex-direction: column;
            min-height: 500px;
             border: 1px solid rgb(255, 255, 255,0.1);
        }

        .price {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--color-alabaster);
        }

        .price span {
            font-size: 1rem;
            color:var(--color-titlebgdark);
            font-weight: normal;
        }

        .plan-name {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .plan-description {
            color: #8a8f9d;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .features {
            list-style: none;
            margin-bottom: auto;
            border-top: 1px solid rgb(255, 255, 255,0.2);
            padding: 20px;
        }

        .features li {
            color: #8a8f9d;
            margin-bottom: 1.2rem;
            padding-bottom: 1.2rem;
           
        }

        .features li:last-child {
            border-bottom: none;
        }

        .cta-button {
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
            font-weight: 600;
            margin-top: 2rem;
            font-size: 1.1rem;
              transition: transform 0.2s;
        }
        .cta-button:hover {
               color: var(--color-primaryho);
        }
        .cta-button svg {
            margin-left: 0.5rem;
            transition: transform 0.2s;
        }

        .cta-button:hover svg {
            transform: translateX(5px);
        }

        .popular-tag {
            position: absolute;
            top: 0;
            right: 10px;
            background-color: #0070f3;
            color: white;
            padding: 0.5rem 1rem;
            font-weight: 600;
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
            writing-mode: vertical-lr;
            text-orientation: upright;
            letter-spacing: 1px;
            font-size: 0.5rem;
            padding-top: 1rem;
            padding-bottom: 1rem;
            
        }

.form {
    background: var(--color-hoverdark);
    padding: 50px;
    border-radius: 10px;
    margin-top: 5rem;
}
.form-container {
display: flex; 
 gap: 5rem;
 align-items: center;
 justify-content: space-between;

}

.form-flex {
    background: var(--color-black);
    padding: 4rem;
    width: 100%;
    border-radius: 10px;
}
.form-flex h1 {
    font-size: 2rem;
}
.input-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 10px;
}
input:focus::placeholder {
    color: var(--color-alabaster);
}
input:focus,textarea:focus {
    border: none;
    outline: none;
    border-bottom: 1px solid rgb(255, 255, 255,0.5);
}
input {
    margin-top: 3rem;
    border: none;
    background: transparent;
    border-bottom: 1px solid rgb(255, 255, 255,0.1);
    padding: 10px;
}
textarea {
      margin-top: 3rem;
    background: transparent;
    width: 100%;
    height: 100%;
    border: none;
     border-bottom: 1px solid rgb(255, 255, 255,0.1);
}
.f-f-h1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.f {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.f p {
    color: var(--color-waterloo);
}
.f input {
    margin: 0;
    background-color: var(--color-blacksection);
}
.f-f-h1 button {
      padding: 15px 30px;
    border: none;
    border-radius: 30px;
    background: var(--color-btndark);
    color: var(--color-zumthor);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}
.f-f-h1 button i {
    margin-left: 1rem;
}


/* Footer Styles */
.footer {
    background-color: var(--color-black);
    color: var(--color-waterloo);
    padding-top: 80px;
    position: relative;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 24px;
    margin-right: 10px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-alabaster);
}

.footer-desc {
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-contact {
    margin-top: 20px;
}

.contact-label {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-email {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-alabaster);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-email:hover {
    color: var(--color-primary);
}
.form-content {
    line-height: 1.6;
}
.form-content h1 {
    margin-bottom: 1rem;
}
.form-content h3 {
    margin-bottom: 2rem;
    color: var(--color-alabaster);
}
.form-content p {
    color: var(--color-waterloo);
}
.footer-links {
    display: flex;
    gap: 80px;
}

.footer-links-column h3,
.footer-newsletter h3 {
    color: var(--color-alabaster);
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-links-column ul {
    list-style: none;
}

.footer-links-column ul li {
    margin-bottom: 15px;
}

.footer-links-column ul li a {
    color: var(--color-waterloo);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links-column ul li a:hover {
    color: var(--color-alabaster);
}

.footer-newsletter {
    max-width: 300px;
}

.footer-newsletter p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-alabaster);
    padding: 12px 40px 12px 0;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form input:focus {
    border-color: var(--color-primary);
}

.newsletter-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--color-alabaster);
    cursor: pointer;
    font-size: 16px;
    transition: color 0.2s;
}

.newsletter-btn:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.footer-bottom-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.footer-bottom-links li a {
    color: var(--color-waterloo);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links li a:hover {
    color: var(--color-alabaster);
}

.footer-copyright p {
    color: var(--color-waterloo);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: var(--color-waterloo);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 18px;
}

.social-icon:hover {
    color: var(--color-alabaster);
}



.back-to-top:hover {
    background-color: var(--color-primaryho);
}



iframe {
    width: 100%;
    margin-top: 3rem;
}
/* Media queries for footer */
@media (max-width: 1024px) {
    .footer-main {
        flex-direction: column;
        gap: 50px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}







/* ========================================= */
/*              RESPONSIVE STYLES            */
/* ========================================= */

/* --- Tablet and Smaller Laptops (e.g., <= 1024px) --- */
@media (max-width: 1024px) {
    .container {
        width: 95%; /* Slightly more space */
    }

    .header-grid {
        /* Allow items to wrap if needed, though likely fits */
        flex-wrap: wrap;
    }
    .header-nav ul li {
        margin-left: 15px; /* Reduce nav spacing */
    }
    .header-right {
        gap: 15px; /* Reduce right side spacing */
    }
    .header-button {
        padding: 12px 25px; /* Slightly smaller button */
    }

    .hero-grid {
        gap: 50px; /* Reduce gap */
        align-items: center; /* Vertically align items if they differ in height */
    }
    .hero-grid-right h1 {
        font-size: 1.8rem; /* Adjust heading size */
    }
     .hero-grid-left img:not(.pent):not(.star-1):not(.star-2) { /* Ensure main image scales */
        max-width: 100%;
        height: auto;
     }

    .grid-cards {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 30px;
    }
    .card {
        width: 100%; /* Take full width of grid column */
        height: auto; /* Let content define height */
        padding: 40px;
    }

    .new-flex {
        gap: 30px; /* Add gap for potentially smaller image/text */
        align-items: center;
    }
    .new-content h1 {
        font-size: 30px; /* Adjust heading size */
    }
    .new-img img {
        max-width: 100%; /* Ensure image scales */
        height: auto;
    }
    .new-content-flex {
        justify-content: flex-start; /* Align items left */
        gap: 20px; /* Add some gap */
    }

    .dot-flex {
        padding: 15px;
        flex-wrap: wrap; /* Allow wrapping if needed */
        justify-content: center;
    }
    .dot-flex-1 {
        margin: 5px 10px; /* Add spacing when wrapped */
    }
    .dot-grid {
        gap: 50px; /* Reduce gap significantly */
        align-items: center;
    }
    .dot-grid-left h1 {
        font-size: 2rem;
    }
    .dot-grid-right img {
        max-width: 100%;
        height: auto;
    }

    .trust {
        margin-top: 25rem; /* Adjust spacing */
    }
     .trust-div h1 {
        font-size: 2.5rem;
    }
    .trust-flex {
        gap: 100px; /* Reduce gap */
        flex-wrap: wrap; /* Allow wrapping */
        justify-content: center;
    }
    .trust-div .img-4 { /* Adjust position/size */
        width: 20%;
        top: -80px;
    }
     .trust-div .img-5 {
        width: 8%;
     }
}


/* --- Mobile Devices (e.g., <= 768px) --- */
@media (max-width: 768px) {
    header {
        padding: 20px 0; /* Adjust header padding */
        position: static; /* Or 'sticky' if you prefer it stays */
        /* If static, content below will start right after it */
    }
     .header-grid {
        justify-content: space-between;
    }
    .header-nav {
        display: none; /* Hide desktop nav */
    
    }
    .header-right li {
        display: none; /* Hide "Sign In" text */
    }
     .header-right .header-button {
         display: none; /* Hide Sign Up button */
          /* Consider showing a smaller icon-button instead */
     }
     .header-right {
        gap: 20px; /* Adjust gap for remaining icons */
     }
     .header-h1 img { /* Ensure logo doesn't get too big */
        width: 30px;
        height: 30px;
     }
     .header-h1 h1 {
        font-size: 1.5rem;
     }

    .hero {
        margin-top: 2rem; /* Adjust top margin since header might be static */
        padding: 20px 0;
    }
    .hero-grid {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 40px;
        text-align: center;
    }
    .hero-grid-left {
        order: 2; 
    }
    .hero-grid-right {
        order: 1;
        line-height: 1.6;
    }
    .hero-grid-right h3 {
        font-size: 0.9rem;
    }
    .hero-grid-right h1 {
        font-size: 1.6rem; /* Further reduce heading size */
    }
    .hero-grid-right p {
        font-size: 0.95rem;
    }
    .hero-grid-right button {
        margin-top: 2rem;
        margin-bottom: 2rem; /* Add space below button */
        padding: 15px 40px; /* Ensure button is easy to tap */
        font-size: 16px;
    }
    .hero-grid-left .pent,
    .hero-grid-left .star-1,
    .hero-grid-left .star-2 {
        display: none; /* Hide decorative shapes */
    }

    .partners {
        margin-top: 3rem;
        flex-wrap: wrap; /* Allow logos to wrap */
        justify-content: center; /* Center wrapped logos */
        gap: 25px;
        padding: 30px 10px;
    }
    .partners img {
        width: 25%; /* Adjust logo size */
        height: auto;
    }

    .features {
        margin-top: 3rem;
    }
    .section-text h1 {
        font-size: 1.8rem;
    }
     .section-text p {
        font-size: 0.95rem;
     }
    .grid-cards {
        grid-template-columns: 1fr; /* 1 column */
        gap: 20px;
        margin-top: 2rem;
    }
    .card {
        padding: 30px;
    }
    .card i {
        font-size: 25px;
        padding: 15px;
    }
     .card h2 {
        font-size: 1.1rem;
     }
     .card p {
        font-size: 0.9rem;
     }

    .new {
        margin-top: 3rem;
    }
    .new-flex {
        flex-direction: column; /* Stack items */
        text-align: center;
    }
    .new-img {
        width: 100%;
        order: 2; /* Image below text */
        margin-top: 2rem;
    }
    .new-content {
        width: 100%;
        order: 1;
    }
    
     section.new:nth-of-type(2) .new-flex { /* More specific selector */
         flex-direction: column; /* Keep stacking */
     }
     section.new:nth-of-type(2) .new-img {
         order: 2; /* Keep image below */
     }
     section.new:nth-of-type(2) .new-content {
         order: 1;
     }
    .new-content h1 {
        font-size: 1.8rem;
    }
     .new-content p {
         font-size: 0.95rem;
     }
    .new-content-flex {
        flex-direction: column; /* Stack number/text */
        align-items: center; /* Center items */
        gap: 1rem;
    }
    .new-content-flex .num2 {
        text-align: center; /* Center text within its block */
    }
     .new-content-flex .num2 h2 {
        font-size: 1rem;
     }
      .new-content-flex .num2 p {
        font-size: 0.9rem;
     }
     .flex-resert {
        margin-top: 1rem;
        justify-content: center; /* Center the "Know More" button */
     }


    /* Dot Section - Needs significant adjustment due to absolute positioning */
    .dot {
        height: auto; /* Remove fixed height */
        padding: 20px 0;
        margin-bottom: 3rem; /* Add space below */
    }
    .dot::after {
        display: none; /* Hide dot background on mobile */
    }
    .dot-flex {
        position: static; /* Remove absolute positioning */
        flex-direction: column; /* Stack items */
        gap: 20px;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 3rem; /* Space before the grid content */
    }
    .dot-flex-1 h1 {
        font-size: 1.5rem;
        padding: 10px;
    }
     .dot-flex-1 h3 {
        font-size: 1rem;
     }
    .dot-grid {
        position: static; /* Remove absolute positioning */
        flex-direction: column; /* Stack items */
        gap: 30px;
        bottom: auto; /* Reset */
        text-align: center;
    }
    .dot-grid-left {
       order: 1; /* Text first */
    }
     .dot-grid-right {
       order: 2; /* Image second */
    }
    .dot-grid-left h1 {
        font-size: 1.8rem;
    }
     .dot-grid-left p {
        font-size: 0.95rem;
     }


    .trust {
        margin-top: 4rem; /* Adjust spacing after dot refactor */
        padding: 20px 0;
    }
    .trust-div {
        height: auto; /* Remove fixed height */
        padding: 40px 20px;
    }
     .trust-div::after {
        display: none; /* Hide dots on mobile */
     }
    .trust-div h1 {
        font-size: 2rem;
    }
    .trust-div p {
        font-size: 0.95rem;
    }
    .trust-flex {
        flex-direction: column; /* Stack stats */
        gap: 30px;
        margin-top: 2rem;
    }
     .trust-content h1 {
        font-size: 2.2rem; /* Adjust stat numbers */
     }
     .trust-content p {
        font-size: 0.9rem; /* Adjust stat text */
     }
    .trust-div .img-4,
    .trust-div .img-5 {
        display: none; /* Hide absolute images */
    }
}

/* --- Optional: Very Small Mobile Devices (e.g., <= 480px) --- */
@media (max-width: 480px) {
    h1 { /* Further reduce some base heading sizes if needed */
        /* Example: font-size: 1.5rem; */
    }
    .header-h1 h1 {
        font-size: 1.3rem; /* Smaller logo text */
    }
     .header-right {
        gap: 15px; /* Even less gap */
     }

    .hero-grid-right h1 {
        font-size: 1.5rem;
    }

    .partners img {
        width: 35%; /* Logos might need more space */
    }

     .section-text h1 {
        font-size: 1.6rem;
    }

    .new-content h1 {
        font-size: 1.6rem;
    }

    .dot-grid-left h1 {
        font-size: 1.6rem;
    }

     .trust-div h1 {
        font-size: 1.8rem;
    }
     .trust-content h1 {
        font-size: 2rem;
     }
}