@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Merienda:wght@300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Protest+Riot&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.cdnfonts.com/css/berrybold');
/* header */
.header {
    background-color: #ffffff;
    /* padding: 30px 0; */
    border-bottom: 1px solid white;
}
/* .header .navbar-brand img {
    width: 100px;
} */
 .header h2 {
    color: black;
    font-family: 'BERRYBOLD', sans-serif;
    font-size: 30px;
    letter-spacing: 1px;
 }
/* .header .nav li {
    font-family: "Poppins", serif;
    font-size: 16px;
    color: white;
    
} */
 /* .header .nav-item a {
    color: rgb(255, 255, 255);
    font-size: 17px;
    font-family: "Poppins", serif;
 } */

.navbar-collapse {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navbar-nav {
  margin: 0 auto; /* Centers the menu */
}

.button {
  margin-left: auto; /* Pushes the button to the end */
}
.header .button a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 19px;
    font-weight: 700;
    /* background-color: #000000; */
    padding: 10px 25px;
    border-radius: 5px;
    /* font-family: "Poppins", serif; */
    font-family: "Inter", "Inter Placeholder", sans-serif;
}
.header .button a:hover {
    color: #2F80ED;
}
/* bannar */
.bannar {
    padding-top: 30px;
}
.bannar .heading h2 {
    font-size: 56px;
   font-weight: 700;
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.03em;
    line-height: 1.1em;
}
.bannar .heading span {
    color: #4F86F7;
}
.bannar .parh p {
    font-size: 17px;
    color: rgb(77, 77, 77);
    font-family: "Poppins", sans-serif;
}

/* Used for centering the button for the demo */

.connect-button {
    /* --- Positioning and Layout --- */
    position: relative; /* Required for the pseudo-element to be positioned correctly */
    display: inline-block;
    /* Top, Right, Bottom, Left. Extra right padding for the arrow area. */
    padding: 11px 70px 11px 35px;

    /* --- Appearance and Background --- */
    background: linear-gradient(90deg, #4F86F7 0%, #768de0 100%);
    border: none;
    border-radius: 10px; /* This creates the fully rounded "pill" shape */
    box-shadow: 0 4px 12px rgba(248, 113, 89, 0.3);

    /* --- Text Styling --- */
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700; /* Semibold often looks better than full bold */
    text-align: center;
    
    /* --- Interactivity --- */
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    
    /* --- Text Rendering Hint --- */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.connect-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(247, 107, 84, 0.35);
}

/* --- The Arrow Section --- */
.connect-button::after {
    content: '›';
    position: absolute;
    top: -5px;
    right: 0;
    bottom: 0;
    width: 60px; 
    border-top-right-radius: 50px;   
    border-bottom-right-radius: 50px;
    border-top-left-radius: 22px;    
    border-bottom-left-radius: 22px; 
    box-shadow: inset 1.5px 0px 1px -1px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 400;
}
.connect-button a {
    text-decoration: none;
    color: white;
    font-family: "Poppins", serif;
    font-weight: 600;
    font-size: 22px;
}
.bannar .viwers h2 {
    font-size: 18px;
    font-weight: 600;
    font-family: "Poppins", serif;
}
/* logos */
.logos .heading h2 {
    font-size: 50px;
    font-weight: 600;
    font-family: "Poppins", serif;
    letter-spacing: -0.04em;
    padding-top: 135px !important;
}
.logos .heading span {
    color: #4F86F7;
}
.logo-showcase-container {
    position: relative;
    width: 750px;
    height: 310px;
}

/* 
  Common styles for every logo circle.
  - position: absolute is key for precise placement.
  - width/height and border-radius: 50% create the circle.
  - display: flex and its properties center the image inside the circle.
*/
.logo-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #f6f7f9; /* Light gray matching the original image */
    border-radius: 50%;
    border: 5px solid rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease; /* Optional: adds a smooth effect for interactions */
}

/* A subtle hover effect to make the design more interactive */
.logo-circle:hover {
    transform: scale(1.10); 
    z-index: 10; /* Brings the hovered circle to the front */
}

