@import url("../fonts/poppins/poppins.css");
@import url("../fonts/Source_Sans_Pro/SourceSansPro.css");

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "poppins", "Source Sans Pro", sans-serif;
}

:root {
    /* --primarycolor: #d82828; */
    --primarycolor:#0a0022;
    --white: #ffffff;
    --black: #0d1e685c;
    --white-2: #dff1f0;
    --gray-5: #555555;
    --gray-7: #777777;
    --gray-9: #999999;
    --gray-c: #cccccc;
}

body {
    background-color: var(--black);
    color: var(--white);
}

.heading {
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 600;
    line-height: 3rem;
}

.heading > span {
    color: var(--primarycolor);
}

.subheading {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.subheading > span {
    width: 100px;
    height: 2px;
    background-color: var(--primarycolor);
    display: block;
    margin-right: 10px;
}

.subheading > h5 {
    font-size: 1.4rem;
    text-transform: uppercase;
    color: var(--primarycolor);
    margin-bottom: 0px !important;
}

h4,
.h4 {
    font-size: 1.6rem;
    font-weight: 600;
    list-style: 2rem;
}

h5,
.h5 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 30px;
}

h6,
h6 {
    font-size: 1.13rem;
    font-weight: 600;
    line-height: 27px;
}

p {
    font-size: 1rem;
    line-height: 24px;
}

.subparagraph {
    font-size: 0.9rem;
    font-family: "Source Sans Pro", sans-serif;
    color: var(--white);
}

a.subparagraph,
a h4 {
    color: var(--white) !important;
}

a.subparagraph:hover,
a h4:hover {
    color: var(--white) !important;
}

a {
    text-decoration: none !important;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1rem;
}

.fs-12px {
    font-size: 12px;
}

/* Button Styling */
.btn {
    background-color: var(--primarycolor);
    color: var(--white);
    border-radius: 0px;
}

.btn:hover {
    background-color: transparent;
    color: var(--primarycolor);
    border: 1px solid var(--primarycolor);
}

.btn-check:focus + .btn,
.btn:focus {
    box-shadow: none;
}

.btn-light {
    background-color: var(--white) !important;
    color: var(--black);
}
.btn-dark {
    background-color: #000 !important;
    color: var(--white);
}

.z-index-2 {
    z-index: 2;
}

/* Img Styling */
.img-fit-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.img-fit-contain {
    -o-object-fit: contain;
    object-fit: contain;
}

.img-position-center {
    -o-object-position: center;
    object-position: center;
}

/* Aspect Ratio */
.ratio-1x1 {
    aspect-ratio: 1/1;
}

.ratio-16x9 {
    aspect-ratio: 16/9;
}

/* Line Climp 3 */
.line-climp-3 {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    box-orient: vertical;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Text Color */
.text-primarycolor {
    color: var(--primarycolor);
}

.text-black {
    color: var(--black);
}

.text-gray-5 {
    color: var(--gray-5);
}

.text-gray-7 {
    color: var(--gray-7);
}
.text-gray-c {
    color: var(--gray-c);
}

/* Background Color */
.bg-primarycolor {
    background-color: var(--primarycolor);
}

.bg-gray-9 {
    background-color: var(--gray-9);
}

.bg-black {
    background-color: var(--black);
}

/* Font Weight */
.fw-semibold {
    font-weight: 600;
}

/* Border Radius */
.rounded-8 {
    border-radius: 0.5rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
}

.rounded-16 {
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.rounded-24 {
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.rounded-32 {
    border-radius: 2rem;
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    -ms-border-radius: 2rem;
    -o-border-radius: 2rem;
}

/* Height */
.h-2px {
    height: 2px;
}

.h-40px {
    height: 40px;
}

.h-50px {
    height: 50px;
}

.h-100px {
    height: 100px;
}

.h-125px {
    height: 125px;
}

.h-120px {
    height: 120px;
}

.h-150px {
    height: 150px;
}
.max-h-135px {
    max-height: 135px;
}

/* Width */
.w-40px {
    width: 40px;
}

.w-50px {
    width: 50px;
}

.w-100px {
    width: 100px;
}

.w-120px {
    width: 120px;
}

.w-125px {
    width: 125px;
}

.w-150px {
    width: 150px;
}

/* Margin */
.mt-60px {
    margin-top: 60px;
}

.mt-50px {
    margin-top: 50px;
}

.mb-25px {
    margin-bottom: 25px;
}

.mb-20px {
    margin-bottom: 20px;
}

/* Positions  */
.top-n60px {
    top: -60px;
}

.top-n50px {
    top: -50px;
}

.bottom-n-25px {
    bottom: -25px;
}

.bottom-n-20px {
    bottom: -20px;
}

.outline-none {
    outline: none;
}

/* Courer */
.cursor-pointer {
    cursor: pointer;
}

::-moz-selection {
    background-color: var(--primarycolor);
    color: var(--white);
}

::selection {
    background-color: var(--primarycolor);
    color: var(--white);
}

/* logo Styling Start */
.logo {
    width: 200px;
    height: auto;
}

/* logo STyling End */

/* Navbar Styling Start */
.navbar {
    background-color: var(--black);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Navbar Link Styling Start */
.navbar .navbar-nav .nav-item {
    margin: 10px 0px 10px 60px;
}

.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .show > .nav-link,
.navbar .navbar-nav .nav-link:hover {
    color: var(--primarycolor) !important;
}

.navbar .navbar-nav .nav-link {
    color: var(--white) !important;
    font-size: 1rem;
    padding: 0px;
    font-family: "Source Sans Pro", sans-serif;
    position: relative;
    
}
.navbar .navbar-nav .nav-link.active::before{
content: "";
position: absolute;
width: 100%;
height: 2px;
background-color: var(--primarycolor);
bottom: -2px;
}
.navbar-toggler > img {
    width: 30px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.nav-underline {
    border-top: 2px solid rgba(255, 0, 0, 1);
    margin: 2px 0 0 0;
    width: 40px;
}

.search {
    position: absolute;
    top: 100px;
    top: 62px;
    z-index: 3;
    opacity: 0.7;
}

.search:hover {
    width: 250px;
    border-radius: 25px;
    height: 50px;
}

.search > form {
    width: 50px;
    height: 50px;
    position: relative;
    border-radius: 50%;
    transition: 0.5s all;
}

.search:hover > form {
    width: 250px;
}

.search input {
    width: 50px;
    height: 50px;
    padding: 0px;
    border-radius: 40px;
    border: none;
    outline: none;
    transition: 0.5s all;
    position: absolute;
    right: 0px;
    top: 0px;
}

.search:hover > form > input {
    width: 100%;
    height: 50px;
    padding: 10px 50px 10px 20px;
}

.search-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    position: absolute;
    top: 0px;
    right: 0px;
}

.search-icon > img {
    width: 20px;
}

/* Navbar Styling End */

/* Nav1 Styling Start Here */
.nav-1 {
    background-color: var(--primarycolor);
    margin: auto;
    padding: 10px 0px;
}

.nav-1 .nav-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.nav-1 .subparagraph {
    line-height: 17px;
}

/* Nav1 Styling End Here */

/* Whatsapp Icon */
.whatsapp-icon {
    position: fixed;
    right: 35px;
    bottom: 35px;
    z-index: 10;
}

.whatsapp-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    -webkit-animation-name: whatsapp;
    animation-name: whatsapp;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.whatsapp-img > img {
    width: 100%;
    height: 100%;
}

@-webkit-keyframes whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0px 0px 0px var(--primarycolor);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 1px 0px 20px 9px var(--primarycolor);
    }

    100% {
        transform: scale(1);
        box-shadow: 0px 0px 0px var(--primarycolor);
    }
}

@keyframes whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0px 0px 0px var(--primarycolor);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 1px 0px 20px 9px var(--primarycolor);
    }

    100% {
        transform: scale(1);
        box-shadow: 0px 0px 0px var(--primarycolor);
    }
}

/* Whatspp Icon Styling End */

/* Hero Section Styling Start */

main {
    color: #ffffff !important;
    font-weight: 800 !important;
    font-family: "Inter", sans-serif !important;
}

/* Main heading (smaller but bold) */
.main-heading {
    font-size: clamp(1.5rem, 3.5vw, 2.8rem); /* Smaller than before */
    line-height: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    transition: font-size 0.3s ease;
}

/* Hero Section Layout */
main .heroSection {
    width: 100%;
    background: url("../images/slider-bg/slider-2.jpg") no-repeat center center /
        cover;
}

.boost-busines {
    font-size: 50px;
}


.marquee-clients-section .swiper-wrapper{
    align-items: center;
}
/* Responsive Adjustments */
@media (max-width: 991px) {
    .main-heading {
        font-size: clamp(1.2rem, 4vw, 2rem); /* even smaller on mobile */
        line-height: clamp(1.8rem, 5vw, 2.5rem);
    }
}

/* Video & Quote Card Styles */
.video-quote-overlay {
    position: relative;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding: 0;
    perspective: 1000px;
}