/* Common style for the images inside the circles */
.logo-circle img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain; /* Ensures the image fits without being stretched */
}


/* --- Specific Positioning for Each Logo --- */
/* Each ID targets one circle and sets its 'top' and 'left' position. */
/* The max-width for each image is adjusted for a balanced look. */

/* Top Row Positioning */
#logo1 { top: 5px; left: 0; }
#logo1 img { max-width: 90%; } /* 'in' logo */

#logo2 { top: 5px; left: 145px; }
#logo2 img { max-width: 65%; } /* 'profitl' */

#logo3 { top: 0; left: 290px; }
#logo3 img { max-width: 55%; } /* 'Hyatt' */

#logo4 { top: 5px; left: 435px; }
#logo4 img { max-width: 60%; } /* 'Bull' */

#logo5 { top: 10px; left: 580px; }
#logo5 img { max-width: 65%; } /* 'Plants Pal' */


/* Bottom Row Positioning */
#logo6 { top: 130px; left: 72px; }
#logo6 img { max-width: 50%; } /* 'Tree' */

#logo7 { top: 130px; left: 217px; }
#logo7 img { max-width: 70%; } /* 'Infrasonic' */

#logo8 { top: 130px; left: 362px; }
#logo8 img { max-width: 65%; } /* 'Common Country' */

#logo9 { top: 135px; left: 507px; }
#logo9 img { max-width: 70%; } /* 'Thrive Mind' */

/* ShortForm */
.ShortForm .heading h2 {
    font-size: 89px;
    font-weight: 700;
    font-family: "Poppins", serif;
    letter-spacing: -3px;
    line-height: 90px;
    padding-top: 46px;
}
.ShortForm .heading span {
    color: #4F86F7;
}
.stories-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Base Story Card Style */
.story-card {
    position: relative;
    width: 320px;
    height: 568px; /* 16:9 Aspect Ratio */
    background-color: #E9E9E9;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.story-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Video Thumbnail & Play Button */
.video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.video-thumbnail:hover .play-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-button {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid white;
    margin-left: 5px; /* Optical centering */
}

.play-overlay::before {
    content: '';
    width: 100px;
    height: 70px;
    background-color: #E54D42;
    position: absolute;
    border-radius: 20px;
    z-index: -1;
}


/* Card 1: Brand */
.brand-box {
    background-color: #0C4B33;
    border-radius: 20px;
    padding: 20px 25px;
    color: white;
    text-align: center;
}

.brand-text-top {
    font-size: 1.2rem;
    margin: 0 0 10px 0;
}

.brand-text-bottom {
    font-family: 'Creepster', cursive;
    font-size: 3.5rem;
    margin: 10px 0 0 0;
    line-height: 1;
    letter-spacing: 1px;
}

.brain-img {
    width: 100%;
}

.description {
    font-size: 0.75rem;
    color: #555;
    margin-top: 15px;
    line-height: 1.6;
}

/* Card 2: Grow Up */
.swoosh {
    position: absolute;
    width: 150%;
    height: 150px;
    background-color: #38A853;
    border-radius: 50%;
    z-index: 0;
}
.swoosh-top {
    top: -80px;
    left: -25%;
}
.swoosh-bottom {
    bottom: -80px;
    right: -25%;
}
.story-card .story-content, .story-card .story-footer {
    position: relative;
    z-index: 1;
}

.growup-text-top {
    color: #38A853;
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.computer-thumbnail {
    background-color: #D9D9D9;
}
.computer-img {
    width: 100%;
}
.screen-content {
    position: absolute;
    width: 53%;
    height: 40%;
    top: 17%;
    left: 23.5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.screen-person-img {
    width: 60%;
    border-radius: 5px;
}
.screen-text {
    color: #333;
    font-size: 1.7rem;
    font-weight: 500;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    transform: rotate(-5deg);
}

/* Card 3: Yoga */
.yoga-card {
    background: url('https://i.imgur.com/k28b05V.jpg') no-repeat center center/cover;
    justify-content: center;
}
.yoga-card .story-content {
    padding-bottom: 0;
}
.yoga-card .video-thumbnail {
    height: 100%;
}
.yoga-text-container {
    color: white;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}
.yoga-text-container p {
    font-family: 'Playfair Display', serif;
    margin: 5px 0;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.yoga-text-container p:first-child {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 4px;
}
.yoga-card .story-footer {
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    padding-top: 20px;
}

/* Footer Player Bar */
.story-footer {
    padding: 15px 20px;
}
.player-bar {
    background-color: #4F86F7;
    border-radius: 10px;
    height: 38px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 10px;
    color: white;
}
.timestamp {
    font-size: 0.8rem;
    font-weight: 500;
}
.progress-track {
    flex-grow: 1;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}
.progress-played {
    height: 100%;
    background-color: white;
    border-radius: 3px;
    position: relative;
}
.progress-played::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
}
.player-logo {
    line-height: 0; /* Helps align SVG properly */
}
.more-options {
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 1.5px;
    font-weight: bold;
    cursor: pointer;
}

/* --- Container for the Cards --- */
.showcase-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

/* --- Individual Card Styling --- */
.video-card {
    width: 320px;
    height: 570px;
    background-color: #f7f7f7;
    border-radius: 24px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    /* Transition for the click animation */
    transition: transform 0.15s ease-out;
}

/* --- Click Animation State --- */
.video-card.active {
    transform: scale(0.97);
}

/* --- Video Wrapper Area --- */
.video-wrapper {
    flex-grow: 1;
    position: relative;
    background-size: cover;
    background-position: center;
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: none; /* Hidden by default */
}

/* --- Poster (Thumbnail) Styling --- */
.video-poster {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
}

.youtube-play-button {
    background-color: #ff0000;
    width: 90px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.youtube-play-button::after {
    content: '';
    border-style: solid;
    border-width: 15px 0 15px 22px;
    border-color: transparent transparent transparent white;
    margin-left: 5px;
}

/* --- Card Specific Poster Designs --- */

/* Card 1: "Think of your brand" */
#card-1 .poster-content {
    background-color: #1a4731; /* Dark Green */
    color: white;
    width: 85%;
    height: 50%;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#card-1 .poster-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.1;
}
#card-1 .brain-icon {
    width: 90px;
    margin-bottom: 10px;
}

/* Card 2: "When you grow up" */
#card-2 .poster-content {
    text-align: center;
}
#card-2 .poster-text {
    color: #4caf50; /* Green text */
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
#card-2 .computer-icon {
    width: 220px;
    margin-bottom: 20px;
}

/* Card 3: "Sampoorna Yoga" */
#card-3 .video-wrapper {
    background-image: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?q=80&w=1820');
}
#card-3 .poster-content {
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    text-align: center;
}
#card-3 .poster-text {
    font-family: serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
#card-3 .poster-title {
    font-family: serif;
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* --- Footer Bar Styling --- */
.card-footer {
    height: 60px;
    background-color: #E65A51; /* Red-orange from image */
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: white;
}
.footer-play-icon { font-size: 1.5rem; }
.footer-time { font-size: 0.9rem; margin-left: 8px; }
.progress-bar {
    flex-grow: 1;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    margin: 0 15px;
}
.footer-logo { font-size: 1.6rem; margin-right: 15px; }
.footer-dots { font-weight: bold; font-size: 1.5rem; letter-spacing: -2px; }
/* longform */
.longform {
    padding-bottom: 50px;
}
.longform .videoo {
   display: flex;
   justify-content: center;
}
.longform .video2 {
    padding-top: 70px;
}
.longform .video3 {
    padding-top: 70px;
    padding-bottom: 70px;
}
.longform .heading h2 {
    font-size: 89px;
    font-weight: 700;
    font-family: "Poppins", serif;
    letter-spacing: -3px;
    line-height: 90px;
    padding-top: 46px;
}
.longform .heading span {
    color: #4F86F7;
}
/* brands */
.brands .heading h2 {
    font-size: 50px;
    font-weight: 600;
    font-family: "Poppins", serif;
    line-height: 1em;
    letter-spacing: -0.04em;
}
.brands .heading span {
    color: #4F86F7;
}
.brands .pointone h2 {
    font-family: "Poppins", serif;
    font-size: 74px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.09em;
    line-height: 0.9em;
    color: var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(15, 15, 15));
    margin-left: 10px;
}
.brands .pointone span {
    color: #4F86F7;
    font-size: 54px;
}
.brands .pointone h3 {
    font-size: 18px;
    font-family: "Poppins", serif;
    margin-left: 10px;
    font-weight: 500;
}
.brands .pointone {
   border-style: dashed;
   /* border-radius: 20px; */
   border-bottom-width: 1px;
   border-color: var(--token-b7e61bf6-93c6-45ca-b0e7-ce895d683d69, rgba(0, 0, 0, 0.4));
   border-left-width: 1px;
    border-right-width: 1px;
    border-style: dashed;
    border-top-width: 1px;
    background-color: rgb(255, 255, 255);
    border-radius: 30px;
    opacity: 1;
    width: 100%;
    padding: 10px 10px;
}
/* service */
/* --- Main Layout Container --- */
.main-container {
    max-width: 1300px;
    width: 100%;
    border-radius: 16px;
    padding-top: 24px;
}
.service {
    padding-top: 100px;
}
.service .heading h2 {
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    font-family: "Poppins", serif;
    letter-spacing: -.05em;
    line-height: 1.0em;
}
/* --- Header Section --- */
header {
    text-align: center;
    margin-bottom: 80px;
}