.video-quote-container {
    background-image: url("../images/atif.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    border-radius: 12px;
    margin-top: -20%;
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1.5s ease-in-out;
    padding: 1.5rem;
    position: relative;
}

/* Quote Button Styles */
.quote-flip-btn {
    display: inline-block;
    padding: clamp(6px, 1.2vw, 5px) clamp(15px, 2.6vw, 20px);
    background: linear-gradient(to bottom, #f22d2d, #b52222);
    color: #fff;
    font-weight: 600;
    font-size: clamp(13px, 1.2vw, 16px);
    border: none;
    border-radius: clamp(6px, 0.8vw, 8px);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    font-family: "Inter", sans-serif;
    align-items: center;
    justify-content: center;
    bottom: 2rem;
    position: absolute;
}

.quote-flip-btn i {
    margin-left: 8px;
}

.quote-flip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    color: #fff !important;
}

/* Video Button Styles */
.custom-video-btn {
    display: inline-block;
    text-decoration: none;
    /* top: 100px; */
}

.video-circle {
    width: clamp(70px, 8vw, 100px);
    height: clamp(70px, 8vw, 100px);
    background: radial-gradient(circle, #000 60%, transparent 61%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse-glow 2s infinite;
    box-shadow: 0 0 20px 5px #f22d2d33;
}

.video-inner-circle {
    width: clamp(50px, 6vw, 70px);
    height: clamp(50px, 6vw, 70px);
    background-color: #111;
    border: 3px solid #f22d2d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-icon {
    width: 0;
    height: 0;
    border-left: clamp(12px, 1.5vw, 18px) solid #f22d2d;
    border-top: clamp(7px, 1vw, 10px) solid transparent;
    border-bottom: clamp(7px, 1vw, 10px) solid transparent;
    margin-left: 4px;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 10px #f22d2d;
    }
    50% {
        box-shadow: 0 0 25px 10px #f22d2d;
    }
    100% {
        box-shadow: 0 0 10px #f22d2d;
    }
}

/* Hide/Show functionality */
.video-quote-overlay.hide {
    display: none;
}

.contact-form-overlay.show {
    display: flex !important;
}

.video-quote-container.flip-out {
    transform: rotateY(-180deg);
}

.contact-form-container.flip-in {
    transform: rotateY(0deg);
}

.contact-form-container {
    transform: rotateY(180deg);
}

/* Contact form positioning */
.contact-form-overlay {
    position: relative;
    height: auto;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding: 0;
    perspective: 1000px;
}

.contact-form-container {
    background: linear-gradient(135deg, #f22d2d 0%, #e61e1e 100%);
    border-radius: 1rem;
    padding: 1rem;
    width: 100%;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transition: all 1.5s ease-in-out;
    transform-style: preserve-3d;
    transform: scale(clamp(0.8, 1vw + 0.5, 1));
}

/* Hide contact form initially */
.contact-form-overlay {
    display: none !important;
}

/* Show contact form when activated */
.contact-form-overlay.show {
    display: flex !important;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-header {
    text-align: center;
    margin-bottom: clamp(12px, 1.5vw, 18px);
}

.form-logo {
    width: clamp(30px, 3vw, 40px);
    height: clamp(30px, 3vw, 40px);
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: clamp(6px, 0.8vw, 8px);
    padding: 6px;
    object-fit: contain;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1vw, 8px);
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    font-size: clamp(12px, 1.2vw, 14px);
    margin-bottom: 2px;
    font-family: "Inter", sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding: 2px 0;
    color: #ffffff;
    font-size: clamp(12px, 1.2vw, 14px);
    font-family: "Inter", sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
    resize: none;
    min-height: clamp(30px, 3vw, 40px);
}

.submit-btn {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    border: none;
    padding: clamp(10px, 1.2vw, 12px) clamp(12px, 1.5vw, 16px);
    border-radius: clamp(4px, 0.6vw, 6px);
    font-size: clamp(14px, 1.4vw, 16px);
    font-weight: 600;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: clamp(6px, 0.8vw, 8px);
}

.submit-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #ffffff;
    font-size: clamp(20px, 2vw, 24px);
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    display: none;
}

.h-txt {
    background-color: #f22d2d;
    padding: clamp(1px, 0.2vw, 2px) clamp(3px, 0.5vw, 5px);
    font-size: clamp(0.6rem, 1.2vw, 1.3rem);
    font-weight: 700;
    color: #ffffff;
}

.boost-busines {
    font-size: 23px;
    font-weight: bold;

    text-align: left;
}

/* Text animations */
.text-animation {
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: fit-content;
    white-space: nowrap;
    display: inline-block;
    top: 8px;
    z-index: 1;
}

.text-animation::before {
    content: attr(data-text);
    animation: textSlide 3s 0s infinite normal forwards;
    display: inline-block;
    max-width: fit-content;
    overflow: hidden;
    position: relative;
    top: 0;
    z-index: 2;
    background-color: var(--primarycolor);
    padding: 0.25rem;
}

@keyframes colorSlide {
    0% {
        right: 0px;
    }
    20% {
        right: 100%;
        width: 0%;
    }
    100% {
        width: 0%;
    }
}

@keyframes textSlide {
    0% {
        width: 100%;
    }
    20% {
        width: 0%;
    }
    50% {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .main-heading {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px;
        font-size: clamp(1.5rem, 4vw, 3rem);
        text-align: left;
        line-height: 1.2;
    }

    .h-txt {
        display: inline-block;
        white-space: nowrap;
    }
    .hero-heading {
        text-align: left;
    }
    .boost-busines {
        font-size: 18px;
        font-weight: bold;

        text-align: left;
    }
}

/* Mobile Responsive - Maintaining Left-Right Layout */
@media (max-width: 767px) {
    .contact-form-overlay,
    .video-quote-overlay {
        width: 100%;
        max-width: 100%;
        transform: scale(1);
    }

    .contact-form-container,
    .video-quote-container {
        width: 100%;
    }

    .card-content {
        gap: 20px;
        padding: 10px 0;
    }

    .main-heading {
        font-size: clamp(1.2rem, 3.5vw, 2rem);
        line-height: clamp(1.5rem, 4vw, 2.5rem);
        text-align: left;
    }

    .heroSection h2,
    .heroSection h3 {
        text-align: left;
        font-size: 1rem;
    }
}
.data-percent {
    font-weight: bold;
}

/* Very Small Mobile */
@media (max-width: 575px) {
    .video-quote-container {
        transform: scale(1);
    }

    .contact-form-container {
        transform: scale(1);
    }

    .card-content {
        gap: 20px;
        padding: 10px 0;
    }

    .main-heading {
        font-size: clamp(1.2rem, 3.5vw, 2rem);
        line-height: clamp(1.6rem, 4.5vw, 2.5rem);
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .video-quote-container {
        transform: scale(0.75);
    }

    .contact-form-container {
        transform: scale(0.75);
        width: 100%;
    }

    .card-content {
        gap: 25px;
    }
}

/* Large Desktop (1920px+) */
@media (min-width: 1920px) {
    .main-heading {
        font-size: 5rem;
        line-height: 6rem;
    }

    .card-content {
        gap: 160px;
    }
}

/* Print styles */
@media print {
    .video-quote-overlay,
    .contact-form-overlay {
        display: none !important;
    }

    main .heroSection {
        background: none !important;
        color: #000 !important;
    }

    .main-heading {
        color: #000 !important;
    }
}

/* Hero Section Styling End */

/* Section1 Styling Start */
.services > div {
    border: 1px solid var(--primarycolor);
    padding: 20px;
    position: relative;
    transition: 0.5s all ease-in-out;
    top: 0px;
    align-items: stretch;
    min-height: 80%;
}

.services > div:hover {
    top: 30px;
    background: linear-gradient(
        180deg,
        var(--black) 0%,
        var(--primarycolor) 100%
    );
    transition: 0.5s all ease-in-out;
    cursor: pointer;
}

.services > div:hover h6 {
    color: var(--primarycolor);
}

.service-div .services:nth-child(even) div {
    margin-top: 100px;
}

/* Section1 Styling End */

/* Section 3 Styling Start */

.progressbar {
    text-align: center;
    margin: 5px 0px;
    padding: 0;
}

.progressbar h6 {
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 15px;
}

.progressbarborder {
    position: relative;
    display: inline-block;
    transform: scaleX(-1);
}

.progressbarborder .skillpercent {
    position: absolute;
    top: 0px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scaleX(-1);
    font-weight: bold;
    font-size: 1.25rem;
}

@media (min-width: 1200px) {
    .col-xl-custom {
        flex: 0 0 auto;
        width: 12.5%;
    }
}

/* Section 3 Styling End */

/* Why Choose Us Section - Scroll Through All 8 Cards */
.why-choose-wrapper-scroll {
    /* background: rgb(255, 0, 0, 0.4); */
    /* background-image: url("{{ asset('frontend/images/assets/bg.png') }}"); */
   background-image: url("../images/why%20choose%20us/choose-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    position: relative;
    margin-bottom: 6px;
}


/* Left Column - Sticky Content */
/* .why-choose-wrapper-scroll .col-lg-6:first-child {
    flex: 0 0 50%;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    z-index: 1;
    padding-top: 2rem;
} */

/* .why-choose-content-scroll {
    padding: 60px 50px 60px 0;
    width: 100%;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
} */

.why-choose-content-scroll h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.sub-intro {
    font-size: 1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
}

.feature-item-scroll {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 8px 0;
}

.feature-icon-scroll {
    font-weight: bold;
    margin-right: 15px;
    min-width: 20px;
    font-size: 16px;
}

.feature-content-scroll {
    flex: 1;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
}

.web-design-image-scroll img {
    max-width: 450px;
    width: 100%;
    height: auto;
}

.vision-text {
    font-family: "Poppins", "Helvetica", sans-serif;
    font-size: 1rem;
    font-weight: bold;
    font-style: normal;
    color: white;
    margin-bottom: 5rem;
}

/* Right Column - Scrolling Slides */
.why-choose-wrapper-scroll .col-lg-6:last-child {
    flex: 0 0 50%;
    position: relative;
    z-index: 0;
}

.cards-scroll-container {
    padding: 50px 0 50px 30px;
    
}

.service-slide-scroll {
    margin-bottom: 60px;
    overflow: visible;
    width: 100%;
    max-width: 500px;
    height: 320px;
    position: relative;
    transition: all 0.4s ease-in-out;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 8px;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    color: white;
    z-index: 2;
    transition: all 0.4s ease-in-out;
    font-size: 40px;
}

.slide-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    transition: all 0.3s ease;
}

.slide-title {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 12px;
    line-height: 1.1;
    transition: color 0.3s ease;
}

.slide-description {
    font-size: 20px;
    line-height: 1.4;
    opacity: 0.95;
    max-width: 350px;
    transition: color 0.3s ease;
}

.service-slide-scroll:hover {
    width: min(640px, calc(100vw - 500px));
    max-width: min(640px, calc(100vw - 500px));
    animation: subtlePulse 0.6s ease-in-out;
}

.service-slide-scroll:hover .slide-content {
    background: linear-gradient(
        135deg,
        rgb(255, 255, 255) 0%,
        rgba(255, 25, 25, 0.5) 50%,
        rgba(255, 1, 1, 0.9) 100%
    );
}

.slide-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.service-slide-scroll:hover .slide-icon img {
    /* filter: brightness(0) saturate(100%) invert(20%); */
}

.service-slide-scroll:hover .slide-title,
.service-slide-scroll:hover .slide-description {
    color: #fff;
}

@keyframes subtlePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.slide-hover-showcase {
    position: absolute;
    top: -40px;
    /* right: 60px; */
    left: 40;
    width: 500px;
    height: 320px;
    opacity: 0;
    transform: translateX(30px) translateY(-10px) scale(0.8);
    transition: all 0.5s ease-in-out;
    z-index: 4;
    pointer-events: none;
 
}

.service-slide-scroll:hover .slide-hover-showcase {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

.hover-portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    position: relative;
    z-index: 3;
    max-width: 100%;
    max-height: 100%;
}

.hover-portfolio-image::before {
    content: "";
    position: absolute;
    top: 12px;
    left: -12px;
    width: 90%;
    height: 85%;
    border-radius: 8px;
    z-index: -1;
    transform: rotate(8deg);
    background: rgba(0, 0, 0, 0.2);
}

.hover-portfolio-image::after {
    content: "";
    position: absolute;
    top: 24px;
    left: -20px;
    width: 85%;
    height: 75%;
    border-radius: 8px;
    z-index: -2;
    background: rgba(0, 0, 0, 0.1);
}

/* .why-choose-content-scroll::-webkit-scrollbar {
    display: none;
} */

/* .why-choose-content-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
} */

/* ───── MOBILE VIEW: max-width: 767px ───── */

@media (max-width: 767px) {
    /* .why-choose-wrapper-scroll .row {
        flex-direction: column;
        min-height: auto;
    }

    .why-choose-wrapper-scroll .col-lg-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    } */

    /* .why-choose-wrapper-scroll .col-lg-6:first-child {
        position: static !important;
        height: auto !important;
        max-height: none !important;
        padding-top: 1rem;
    } */
    .why-choose-content-scroll h2 {
        font-size: 1.4rem !important;
        white-space: nowrap !important;
        line-height: 1.3;
        text-align: center;
        overflow: hidden;
    }
    /* .service-slide-scroll:last-child {
        margin-bottom: 0 !important;
    } */

    /* .why-choose-content-scroll {
        position: static !important;
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
        margin-bottom: 30px;
        padding:  15px;
    } */

    .cards-scroll-container {
        padding: 0 15px 10px;
        overflow: visible !important;
    }

    .service-slide-scroll {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin-bottom: 25px;
        overflow: hidden;
    }

    .slide-image {
        display: block !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }

    /* .slide-hover-showcase {
        display: none !important;
    } */

    .slide-content {
        position: relative !important;
        padding: 15px;
        z-index: 2;
        background: none !important;
        font-size: 1rem;
    }

    .slide-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .slide-icon img {
        width: 35px;
        height: 35px;
    }

    .slide-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 8px;
        color: white !important;
    }

    /* .service-slide-scroll:hover .slide-icon img {
        filter: none !important;
    } */
    .slide-description {
        font-size: 0.95rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.95) !important;
    }
}


/* ───── TABLET VIEW: 768px to 991px ───── */
@media (min-width: 768px) and (max-width: 991px) {
    /* .why-choose-wrapper-scroll .col-lg-6:first-child {
        position: static !important;
        height: auto !important;
        max-height: none !important;
        flex: none;
        align-items: flex-start;
        padding-top: 2rem;
    } */
    /* .service-slide-scroll:last-child {
        margin-bottom: 0 !important;
    } */

    /* .why-choose-content-scroll {
        position: static !important;
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
    } */

    .cards-scroll-container {
        padding: 30px 20px 10px;
        overflow: visible !important;
    }

    /* .service-slide-scroll {
        height: 280px;
        max-width: 100%;
        margin-bottom: 40px;
        position: relative;
        transform: none !important;
    }

    .service-slide-scroll:hover {
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        animation: none !important;
    } */
    
    /* .slide-hover-showcase {
        display: none !important;
    }  */

    .slide-content {
        background: none !important;
        padding: 10px;
    }

    .slide-title,
    .slide-description {
        color: white !important;
        font-size: 19px;
    }

    .slide-icon {
        width: 70px;
        height: 70px;
    }

    .slide-icon img {
        width: 40px;
        height: 40px;
        filter: none !important;
    }
    
}

/* section why choose us ends here */

.bgcount {
    background-image: url("../images/icons/clientbg.png");
}

    

/* //////////////////////////analog-gauge/////////////////////// */
    
analog-gauge::part(value) {
  font-weight: bold; 
  font-size: 16px;
  margin-left: -10px;
}

analog-gauge.react-native::part(label) {
    margin-left: -12px;
}
analog-gauge.react-native::part(value) {
    margin-left: -12px;
  
}

analog-gauge.Kotlin::part(label) {
    margin-left: -7px;
}
analog-gauge.Kotlin::part(value) {
    margin-left: -7px;
   
}
analog-gauge.Swift::part(label) {
    margin-left: -7px;
}
analog-gauge.Swift::part(value) {
    margin-left: -7px;
   
}

analog-gauge.Next::part(label) {
    margin-left: -6px;
}
analog-gauge.Next::part(value) {
    margin-left: -6px;
   
}
analog-gauge.Node::part(label) {
    margin-left: -6px;
    
}
analog-gauge.Node::part(value) {
    margin-left: -6px;
   
}
analog-gauge.Golang::part(label) {
    margin-left: -7px;
}
analog-gauge.Golang::part(value) {
    margin-left: -7px;
   
}
analog-gauge.Rails::part(label) {
    margin-left: -20px;
}
analog-gauge.Rails::part(value) {
    margin-left: -20px;
   
}
analog-gauge.angular::part(label) {
    margin-right: -7px;
}
analog-gauge.angular::part(value) {
    margin-left: -7px;
   
}
analog-gauge.Bootstrap::part(value) {
    margin-left: -7px;
   
}
analog-gauge.Bootstrap::part(label) {
    margin-left: -7px;
    
}
analog-gauge.react::part(value) {
    margin-left: -8px;
   
}
analog-gauge.react::part(label) {
    margin-left: -8px;
    
}
analog-gauge.php::part(value) {
    margin-left: -6px;
   
}
analog-gauge.php::part(label) {
    margin-left: -6px;
    
}
analog-gauge.vue::part(value) {
    margin-left: -6px;
   
}
analog-gauge.vue::part(label) {
    margin-left: -6px;
    
}
analog-gauge.laravel::part(value) {
    margin-left: -6px;
   
}
analog-gauge.laravel::part(label) {
    margin-left: -6px;
    
}
analog-gauge.flutter::part(value) {
    margin-left: -7px;
   
}
analog-gauge.flutter::part(label) {
    margin-left: -7px;
    
}
analog-gauge.tailwand::part(value) {
    margin-left: -7px;
   
}
analog-gauge.tailwand::part(label) {
    margin-left: -7px;
    
}
analog-gauge::part(label) {
  display: block;        
  /* text-align: center;     */
  margin-top: 10px;      
  white-space:nowrap; 
  margin-left: -15px;
  font-size: 13px;  
}
analog-gauge::part(label){
    margin-right: 3px;
}
react-native:value{
    margin-right: 3px;
}
kotin:label{
    margin-right: 3px;
}

.pb-40px {
    padding-bottom: 40px;
    height: 100%;
}
.countup {
   
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 56px 1rem 1rem 1rem;
    text-align: center;
    border: 4px solid rgba(255, 255, 255, 1);
     border-top-right-radius: 40px;
       border-bottom-left-radius: 40px;
    /* border-radius: 8px; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countup:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.countup > span {
    width: 80px;
    height: 80px;
    border-radius: 50%;
   background: linear-gradient(180deg, #E5E7EB 0%, #828385 100%);

    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: absolute;
    top: -40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.countup > span > img {
    object-fit: contain;
    width: 60%;
}
.counter {
    font-size: 32px;
    margin-top: 16px;
}
/* .counter > span{
    font-size: 25px;
} */
.plus {
    font-size: 25px;
    margin-top: 15px;
}
.count-content {
    font-size: 15px;
    margin: 0;
}
/* Tablet and small desktop */
@media (max-width: 991.98px) {
    .bgcount {
        padding: 60px 15px;
    }
}

/* Large tablets */
@media (max-width: 767.98px) {
    .bgcount {
        padding: 50px 10px;
    }
    .count-content {
        font-size: 14px;
    }

    .countup > span {
        font-size: 15px;
    }

    .counter {
        font-size: 18px;
    }
    .plus {
        font-size: 18px;
    }
}

/* Mobile devices */
@media (max-width: 575.98px) {
    .bgcount {
        padding: 40px 5px;
    }
}

/* Extra small mobile devices */
@media (max-width: 479.98px) {
    .bgcount {
        padding: 30px 5px;
    }
}

/* Container for multiple countup cards */
.countup-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 767.98px) {
    .countup-container {
        gap: 15px;
    }
}

@media (max-width: 575.98px) {
    .countup-container {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
}

/* Section 4 Styling End */

.marquee-clients-section {
    background-color: #362f2f;
    padding: 20px 0;
    width: 100%;
    height: 90px;
    overflow: hidden;
    position: relative;
}

.clients {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    min-width: 120px;
}

.clients img {
    max-height: 100px;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.clients img.no-invert {
    filter: none;
}

.bigger {
    max-height: 180px;
    height: 100px;
}

/* Hover effect */
.clients img:hover {
    filter: brightness(1) invert(0) opacity(1);
    transform: scale(1.05);
}

/* Section 5 Styling End */

/* Section 6 Styling start */

.packages-section {
    background: rgba(255, 0, 0, 0.4);

    color: #ffffff;
    font-family: "Inter", sans-serif;
    text-align: left;
}

 .left-title {
    font-size: 25px;
    font-weight: 700;
} 

.price-banner-img {
    width: 20%;
    max-width: 600px !important;
    height: auto;
    display: block;
}

.price-banner-text {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    white-space: nowrap;
}

.impact-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 7px;
    line-height: 2.6rem;
}

.package-description {
    font-size: 0.9rem;
    line-height: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;

    margin-bottom: 60px;
    font-weight: 400;
}

 .package-box {
    position: relative;
    background: url("../images/red%20bg.png") no-repeat center center;
    background-size: cover;
    background-position: bottom right;
    color: #fff;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    padding: 1rem 4rem 1rem 1rem;
}


.package-box h4 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.package-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.package-button-wrapper {
    text-align: center;
    margin-top: 40px;
}




.custom-btn-package {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(to bottom, #f22d2d, #b52222);
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.custom-btn-package:hover {
    transform: transla teY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    color: #fff !important;
}
    

@media (max-width: 991px) {
    .packages-section {
        padding: 40px 20px;
    }

    .left-title {
        font-size: 1rem;
        
    }
    .impact-heading {
        font-size: 1.1rem;
       
        
    }

    .package-description {
        font-size: 0.85rem;
        
    }

    .package-box h4 {
        font-size: 1rem;
    }

    .package-box p {
        font-size: 0.8rem;
    }

    /* .custom-btn-package,
    .consultation-btn-original {
        font-size: 1rem;
        padding: 12px 24px;
    } */
}

/* Mobile View (≤767px) */
 @media (max-width: 767px) {
    .packages-section {
        padding: 30px 15px;
    }

    .left-title {
        font-size: 1.3rem;
        line-height: 2.4rem;
    }

    .impact-heading {
        font-size: 1.3rem;
        line-height: 2.3rem;
    }

    .package-description {
        font-size: 1rem;
        line-height: 1.4rem;
    }

    .package-box h4 {
        font-size: 1.2rem;
    }

    .package-box p {
        font-size: 0.95rem;
    }

    /* .custom-btn-package,
    .consultation-btn-original {
        font-size: 0.95rem;
        padding: 10px 20px;
    } */
} 
/* Extra Small Screens (≤480px) */
 @media (max-width: 480px) {
    .packages-section {
        padding: 20px 10px;
    }

    .left-title {
        font-size: 0.95rem;
        line-height: 1.2rem;
    }

    .impact-heading {
        font-size: 0.95rem;
        line-height: 1.7rem;
    }

    .package-description {
        font-size: 0.9rem;
        line-height: 1.3rem;
    }

    .package-box h4 {
        font-size: 1rem;
    }

    .package-box p {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    /* .custom-btn-package,
    .consultation-btn-original {
        font-size: 0.85rem;
        padding: 8px 16px;
    } */
}  


/* 
.consultation-btn-original {
    background-color: #000; 
    color: #f9f7f7;
    padding: 7px 40px;
    border: 2px solid #f70000; 
    border-radius: 8px;
    font-size: 1.75rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: none;
    transition: all 0.3s ease;
}

.consultation-btn-original:hover {
    background-color: #000 !important;
    color: #f9f7f7 !important;
    border-color: #f70000 !important;
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(247, 0, 0, 0.5);
} */






/* Section 6 Styling End */

/* Section 7 Styling starts here */

.working-process-section {
    background-color: #000;
    padding: 100px 60px;
    font-family: "Inter", sans-serif;
    color: white;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 60px;
    text-align: left;
}

.process-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-diagram-img {
    width: auto;

    height: auto;
    max-height: 100vh;
    display: block;
}

/* Tablet View - 768px to 1024px */
@media (max-width: 1024px) {
    .working-process-section {
        padding: 80px 40px;
    }

    .working-process-section h2 {
        font-size: 48px !important;
        font-weight: 700 !important;
        margin-bottom: 25px !important;
        line-height: 1.2 !important;
        text-align: left !important;
        color: white !important;
    }

    .section-subtitle {
        font-size: 24px;
        margin-bottom: 50px;
    }

    .process-diagram-img {
        max-width: 100%;
    }
}

/* Mobile View - up to 767px */
@media (max-width: 767px) {
    .working-process-section {
        padding: 60px 20px;
    }

    .working-process-section h2 {
        font-size: 32px !important;
        font-weight: 700 !important;
        margin-bottom: 20px !important;
        line-height: 1.2 !important;
        text-align: left !important;
        color: white !important;
    }

    .section-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .process-diagram-img {
        max-width: 100%;
    }
}

/* Extra Small Mobile - up to 480px */
@media (max-width: 480px) {
    .working-process-section {
        padding: 40px 15px;
    }

    .working-process-section h2 {
        font-size: 24px !important;
        font-weight: 700 !important;
        margin-bottom: 15px !important;
        line-height: 1.2 !important;
        text-align: left !important;
        color: white !important;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

/* Section 7 Styling Ends here */

/* section testimonals starts here */

.testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(#3d3d3d, #000000 50%, #3d3d3d);
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
}

.highlight {
    color: #ff0000;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 800px;
    color: #ffffff;
    font-weight: 400;
}

.testimonial-card {
    background-color: rgba(219, 0, 0, 1);
    background-image: url("../images/why%20choose%20us/red-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    transition: transform 0.3s ease;
    height: 100%;
    border-radius: 0.5rem;
    position: relative;
    transform: translateY(0px);
}
.testimonial-card .testimonial-body {
    padding: 2.5rem;
    background-image: url("../images/why%20choose%20us/blackbg.png");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.profile-image {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    aspect-ratio: 1/1 !important;
}

.profile-image img {
    border-radius: 50%;
}
.client-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.client-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
    text-align: start;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .testimonials-section {
        padding-top: 40px;
    }

    .profile-image {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .client-name {
        font-size: 0.95rem;
    }

    .client-title {
        font-size: 0.8rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.45;
    }
    .main-title {
        font-weight: 5500;
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding-top: 30px;
    }
    .main-title {
        font-weight: 500;
        font-size: 2rem;
    }
    .profile-image {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .client-name {
        font-size: 0.9rem;
    }

    .client-title {
        font-size: 0.75rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}
/*section testimonals ends here */

/* Section 8 Styling starts here */
.faq-section {
    display: flex !important;
    justify-content: space-between !important;
    align-items: stretch !important;
    /* background: linear-gradient(180deg, #2a2a2a 0%, #0f0f0f 100%) !important; */
    background: black;
    padding: 80px 60px !important;
    color: #fff !important;
    font-family: "Inter", sans-serif !important;
    gap: 80px !important;
    flex-wrap: wrap !important;
     
}

.faq-left {
    flex: 1 !important;
    min-width: 400px !important;
      background: url('../images/download_360.gif');
      background-repeat: no-repeat;
      background-size: contain;
   
}

.faq-title {
    font-size: 3rem !important;
    font-weight: 700 !important;
   
    line-height: 1.1 !important;
    color: #ffffff !important;
}

.faq-title .highlighted {
    color: #f22d2d !important;
}

.faq-subtext {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.4rem !important;
    margin-top: 0px;
    line-height: 1.5 !important;
    padding-bottom: 20px;
}

/* Input Bar - Submit button with spacing from edges */
.faq-input-group {
    display: flex;
    justify-content: end;
    border-radius: 12px;
    background: #ffffff ;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    height: 50px;
    max-width: 500px;
    padding: 2px;
}

.faq-input {
    flex: 1 !important;
    padding: 12px 20px !important;
    border: none !important;
    font-size: 1rem !important;
    outline: none !important;
    color: #333 !important;
    background: transparent !important;
    border-radius: 0 !important;
}

.faq-input::placeholder {
    color: #888 !important;
    font-weight: 400 !important;
}

.faq-submit {
    background: linear-gradient(180deg, #ff0000 0%, #d60000 100%);
    color: #fff;
    border: none;
    padding: 0px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 10px;
    border-radius: inherit;
}

.faq-submit:hover {
    background:  linear-gradient(180deg,  #d60000 0%,#ff0000  100%) ;
}

.faq-right {
    flex: 1 !important;
    min-width: 500px !important;
}
@media (max-width: 767px) {
    .faq-submit {
      
        padding: 10px 10px !important;
       
    }
}

.accordion {
    border-radius: 0px !important;
    overflow: hidden !important;
    padding: 20px !important;
    box-shadow: 0 4px 12px rgba(215, 196, 196, 0.2) !important;
    background: #2d2d2d !important;
}

.accordion-item {
    border-bottom: 1px solid rgb(255, 255, 255) !important;
    background: transparent !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    margin-bottom: 0 !important;
}

.accordion-item:last-child {
    border-bottom: none !important;
}

.accordion-button {
    width: 100% !important;
    background: transparent !important;
    color: #fff !important;
    text-align: left !important;
    padding: 18px 0 !important;
    border: none !important;
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    position: relative !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    line-height: 1.4 !important;
    gap: 10px !important;
}
.accordion-text {
    flex: 1 1 auto;
    white-space: normal !important;
    word-break: break-word;
}

.accordion-button:hover {
    background: transparent !important;
    color: #fff !important;
}

.accordion-button:focus {
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Updated to use Font Awesome icon instead of text */
.accordion-button .fa-chevron-down {
    font-size: 1rem !important;
    color: #fff !important;
    transition: transform 0.3s ease !important;
    margin-left: 10px !important;
    flex-shrink: 0;
}

.accordion-button.collapsed .fa-chevron-down {
    transform: rotate(0deg) !important;
}

.accordion-button:not(.collapsed) .fa-chevron-down {
    transform: rotate(180deg) !important;
}

.accordion-button::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
    color: #fff;

    margin-left: auto;
    display: inline-block;
    transition: transform 0.3s ease;

    background: transparent !important;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .faq-section {
        padding: 60px 40px !important;
        gap: 60px !important;
    }

    .faq-title {
        font-size: 2rem !important;
    }
    .faq-subtext {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.3rem !important;
    
    margin-top: 0px;
    line-height: 1.5 !important;
}
}

@media (max-width: 992px) {
    .faq-section {
        flex-direction: column !important;
        padding: 50px 30px !important;
        gap: 50px !important;
    }

    .faq-left,
    .faq-right {
        min-width: 100% !important;
    }

    .faq-title {
        font-size: 2rem !important;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 20px !important;
        flex-direction: column !important;
        align-items: flex-start !important; /* Left-align section */
        text-align: left !important;
    }

    .faq-left,
    .faq-right {
        width: 100% !important;
        max-width: 100% !important;
    }

    .faq-title {
        font-size: 2.5rem !important;
        text-align: left !important;
    }

    .faq-subtext {
        text-align: left !important;
    }



    .faq-input {
        padding: 12px 10px !important;
        font-size: 1rem !important;
    }

    .faq-submit {
        padding: 10px 16px !important;
        font-size: 1rem !important;
    }

    .faq-right {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .accordion {
        width: 100% !important;
        max-width: 500px !important;
        padding: 15px !important;
        margin: 0 auto !important;
    }

    .accordion-button {
        font-size: 1rem !important;
        padding: 15px 0 !important;
    }
}

/* Section 8 Styling Ends here */

/* Contact Page Styling Start */
.location-div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 300px;
    margin: auto;
    cursor: pointer;
    overflow: hidden;
}

.location-div > img {
    max-height: 285px;
    max-width: 200px;
}

.location-div > .hover-img {
    position: absolute;
    top: 0px;
    z-index: -3;
    opacity: 0;
}

.location-div > img {
    width: 100%;
}

.location-div:hover > .hover-img {
    z-index: 1;
    opacity: 1;
}

.location-div > h4 {
    text-transform: uppercase;
    margin-top: 20px;
}

.location-div:hover > h4 {
    color: var(--primarycolor);
}

/* Contact Page Styling End */

/* footer Styling Start Here */
footer {
    background: linear-gradient(
        0deg,
        var(--primarycolor) 0%,
        var(--black) 100%
    );
    color: var(--white);
}

footer .logo {
    margin-bottom: 30px;
}

footer ul {
    padding-left: 0px;
    list-style-type: none;
}

footer ul li a {
    color: var(--white);
    line-height: 30px;
}

footer ul li a:hover {
    color: var(--white);
}

.social-icon {
    width: 25px;
    height: 25px;
    margin: 5px;
}

/* footer Styling End Here */
/* blog secttion 1*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.discover-section {
    background-color: #f60000;
    padding: 60px 40px;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
}

.discover-section h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 800px;
    font-family: "Times New Roman", Times, serif;
}

.discover-section p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 600px;
    opacity: 0.95;
}

.category-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.category-btn {
    background-color: white;
    color: #e53e3e;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background-color: #f7f7f7;
    transform: translateY(-2px);
}

.gradient-bar {
    height: 40px;
    background: linear-gradient(to right, #e8e8e8, #844242, #f50303);
    width: 100%;
}
/*blog section 1 ends here */

/*blog section 2 here */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.featured-articles {
    max-width: 1400px;
    margin: 0 auto;
    background: rgb(0, 0, 0);
    padding: 40px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: "Times New Roman", Times, serif;
}

.view-all {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all:hover {
    color: #c0392b;
}

.view-all::after {
    content: "→";
    font-size: 16px;
}

.articles-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.main-article {
    position: relative;
    border-radius: 12px;
    overflow: hidden;

    height: 350px;
}

.main-article-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.main-article-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tech-tag {
    background: rgba(248, 248, 248, 0.956);
    color: rgb(247, 0, 0);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
    margin-bottom: 20px;
}

.main-article h2 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3;
    font-family: "Times New Roman", Times, serif;
    margin-top: 100px;
}

.main-article p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 2px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-details {
    color: white;
    font-size: 12px;
}

.author-name {
    font-weight: 600;
    margin-bottom: 2px;
    color: white !important;
    font-style: bold;
}

.article-meta {
    opacity: 0.8;
}

.side-articles {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.side-article {
    display: flex;
    gap: 10px;
    padding: 11px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    background: white;
}

.side-article:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.side-article-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.side-article-content {
    flex: 1;
}

.category-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.health-tag {
    color: #ff0404;
}

.business-tag {
    color: #f90000;
}

.lifestyle-tag {
    color: #f50000;
}

.side-article h3 {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 8px;
}

.side-article p {
    font-size: 10px;
    color: #6c757d;
    line-height: 1.4;
    margin-bottom: 8px;
}

.side-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.side-author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.side-author-name {
    font-size: 8px;
    color: #6c757d;
    font-weight: 500;
}

@media (max-width: 768px) {
    .articles-container {
        grid-template-columns: 1fr;
    }

    .featured-articles {
        padding: 20px;
    }

    .main-article {
        height: 410px;
    }

    .main-article-content {
        padding: 20px;
    }

    .main-article h2 {
        font-size: 20px;
    }
}

/*blog section 2 here */

/* blog secttion 3*/

body {
    background-color: #000000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    margin: 0;
    padding: 0;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-left: -60px;
    margin-right: -60px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.header-title {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    font-family: "Times New Roman";
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.article-count {
    color: #666;
    font-size: 14px;
}

.filter-btn {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-btn:hover,
.sort-btn:hover {
    background: #e9ecef;
}

.category-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: transparent;
}

.category-tab.active {
    background: #ff011a;
    color: white;
}

.category-tab:not(.active) {
    color: #666;
}

.category-tab:not(.active):hover {
    background: #f8f9fa;
}

.content-section {
    background: #000000;
    padding: 24px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    margin-left: -40px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.tech-icon,
.business-icon,
.science-icon,
.news-icon {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    overflow: hidden;
}

.tech-icon img,
.business-icon img,
.science-icon img,
.news-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.view-all-link {
    color: #dc3545;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.view-all-link:hover {
    color: #c82333;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-left: -40px;
    margin-right: -40px;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.article-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-card img.article-main-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.article-date {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}

.article-content {
    padding: 20px;
}

.article-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.article-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.side-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.author-info {
    flex: 1;
}

.author-article-name {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    margin: 0;
}

.read-time {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .main-container {
        padding: 0 16px;
    }

    .header-section {
        margin-left: -1px;
        margin-right: -1px;
        padding: 20px;
    }

    .section-header {
        margin-left: -20px;
    }

    .articles-grid {
        margin-left: -1px;
        margin-right: -1px;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 18px;
    }

    .tech-icon,
    .business-icon,
    .science-icon,
    .news-icon {
        margin-left: 10px;
    }
}

/* Mobile Landscape and Small Tablet */
@media (max-width: 768px) {
    .main-container {
        padding: 0 12px;
    }

    .header-section {
        padding: 16px;
        margin-left: -2px;
        margin-right: -2px;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .header-title {
        font-size: 22px;
    }

    .header-controls {
        align-self: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
    }

    .article-count {
        order: -1;
        align-self: flex-start;
    }

    .category-tabs {
        justify-content: flex-start;
        gap: 6px;
    }

    .category-tab {
        padding: 6px 14px;
        font-size: 13px;
    }

    .content-section {
        padding: 20px 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-left: -12px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 18px;
    }

    .tech-icon,
    .business-icon,
    .science-icon,
    .news-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .view-all-link {
        align-self: flex-end;
        font-size: 13px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-left: -2px;
        margin-right: -2px;
    }

    .article-image-container {
        height: 180px;
    }

    .article-card img.article-main-image {
        height: 180px;
    }

    .article-content {
        padding: 16px;
    }

    .article-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .article-description {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .side-author-avatar {
        width: 28px;
        height: 28px;
    }

    .author-name {
        font-size: 13px;
    }

    .read-time {
        font-size: 11px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .main-container {
        padding: 0 8px;
    }

    .header-section {
        margin-left: -1px;
        margin-right: -1px;
        padding: 12px;
    }

    .header-title {
        font-size: 20px;
    }

    .header-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .filter-btn,
    .sort-btn {
        padding: 6px 10px;
        font-size: 13px;
        justify-content: center;
    }

    .category-tabs {
        gap: 4px;
    }

    .category-tab {
        padding: 5px 12px;
        font-size: 12px;
    }

    .section-header {
        margin-left: -8px;
        gap: 10px;
    }

    .section-title {
        font-size: 16px;
        gap: 8px;
    }

    .tech-icon,
    .business-icon,
    .science-icon,
    .news-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
        margin-left: 10px;
    }

    .articles-grid {
        margin-left: -1px;
        margin-right: -1px;
        gap: 12px;
    }

    .article-image-container {
        height: 160px;
    }

    .article-card img.article-main-image {
        height: 160px;
    }

    .article-content {
        padding: 12px;
    }

    .article-title {
        font-size: 15px;
        line-height: 1.3;
    }

    .article-description {
        font-size: 12px;
        line-height: 1.4;
    }

    .side-author-avatar {
        width: 24px;
        height: 24px;
    }

    .author-name {
        font-size: 12px;
    }

    .read-time {
        font-size: 10px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .header-title {
        font-size: 18px;
    }

    .article-title {
        font-size: 14px;
    }

    .article-description {
        font-size: 11px;
    }

    .section-title {
        font-size: 15px;
    }
}

/* blog secttion 3*/

/* team secttion 1*/
:root {
       --black: #0d1e685c;
}

.team-section {
    font-family: "Inter", sans-serif;
}

.team-heading {
    background-color: var(--black);
}

.team-heading h2 {
    font-size: 33px;
    font-weight: bold;
    font-family: "Inter", sans-serif;
    margin: 0;
    color: white;
    padding: 40px 0;
}

.team-content {
    background: radial-gradient(circle, #000000 0%, #2e2e2e 50%, #808080 100%);
    font-family: "Times New Roman", Times, serif;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    padding: 0;
}

.team-content h4 {
    font-size: 27px;
    font-weight: bold;
    font-family: "Times New Roman", Times, serif;
    margin-top: 32px;
    color: white;
}

.ceo-image {
    width: 100%;
    height: 130%;
    border-radius: 10px;
    object-fit: cover;
    object-position: center bottom;
    position: absolute;
    top: -20%;
    left: 0;
    display: block;
    padding-bottom: 0px;
}

.ceo-image-wrapper {
    padding: 0;
    height: 100%;
    min-height: 120vh;
    position: relative;
    overflow: hidden;
}

.meet-ceo-banner {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.team-content p {
    font-size: 30px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-family: "Times New Roman", Times, serif;
    margin-top: 30px;
}

.content-box {
    padding: 60px 40px;
}

/* Remove Bootstrap gaps for desktop */
.team-content .row {
    margin: 0;
}

.team-content .col-12,
.team-content .col-md-5,
.team-content .col-md-7 {
    padding: 0;
}

.team-content .col-md-7 {
    padding: 0;
}

/* Mobile-specific styles for new layout */
.mobile-ceo-banner {
    display: none;
}

.mobile-ceo-info {
    display: none;
}

.mobile-description {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Make entire section black for mobile */
    .team-content {
        background: #000000 !important;
        flex-direction: column;
        min-height: auto;
    }

    /* Hide original desktop layout on mobile */
    .ceo-image-wrapper {
        display: none !important;
    }

    /* Show mobile layout */
    .mobile-ceo-banner {
        display: block;
        text-align: center;
        padding: 30px 20px 20px 20px;
        background-color: #000000;
    }

    .mobile-ceo-info {
        display: flex;
        align-items: flex-end;
        padding: 0 20px;
        gap: 15px;
        background-color: #000000;
        margin-bottom: 0;
    }

    .mobile-description {
        display: block;
        padding: 0 20px 20px 20px;
        background-color: #000000;
        margin-top: 0;
    }

    .meet-ceo-banner {
        max-width: 280px;
        width: 90%;
    }

    .team-heading h2 {
        font-size: 22px;
        padding: 30px 0;
    }

    .mobile-ceo-image {
        width: 300px;
        max-width: 420px;
        height: 480px;
        border-radius: 15px;
        overflow: visible;
    }

    .mobile-ceo-image img {
        width: 150%;
        height: 150%;
        object-fit: cover;
        transform: translate(-20px, -180px); /* move left and up */
        border-radius: 15px;
    }

    .mobile-ceo-name {
        flex: 1;
        display: flex;
        align-items: flex-end;
        padding-bottom: 20px;
    }

    .mobile-ceo-name h4 {
        font-size: 25px;
        margin-bottom: 220px;
        font-weight: bold;
        margin-left: 40px;
    }
    .mobile-description p {
        background: radial-gradient(
            circle,
            #000000 0%,
            #2e2e2e 75%,
            #404040 100%
        );
        backdrop-filter: blur(15px);
        border-radius: 20px;
        padding: 15px;
        color: rgba(255, 255, 255, 0.95);
        font-size: 12px;
        line-height: 1.5;
        font-family: "Times New Roman", Times, serif;
        margin: 0;
    }
}

@media (max-width: 576px) {
    .mobile-ceo-banner {
        padding: 25px 15px 15px 15px;
    }

    .meet-ceo-banner {
        max-width: 250px;
        width: 85%;
        margin-bottom: 30px;
    }

    .mobile-ceo-info {
        padding: 0 15px;
        gap: 12px;
    }

    .mobile-ceo-image {
        flex: 0 0 180px;
        width: 680px;
        height: 360px;
    }

    .mobile-ceo-name h4 {
        font-size: 25px;
        margin-bottom: 220px;
        font-weight: normal;
        font-weight: bold;
    }

    .mobile-description {
        padding: 0 15px 15px 15px;
    }

    .mobile-description p {
        padding: 12px;
        font-size: 11px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .ceo-image {
        width: 160%;
        height: 140%;
        object-fit: cover;
        object-position: center top;
        margin-left: -70px;
        position: static;
        top: auto;
        left: auto;
    }

    .ceo-image-wrapper {
        min-height: 80vh;
        padding: 0;
        position: relative;
        overflow: hidden;
    }

    .team-content h4 {
        font-size: 28px;
    }

    .team-content p {
        font-size: 18px;
    }

    .team-content .row {
        margin: auto;
    }
}

/* team secttion 1*/

/*team section 2*/
body {
    margin: 0;
    padding: 0px;
    background: #000;
    min-height: 100vh;
    font-family: "Arial", sans-serif;
}

.team-container {
    max-width: 1000px;
    margin: 80px auto 0 auto;
    background: linear-gradient(135deg, #ff0101, #8b0000, #b22222);
    padding: 20px;
    margin-bottom: 100px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 150px);
    gap: 0;
}

.grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.person-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 1;
    position: relative;
}

.info-box {
    background: #000;
    color: white;
    padding: 15px;
    text-align: center;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    overflow: visible;
}

.person-name {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.2;
}

.person-role {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.3;
    text-align: left;
    margin-top: 10px;
}

/* Arrow pointing right */
.arrow-right::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    width: 0;
    height: 0;
    border-left: 15px solid #000;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    z-index: 10;
}

/* Arrow pointing left */
.arrow-left::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%) translateX(-100%);
    width: 0;
    height: 0;
    border-right: 15px solid #000;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    z-index: 10;
}

/* Arrow pointing down */
.arrow-down::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 0;
    height: 0;
    border-top: 15px solid #000;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    z-index: 10;
}

/* Arrow pointing up */
.arrow-up::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    width: 0;
    height: 0;
    border-bottom: 15px solid #000;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    z-index: 10;
}

.husnain-photo {
    transform: scale(1.1);
}

/* Hide mobile elements on desktop by default */
.mobile-team-member {
    display: none;
}

@media (min-width: 768px) and (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(6, 140px);
    }

    .grid-item {
        height: 140px;
    }

    .person-image {
        height: 100%;
        object-fit: cover;
    }

    .person-name {
        font-size: 13px;
    }

    .person-role {
        font-size: 10px;
    }

    .team-container {
        padding: 15px;
        max-width: 800px;
        width: 500px;
    }

    body {
        padding: 0px;
    }

    /* Ensure mobile elements stay hidden on tablet */
    .mobile-team-member {
        display: none;
    }
}

@media (max-width: 576px) {
    .team-container {
        background: #000;
        padding: 15px;
        margin-top: 20px;
    }

    .team-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* Hide original grid items on mobile */
    .grid-item {
        display: none;
    }

    /* Show mobile team member cards */
    .mobile-team-member {
        display: flex;
        background: #000;
        border: 12px solid #ff0101;
        overflow: hidden;
        height: 150px;
        margin-bottom: 15px;
    }

    /* Alternating layout - odd members (1st, 3rd, 5th, etc.) */
    .mobile-team-member:nth-child(odd) {
        flex-direction: row;
    }

    /* Even members (2nd, 4th, 6th, etc.) */
    .mobile-team-member:nth-child(even) {
        flex-direction: row-reverse;
    }

    .mobile-image-section {
        flex: 1;
        overflow: hidden;
    }

    .mobile-image-section .person-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .mobile-info-section {
        flex: 1;
        background: #000;
        color: white;
        padding: 18px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .mobile-info-section .person-name {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 10px;
        color: white;
    }

    .mobile-info-section .person-role {
        font-size: 12px;
        line-height: 1.5;
        opacity: 0.9;
        text-align: left;
    }

    body {
        padding: 0px;
    }

    /* Hide arrows on mobile */
    .arrow-right::after,
    .arrow-left::after,
    .arrow-down::after,
    .arrow-up::after {
        display: none;
    }

    .husnain-photo {
        transform: none;
    }
}

body {
    background-color: #191919;
}

.abthead {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
}

.abthead img {
    width: 100%;
    height: auto;
    display: block;
}
.abthead h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: clamp(1.7rem, 4vw, 3.5rem); /* bigger font range */

    text-align: center;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);

    word-wrap: break-word;
    font-family: "Jomolhari";
}

/* ========== Background Section ========== */
.bg-img {
    position: relative;
    min-height: 300px;
    background: linear-gradient(
        90deg,
        #da0301 0%,
        rgba(255, 0, 0, 0.94) 58.17%,
        #d60000 100%
    );
    border: 2px solid #ffffff;
    color: white;
    padding: 20px 40px;
    overflow: hidden;
}
.bg-img-head {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 6px 2px;
    background: linear-gradient(#191919, #191919) padding-box,
        /* inner background */
            linear-gradient(
                90deg,
                #ffffff 28.37%,
                #ff0000 50%,
                #ff6f6f 61.06%,
                #ffffff 75.48%
            )
            border-box; /* gradient border */
    border-radius: 12px;
    border: 4px solid transparent; /* use transparent border */
    box-shadow: inset 0px -17.98px 17.98px 0px #000000;
    text-align: center;
}

.bg-img-head h1 {
    margin: 0;
    font-family: "Jomolhari", serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2.25rem); /* scales */
    color: white;
}

.bg-img-para {
    margin-top: 25px;
    font-weight: 300;
    font-family: Poppins, sans-serif;
    font-size: clamp(1.6rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    padding: 2px 15px;
}

/* ========== About Line Text ========== */
.abt-line {
    text-align: center;
    margin: 50px auto;
    font-size: clamp(1.3rem, 2.5vw, 1.75rem); /* responsive size */
    font-weight: bold;
    padding: 0 10px; /* prevent overflow on small screens */
}

/* Tablet screens */
@media (max-width: 768px) {
    .abthead {
        width: 70%;
    }
    .bg-img {
        min-height: auto;
        padding: 15px;
    }
    .bg-img-para {
        font-size: 1.2rem;
    }
    .bg-img-head {
        padding: 8px 15px;
        font-size: 1.2rem; /* smaller text */
    }
}

/* Small phones */
@media (max-width: 480px) {
    .abthead {
        width: 90%;
    }
    .bg-img-para {
        font-size: 0.9rem;
    }
    .bg-img {
        padding: 10px;
    }
    .bg-img-head {
        padding: 6px 12px;
        font-size: 1rem; /* even smaller text */
    }
}

/* ========== Red Border Section ========== */
.red-border-section {
    margin-top: 60px;
}

.red-border-section-title h4 {
    background-color: #191919;
    font-size: 1.8rem;
    margin: 0;
    /* height: 50px; */
}

.red-border-body p {
    font-size: 1.6rem;
    line-height: 1.6;
    padding: 3rem 3rem 2rem;
}
.red-border-body {
    border: 3px solid red;
    background-color: #191919;

    line-height: 1.8; /* better readability */
    color: white; /* ensure contrast */
    text-align: center; /* optional: center align */
    width: 1000px;
}
/* ========== Red Border Section ========== */
.red-border-section {
    margin-top: 60px;
    display: flex;
    justify-content: center; /* center content */
    padding: 0 1rem; /* breathing space on small screens */
}

.red-border-section-title h4 {
    background-color: #191919;
    font-size: 1.8rem;
    margin: 0 auto;
    text-align: center;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
}

.red-border-body {
    border: 3px solid red;
    background-color: #191919;
    line-height: 1.8;
    color: white;
    text-align: center;
    width: 100%;
    max-width: 1000px; /* limit for large screens */
    padding: 2.5rem;
    margin: 1.5rem auto;
    border-radius: 10px;
}

.red-border-body p {
    font-size: 1.6rem;
    line-height: 1.6;
    padding: 0; /* let container handle spacing */
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Large Tablets / Small Laptops */
@media (max-width: 1024px) {
    .red-border-body {
        max-width: 850px;
        padding: 2rem;
    }
    .red-border-body p {
        font-size: 1.4rem;
    }
    .red-border-section-title img {
        height: 20px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .red-border-body {
        max-width: 90%;
        padding: 1.8rem;
    }
    .red-border-body p {
        font-size: 1.2rem;
    }
    .red-border-section-title h4 {
        font-size: 1.5rem;
    }
    .red-border-section-title img {
        height: 20px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .red-border-body {
        max-width: 95%;
        padding: 1.2rem;
    }
    .red-border-body p {
        font-size: 1rem;
        line-height: 1.4;
    }
    .red-border-section-title h4 {
        font-size: 1.2rem;
        padding: 0.6rem 1rem;
    }
}

/* ========== Purpose Box Section ========== */
.purpose-section {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.purpose-section-title {
    top: -2.5rem;
    background-color: #191919;
    display: inline-block;
    padding: 1.2rem 4rem; /* balanced padding */
    overflow: hidden;
    display: flex;
    align-items: center;
    font-size: 1.6rem; /* heading size */
    position: absolute;
}

.purpose-section-body p {
    font-size: 1.6rem;
    line-height: 1.6;
    padding: 3rem 3rem 3rem;
}
.purpose-section-body {
    border: 3px solid red;
    /* background-color: #212121; */
    /* taller height to look like a box */
    /* extra top padding so text sits mid */
    font-size: 3rem;
    line-height: 1.8;
    color: white;
    text-align: center;
    display: flex;
    align-items: center; /* vertical alignment */
    justify-content: center; /* horizontal center */
}

.services {
    width: 100%; /* take full width of page */
    text-align: center; /* optional: center content */
    margin-top: 60px;
}

.services img {
    width: 100%; /* image takes full container width */
    max-width: 100%; /* prevent overflow */
    height: auto; /* keep aspect ratio */
    display: block; /* removes extra space below img */
}
.project {
    margin-top: 30px;
    text-align: center;
    font-size: 1.4rem; /* bigger font */
    color: white;
} /* ===== Help Section ===== */
.help-section {
    margin-top: 60px;
    position: relative;
}

.help-section-title {
    top: -2.5rem;
    display: inline-block;
    padding: 1.2rem 4rem;
    font-size: 1.6rem;
    position: absolute;
    display: flex;
    align-items: center;
    color: white;
}

.help-section-title::before,
.help-section-title::after {
    content: "";
    width: 20px;
    height: 250%;
    display: block;
    border: 5px solid red;
    position: absolute;
    left: 8px;
    transform: rotate(-15deg);
}

.help-section-title::after {
    left: auto;
    right: 8px;
    transform: rotate(15deg);
}

.help-section-body {
    border: 3px solid red;
    padding: 3rem;
    width: 100%;
    /* min-height: 550px; */
    margin: 0 auto;
    border-radius: 10px;
}

.help-card {
    border: 2px solid red;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    border-color: #ff4d4d;
}

.help-card h5 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1rem;
    border: 2px solid red;
    display: inline-block;
    padding: 0.4rem 0.8rem;
}

.help-card p {
    font-size: 1.3rem;
    color: #ddd;
    line-height: 1.6;
}

.help-row-2 {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.help-row-2 .help-card {
    width: 100%;
}

/* ===== Get Started Section ===== */
.get-start {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.get-start span {
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    padding: 1rem 3.5rem;
    border: 3px solid red;
    border-radius: 8px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 60%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

/* ===== Last Line (Subtitle) ===== */
.last {
    margin-top: 20px;
    text-align: center;
    font-size: 1.5rem;
    color: white;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
    .help-section-body {
        width: 90%;
        padding: 2.5rem;
    }

    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .help-row-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .help-section-title {
        font-size: 1.2rem;
        padding: 0.8rem 2rem;
    }

    .help-section-body {
        width: 95%;
        padding: 2rem;
        min-height: auto; /* allow auto height */
    }

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

    .help-row-2 {
        grid-template-columns: 1fr;
    }

    .help-card h5 {
        font-size: 1rem;
    }

    .help-card p {
        font-size: 1.1rem;
    }

    .get-start span {
        font-size: 1.2rem;
        padding: 0.8rem 2rem;
    }

    .last {
        font-size: 1.2rem;
    }
}

/* Extra Small (max-width: 480px) */
@media (max-width: 480px) {
    .help-section-body {
        width: 100%;
        padding: 2rem;
        min-height: auto;
    }
    .help-section-title {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }

    .help-card {
        padding: 1.5rem;
    }

    .help-card p {
        font-size: 1rem;
    }

    .get-start span {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }

    .last {
        font-size: 1rem;
    }
}

/* ===== Get Started Section ===== */
.get-start {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px; /* spacing from above */
}

.get-start span {
    font-size: 1.6rem; /* big heading size */
    font-weight: 600;

    color: white; /* adjust color */
    padding: 1rem 3.5rem; /* space inside border */
    border: 3px solid red; /* border around text */
    border-radius: 8px;
    .get-start span {
        font-size: 1.6rem; /* big heading size */
        font-weight: 600;
        color: white; /* adjust color */
        padding: 1rem 3.5rem; /* space inside border */
        border: 3px solid red; /* border around text */
        border-radius: 8px;
        background: transparent;

        /* inner shadow from bottom */
        .get-start span {
            font-size: 1.6rem; /* big heading size */
            font-weight: 600;
            color: white; /* text color */
            padding: 1rem 3.5rem; /* space inside border */
            border: 3px solid red; /* border around text */
            border-radius: 8px;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0) 60%,
                rgba(0, 0, 0, 0.7) 100%
            );
        }
    }

    /* ===== Last Line (Subtitle) ===== */
    .last {
        margin-top: 20px;
        text-align: center;
        font-size: 1.5rem; /* medium size */
        color: white; /* text color */
    }
}
/* =================== EXTRA RESPONSIVE FIXES =================== */

/* Large Screens (1400px and up) */
@media (min-width: 1400px) {
    .abthead {
        max-width: 700px;
    }
    .red-border-body {
        max-width: 1200px;
    }
}

/* Medium Desktops (1200px - 1399px) */
@media (max-width: 1399px) {
    .purpose-section-body {
        padding: 2.5rem;
    }
    .purpose-section-body p {
        font-size: 1.4rem;
    }
}

/* Tablets Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .red-border-body {
        max-width: 90%;
        padding: 2rem;
    }

    .purpose-section-title {
        font-size: 1.4rem;
        padding: 1rem 3rem;
    }
    .purpose-section-body p {
        font-size: 1.3rem;
        line-height: 1.5;
    }
}

/* Tablets Portrait (768px - 991px) */
@media (max-width: 991px) {
    .purpose-section {
        margin-top: 60px;
    }
    .purpose-section-body {
        font-size: 1.2rem;
        padding: 2rem;
    }
    .purpose-section-body p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    .get-start span {
        font-size: 1.3rem;
        padding: 0.8rem 2rem;
    }
}

/* Small Phones (max-width: 576px) */
@media (max-width: 576px) {
    .abthead {
        width: 95%;
        margin: 20px auto;
    }
    .abthead h1 {
        font-size: 1.4rem;
    }

    .bg-img {
        padding: 8px;
    }
    .bg-img-head {
        max-width: 280px;
        padding: 6px 10px;
    }
    .bg-img-para {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .abt-line {
        font-size: 1.1rem;
    }

    .red-border-body {
        padding: 1rem;
    }
    .red-border-body p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .purpose-section-body {
        padding: 1rem;
    }
    .purpose-section-title {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }

    .services img {
        width: 100%;
    }

    .help-card {
        padding: 0.8rem;
    }
    .help-card p {
        font-size: 0.85rem;
    }

    .get-start span {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }

    .last {
        font-size: 1rem;
    }
}

/* Extra Small Phones (max-width: 360px) */
@media (max-width: 360px) {
    .abthead h1 {
        font-size: 1.2rem;
    }
    .bg-img-head {
        max-width: 240px;
        padding: 5px 8px;
    }
    .bg-img-para {
        font-size: 0.8rem;
    }
    .red-border-body p {
        font-size: 0.85rem;
    }
    .purpose-section-title {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }
    .purpose-section-body p {
        font-size: 0.85rem;
    }
    .get-start span {
        font-size: 0.9rem;
    }
}
/* Portfolio container */
.portfolio {
    display: flex;
    justify-content: center;
    margin: 30px 0px;
    max-width: 400px; /* smaller image size */
    width: 100%;
}

/* Wrapper holds img + text */
.image-wrapper {
    position: relative;
    width: 70%;

    overflow: hidden; /* keeps text inside image */
}

/* Image */
.image-wrapper img {
    width: 100%; /* responsive */
    height: auto;
    display: block;
}

/* Heading inside image */
.image-wrapper h1 {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    font-family: "Jomolhari", serif;
    margin: 0;
}
/* Portfolio Section */
.portfolio-section {
    padding: 60px 20px;
}

.portfolio-item {
    margin-bottom: 70px;
}

.portfolio-text h5 {
    font-weight: bold;
    margin-bottom: 15px;
}

.portfolio-text p {
    color: #ddd;
    line-height: 1.6;
}

.portfolio-img img {
    max-width: 100%;
    border-radius: 8px;
    /* top: 1700px; */
    border: 2px solid #333;
}
/* footer styling */

.icons-divs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #e63946; /* Red circle */
    border-radius: 50%;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}
.icons-divs img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1); /* Make icons white */
}
/* Hover Effects */
.icons-divs:hover {
    background-color: #ff4757; /* Lighter red on hover */
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.4);
}
/* Headings */
icons-headings {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 7px;
    transition: color 0.3s;
}
.text-center:hover h4 {
    color: #ff4757;
}
/* Subparagraph */
.subparagraphs {
    font-size: 13px;
    color: #fff;
    margin: 0;
    transition: color 0.3s;
}
.text-center:hover .subparagraph {
    color: #fff;
}




 /* .humidity{
  --analog-gauge-bg: #8CF, #6BF, #46E, #24C var(--analog-gauge-range), #0000 0 var(--analog-gauge-range);
  --analog-gauge-start-angle: 270deg;
  --analog-gauge-range: 220deg;
  --analog-gauge-segments: 100;
  --analog-gauge-values-bg: linear-gradient(210deg, light-dark(#abd7f9, #1e1b40), light-dark(#FFF, #333), #0000 85%);
} 
  .download-speed {
  --analog-gauge-bg: #12C2FC, #6CFFD4, #78FF80 var(--analog-gauge-value, 0%), light-dark(#DDD, #222) 0 var(--analog-gauge-range),  #0000 0 var(--analog-gauge-range);
  --analog-gauge-needle-bg: light-dark(#445, #CCC);
  --analog-gauge-needle-cp: polygon(
    20% 35.00%,
    80.00% 0.00%,
    83.00% 35.00%,
    83.00% 65.00%,
    80.00% 100.00%,
    20% 65.00%);
  --analog-gauge-segments: 10;
} 
.temperature {
  --analog-gauge-bdw: 5cqi;
  --analog-gauge-bg: #69f,  #f00 var(--analog-gauge-range), #0000 0 var(--analog-gauge-range);
  --analog-gauge-segments: 15;
} 
 .uv {
  --_dg: calc(var(--analog-gauge-range) / var(--analog-gauge-segments));
  --analog-gauge-bdw: 25cqi;
  --analog-gauge-bg: 
    #55AF33 var(--_dg), 
    #A0C61B 0 calc(2 * var(--_dg)), 
    #F7E98E 0 calc(3 * var(--_dg)), 
    #F6E301 0 calc(4 * var(--_dg)), 
    #FAB60D 0 calc(5 * var(--_dg)), 
    #F88D2F 0 calc(6 * var(--_dg)), 
    #F76D00 0 calc(7 * var(--_dg)), 
    #E53015 0 calc(8 * var(--_dg)), 
    #D90E21 0 calc(9 * var(--_dg)), 
    #D80010 0 calc(10 * var(--_dg)), 
    #8A4F9E 0 var(--analog-gauge-range), 
    #0000 0 var(--analog-gauge-range);
  --analog-gauge-segments: 11;
} 
 .battery {
  --analog-gauge-bdw: 7.5cqi;
  --analog-gauge-bg: red, orange, yellow, lightgreen, green var(--analog-gauge-range), #0000 0 var(--analog-gauge-range);
  --analog-gauge-label-ps: end center;
  --analog-gauge-segments: 10;
}  */
  

.general-container {
  display: flex;
  height: 21rem;
  margin: 0 auto;
  max-width: 55vw;
  width: 55vw;
  gap: 1rem;
}

/* Hide radio buttons */
.radio {
  display: none;
}

/* Base (unselected) card */
.content {
 background-image: url("../images/assets/group_38778_480.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  flex: 1;
  overflow: hidden;
  position: relative;
  transition: all 0.5s cubic-bezier(0.05, 0.60, 0.39, 0.94);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* When card is selected (expanded) */
.radio:checked + .content {
    background-image: url("../images/assets/image_720.png");
  flex: 9;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
}

/* Overlay text (unselected) */
.overlay-text {
  writing-mode: sideways-lr;
  text-orientation: upright;
  font-size: 0.8rem;
  font-weight: bold;
  text-align: start;
  padding: 0.7srem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: rotate(360deg);
  transition: transform 0.6s ease-in-out;
  pointer-events: none;
}

/* Rotate on hover */
.content:hover .overlay-text {
  transform: rotate(360deg);
}

/* Overlay text (selected) */
.radio:checked + .content .overlay-text {
  writing-mode: initial;
  text-orientation: initial;
  background-color: transparent;
  font-size: 1.5rem;
  text-align: center;
  height: auto;
  margin-bottom: 1rem;
  transform: none;
}

/* General text behavior when card opens */
.radio:checked + .content {
  writing-mode: initial;
  text-orientation: initial;
  background-color: transparent;
  font-size: 0.9rem;
  text-align: center;
  height: auto;
}

/* Title / description */
.title-card {
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 90%;
  white-space: normal;
  word-wrap: break-word;
  width: 0;
  height: 0;
}

/* Show title when card expands */
.radio:checked + .content .title-card {
  opacity: 1;
  width: auto;
  height: auto;
}

/* Subtitle */
.subtitle {
  font-size: 1rem;
  font-weight: normal !important;
  color: #f0f0f0;
}

.marg-bott {
  margin-bottom: 1.5rem;
}

h1, h2, h3 {
  color: white !important;
}

/* --------------------------------------- */
/* ✅ Responsive Design */
/* --------------------------------------- */

/* ---- Tablets ---- */
@media (max-width: 992px) {
  .general-container {
    flex-direction: column;
    max-width: 85vw;
    height: auto;
  }

  .content {
    /* flex: 1 1 100%; */
    height: auto;
    background-size: cover;
    background-position: center;
       background-image: url("../images/assets/red-bg.png");
  }

  .overlay-text {
    writing-mode: horizontal-tb; /* ✅ normal text */
    text-orientation: initial;
    font-size: 0.8rem;
    transform: none;
    padding: 0.9rem;
     justify-content: center;
  align-items: start;
  text-align: center;
    margin: 0;
  }

  .title-card {
    font-size: 0.9rem;
  }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .general-container {
    flex-direction: column;
    flex-wrap: nowrap;
    /* width: 90vw; */
    height: auto;
    
    gap: 1rem;
  }

  .content {
    /* flex: 1 1 100%; */
    /* height: 13rem; */
    background-size: cover;
    background-position: center;
    background-image: url("../images/assets/red-bg.png");
  }

  .overlay-text {
    /* background-position: center bottom; */
      padding: 0.9rem;
   
    writing-mode: horizontal-tb; /* ✅ normal */
    text-orientation: initial;
    font-size: 0.7rem;
    margin: 0;
    transform: none;
     justify-content: center;
  align-items: start;
  text-align: center;
  }

  .title-card {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .radio:checked + .content {
    padding: 1rem;
  }
}
/* btn... */

 .btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0; /* adjust as needed */
  height: auto; /* removes the huge empty space */
  margin-top: 2rem; /* small gap between cards and button */
}



/* ---------------- Base Button ---------------- */
.drax-btn {
  position: relative;
  display: inline-block;
  width: 270px;
  height: 110px;
  text-align: center;
  line-height: 110px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  border-radius: 20px;
  background: transparent;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---------------- Arrows (Triangles) ---------------- */
.drax-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  transition: all 0.9s ease-in-out;
}

/* Top triangle */
.drax-arrow-top {
  top: 0;
  border-top: 32px solid black;
}

/* Bottom left triangle */
.drax-arrow-left {
  bottom: 0;
  left: 20%;
  border-bottom: 32px solid black;
}

/* Bottom right triangle */
.drax-arrow-right {
  bottom: 0;
  right: 20%;
  border-bottom: 32px solid black;
}

/* ---------------- Hover Animation ---------------- */
.drax-btn:hover .drax-arrow-top,
.drax-btn:hover .drax-arrow-left,
.drax-btn:hover .drax-arrow-right {
  transform: scale(40);
}

/* Change only border color on hover */
.drax-btn:hover {
  border-color: red;
}

/* Keep text above everything */
.btn-text {
  position: relative;
  z-index: 5;
  color: white;
  transition: color 0.5s ease;
}

/* Text stays white after hover */
.drax-btn:hover .btn-text {
  color: white;
}




.image-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5A00FF, #9B4BFF);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.image-inner-circle {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