.header-pill {
    display: inline-block;
    background-color: #E0E0E0;
    color: #555;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #111;
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto; /* Center the heading if it's narrower than the container */
}

/* --- Two-Column Services Layout --- */
.services-layout {
    display: grid;
    grid-template-columns: 1fr 2.5fr; /* Left column is smaller */
    gap: 100px; /* Space between the navigation and content */
}

/* --- Left Side Navigation --- */
.services-nav ul {
    list-style: none;
    position: sticky; /* Makes the nav stick on scroll */
    top: 60px; /* Distance from the top when sticking */
}

.services-nav li {
    margin-bottom: 24px;
}

.services-nav a {
    text-decoration: none;
    color: #777;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.services-nav a:hover {
    color: #111;
}

.services-nav a.active {
    color: #111;
}

/* The blue arrow for the active link */
.services-nav a.active::before {
    /* content: '▶'; */
    color: #2F80ED; /* A nice, modern blue */
    margin-right: 12px;
    font-size: 0.8em;
}

/* --- Right Side Content --- */
.services-content section {
    margin-bottom: 80px; /* Space between each service block */
}

.services-content section:last-child {
    margin-bottom: 0;
}

/* h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
} */
 .main-container .services-layout li i {
    padding: 8px;
    /* display: none; */
 }
 .services-content h2 {
    font-family: "Poppins", serif;
    font-style: normal;
    font-weight: 600;
    /* font-weight-bold: 900; */
    letter-spacing: -.04em;
    line-height: 1em;
    margin-left: 15px;
    color: #000;
 }
 .services-content h2:hover {
    color: #2F80ED;
 }
.services-content #motion-graphics {
    /* background-color: #f6f6f6; */
    background-color: var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(245, 247, 249));
    padding: 15px 15px;
    border-radius: 30px;
}
.services-content #ui-ux {
    background-color: var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(245, 247, 249));
    padding: 15px 15px;
    border-radius: 30px;
}
.services-content #video-editing {
    background-color: var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(245, 247, 249));
    padding: 15px 15px;
    border-radius: 30px;
}
.services-content #graphic-design {
    background-color: var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(245, 247, 249));
    padding: 15px 15px;
    border-radius: 30px;
}
.services-content p {
    font-size: 1.1rem;
    color: #1e1e1e;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 30px;
    letter-spacing: -.03em;
    font-size: 18px;
    max-width: 650px; /* Keeps text lines from getting too long */
    margin-left: 15px;
}
.services-content a {
    text-decoration: none;
}
.services-content i {
    font-size: 36px;
}
.tags-container {
    display: flex;
    flex-wrap: wrap; /* Allows tags to wrap to the next line */
    gap: 12px; /* Space between tags */
}

.tag {
    background-color: #EFEFEF;
    color: #555;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid gainsboro;
}

/* --- Responsive Design for Tablets and Mobile --- */
@media (max-width: 1024px) {
    .main-container {
        padding: 40px;
    }

    .services-layout {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
        gap: 60px;
    }
    
    .services-nav ul {
        position: relative; /* Un-stick the nav */
        top: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 10px 20px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    body {
        padding: 20px 10px;
    }
    
    .main-container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2.5rem;
    }
}
/* diference */
.diference {
    padding-top: 150px;
}
.diference .heading h2 {
    font-size: 48px;
    font-weight: 600;
    font-family: "Poppins", serif;
    letter-spacing: -.05em;
    line-height: 1.0em;
    /* paragraph-spacing: 40px; */
}
.points {
    margin-left: 400px;
}
.points .poione h2 {
    font-size: 27px;
    font-family: "Poppins", serif;
    font-weight: 600;
}
.points .poitwo h2 {
    font-size: 27px;
    font-family: "Poppins", serif;
    font-weight: 600;
    color: #2F80ED;
}
.points .poione {
    align-items: center;
    background-color: var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, #f5f7f9);
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    height: min-content;
    justify-content: center;
    overflow: hidden;
    padding: 20px !important;
    position: relative;
    width: 100%;
    will-change: var(--framer-will-change-override, transform);
}
.points .poitwo {
    align-items: center;
    background-color: var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, #000000);
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    height: min-content;
    justify-content: center;
    overflow: hidden;
    padding: 20px !important;
    position: relative;
    width: 100%;
    will-change: var(--framer-will-change-override, transform);
}
/* .points h2 {
    font-size: 27px;
    font-weight: 500;
}
.points .twoo h2 {
    font-size: 277px;
    font-weight: 500;
} */
.points .poione li i {
    padding: 8px;
}
.points .poione i {
    font-size: 18px;
}
.points .poione li {
    font-size: 18px;
    padding: 5px 0;
}

.points .poitwo li i {
    padding: 8px;
}
.points .poitwo i {
    font-size: 18px;
    color: #2F80ED;
}
.points .poitwo li {
    font-size: 18px;
    color: white;
    padding: 5px 0;
}
/* faq */
.faqco {
    padding-bottom: 40px;
    padding-top: 40px;
}
.faqco .faqimg h2 {
    font-size: 48px;
    font-style: normal;
    font-style-bold: normal;
    font-variation-axes: normal;
    font-weight: 600;
    font-weight-bold: 900;
    letter-spacing: -.05em;
    line-height: 1.1em;
    paragraph-spacing: 40px;
}
.faqco .faqcont h5 {
    font-size: 22px;
}
.faqco .faqimg p {
    font-size: 18px;
    color: #686868;
    font-weight: 400;
    margin-bottom: 10px;
}
.faqco .faqcont i {
    display: flex;
    justify-content: end;
    font-weight: 100;
    font-size: 18px;
    margin-right: 100px;
    top: 50px;
}
.faqco .faqcont .one {
    background-color: #eeeeee;
    padding: 30px 10px;
    margin-bottom: 10px;
    border-radius: 30px;
}
.faqco .faqcont .one {
    padding-left: 30px;
}
.faqco .faqcont .two {
    background-color: #eeeeee;
    padding: 30px 10px;
    margin-bottom: 10px;
    border-radius: 30px;
}
.faqco .faqcont .two {
    padding-left: 30px;
}
.faqco .faqcont .thre {
    background-color: #eeeeee;
    padding: 30px 10px;
    margin-bottom: 10px;
    border-radius: 30px;
}
.faqco .faqcont .thre {
    padding-left: 30px;
}
.faqco .faqcont .four {
    background-color: #eeeeee;
    padding: 30px 10px;
    margin-bottom: 10px;
    border-radius: 30px;
}
.faqco .faqcont .four {
    padding-left: 30px;
}
.faqco .faqcont .five {
    background-color: #eeeeee;
    padding: 30px 10px;
    margin-bottom: 10px;
    border-radius: 30px;
}
.faqco .faqcont .five {
    padding-left: 30px;
}
.faqco .faqcont .six {
    background-color: #eeeeee;
    padding: 30px 10px;
    margin-bottom: 10px;
    border-radius: 30px;
}
.faqco .faqcont .six {
    padding-left: 30px;
}
.faqco .faqcont .seven {
    background-color: #eeeeee;
    padding: 30px 10px;
    margin-bottom: 10px;
    border-radius: 30px;
}
.faqco .faqcont .seven {
    padding-left: 30px;
}
/* footer */
footer {
    background-color: black;
    padding: -100px -500px;
    /* background-color: var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(0, 0, 0)); */
    border-radius: 30px;
    opacity: 1;
    overflow: visible;
    padding: 50px 0;
    position: relative;
    margin-left: 40px;
    margin-right: 40px;
}
footer .heading h2 {
    font-size: 100px;
    color: #4F86F7;
    font-family: "Poppins", serif;
    font-weight: 700;
}
footer .heading p {
    color: white;
    font-size: 18px;
    font-family: "Poppins", serif;
    margin-bottom: 70px;
}
footer .nav li {
    color: #4F86F7;
    font-family: "Poppins", serif;
}
footer .nav a {
    text-decoration: none;
}
footer .nav li {
    padding: 7px 0;
}
.bor {
    padding: 22px 0;
}
footer .bor {
    border-bottom: 1px solid #9b9b9b;
    border-top: 1px solid #9b9b9b;
}
footer .bor li {
    color: #4F86F7;
}
footer .bor p {
    color: white;
}
footer .bor li i {
    padding: 10px;
}
footer .bor .call  {
    color: white;
    margin-left: 10px;
}

/* --- Page Structure --- */
.page-wrapper {
    max-width: 1280px;
    margin-inline: auto;
}

.page-header {
    text-align: center;
    margin-bottom: 5rem;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    max-width: 800px;
    margin: 0 auto;
}

.header-pill {
    display: inline-block;
    background-color: var(--clr-text);
    color: var(--clr-background);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* --- Services Layout (using Grid on DL element) --- */
.services-container {
    display: grid;
    grid-template-columns: var(--nav-width) 1fr;
    gap: 5rem;
}

/* --- Sticky Navigation (DT element) --- */
.sticky-nav {
    position: sticky;
    top: 100px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.nav-link {
    text-decoration: none;
    font-size: 1.25rem;
    color: var(--clr-text);
    transition: all 0.2s ease-out;
}

.nav-link.is-active {
    font-weight: 700;
    color: var(--clr-accent);
    transform: translateX(5px);
}

/* --- Content Column (DD element) --- */
.content-column {
    margin: 0; /* Reset default DL margin */
}

.content-section {
    margin-bottom: 25vh; /* Space for scrolling */
}

.content-section:last-of-type {
    margin-bottom: 0;
}

.content-card {
    background-color: var(--clr-surface);
    padding: 2.5rem;
    border-radius: 24px;
}

.content-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.content-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Tags --- */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
    margin-left: 15px;
}

.tag {
    /* color: var(--clr-text);
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500; */
    padding: 4px 6px;
    --border-bottom-width: 1px;
    --border-color: var(--token-0882ac46-db8c-40ce-b538-f9817ed3ec8f, rgba(0, 0, 0, 0.15));
    --border-left-width: 1px;
    --border-right-width: 1px;
    --border-style: solid;
    --border-top-width: 1px;
    border-radius: 40px;
    opacity: 1;
    color: #000000;
}

/* --- Footer --- */
.page-footer {
    text-align: center;
    padding: 15rem 0 10rem;
}
.page-footer h2 {
    font-size: 3rem;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    :root { --nav-width: 100%; }
    .page-header h1 { font-size: 2.5rem; }
    .services-container {
        display: block; /* Stack on mobile */
    }
    .sticky-nav {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 2rem;
        gap: 0.5rem 1rem;
    }
    .nav-link { font-size: 1rem; }
    .nav-link.is-active {
        transform: none;
        text-decoration: underline;
    }
    .content-section { margin-bottom: 2rem; }
    .page-footer { padding: 5rem 0; }
    .page-footer h2 { font-size: 2rem; }
}
/* long video */
