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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    
}

    .htclass {


      /* gradient background 
      background: linear-gradient(90deg, #ff512f, #dd2476, #24c6dc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;*/
    }

.testimonial{
   /* max-width: 640px; width: clamp(320px, 90vw, 640px);*/
   width:100%;
    background: var(--card);
    border: 1px solid var(--ring);
    border-radius: var(--radius);
    padding: 20px 22px;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
  }

  .stars{
    display:inline-flex; gap:4px; margin-bottom:10px;
  }
  .stars svg{ width:18px; height:18px; }
  .quote{
    margin: 0 0 16px;
    font-size: 1.05rem;
  }
  .meta{
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  .avatar{
    width:44px; height:44px; border-radius:50%; flex:0 0 44px;
    object-fit:cover; border:1px solid var(--ring);
  }

span.name1 {
    border: 1px gray solid;
    padding: 2px 2px 2px 13px;
    border-radius: 9px 9px 9px 9px;
    display: flex
;
    background-color: lightskyblue;
    /* gap: 10px; */
    /* position: relative; */
    width: 100%;
    height: 74px;
}
.name1 a {
    text-decoration: none;
    color: black;
}

.morevideos {
display: block;
    float: left;
    position: relative;
    width: 100%;
}

.who {
display: flex;
    flex-direction: column;
    padding: 10px 10px 10px 10px;
    gap: 5px;
    width: 100%;
}
   

  .name{ font-weight:600; line-height:1.2; }
  .role{ color:var(--muted); font-size:.92rem; }

  /* Optional: subtle accent bar */
  .accent{
    height:4px; width:56px; background:var(--accent); border-radius:9999px; margin-bottom:12px;
  }



.team,
.tesimonials {
    background: #f8fafc;
}


/* Header */

header {
    position: fixed;
    top: 0;
    width: 100%;
    /*background: rgb(11 48 80 / 95%);*/
    background: linear-gradient(135deg, #171D2D 0%, #0090C0 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 3px 0px 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00d4ff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 17px;
}

.nav-links a:hover {
    color: #00d4ff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}


/* Carousel Banner */

.carousel-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.carousel {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.slide-1 {
    background: linear-gradient(135deg, #26b9cfdb 0%, #764ba2 100%);
}

.slide-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.slide-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.slide-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 1000px;
    padding: 120px 7px 6px 6px;
    animation: slideInUp 1s ease-out;
}



/*.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}*/
.slide-content h1 {
    font-size: 37px;
    color: gold;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family:"Consolas', 'Courier', 'Courier New', 'Roboto Mono";
}

.slide-content p {
    font-size: 37px;
    color: gold;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family:"Consolas', 'Courier', 'Courier New', 'Roboto Mono";
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}


/* Carousel Controls */

.carousel-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.carousel-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: white;
    transform: scale(1.2);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-arrow.prev {
    left: 30px;
}

.carousel-arrow.next {
    right: 30px;
}

section#home {
    padding: 1px 1px 2px 5px;
}


/* Sections */

section {
    padding: 100px 0;
}

.about section {
    padding: 140px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}


/* About Section */

.about {
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    color: #4a5568;
}

.about-text h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-contents {
    display: inline-block;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.about-text.cl {
    float: left;
    width: 60%;
    padding: 0px 4px 3px 2px;
}

.about-image.cl1 {
    width: 30%;
    float: left;
    margin: 1px 1px 1px 52px;
}

.about-image.cl3 {
    margin-bottom: 135px;
}

.about-image {
    text-align: center;
    font-size: 5rem;
    color: #00d4ff;
}


/* Services Section */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    background-color: lightblue;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2d3748;
}


/* Contact Section */

.contact {
    background: linear-gradient(135deg, #8BD7E6 0%, #0090C0 100%);
    color: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

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

.form-group textarea {
    height: 120px;
    resize: vertical;
}


/* Footer */

footer {
    background: #1a202c;
    color: white;
    text-align: center;
    padding: 2rem 0;
}


/* Animations */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Design */

@media (max-width: 768px) {
    .about-text.cl {
        float: left;
        width: 100%;
    }
    .about-image.cl1 {
        width: 100%;
        float: left;
        margin: 1px 1px 1px 0px;
    }
    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        font-size: 2rem;
        padding: 15px 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 5px;
        backdrop-filter: blur(10px);
        margin: 4px -29px 8px -30px;
    }
    .cta-button {
        display: flex;
        margin: 19px 12px 6px 4px;
        background: linear-gradient(45deg, #00d4ff, #0099cc);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 20px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    }
    .carousel-container {
        position: relative;
        height: 90vh;
        overflow: hidden;
        margin-top: 0px;
        padding-top: 10px;
    }
    .logo {
        font-size: 1.1rem;
        font-weight: bold;
        color: #00d4ff;
        text-decoration: none;
    }
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.95);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .slide-content h1 {
        font-size: 2.5rem;
    }
    .slide-content p {
        font-size: 1.1rem;
    }
    .about-content {
        grid-template-columns: 1fr;
        text-align: left;
    }
    /*.carousel-arrow {
        display: none;
    }*/
    .section-title {
        font-size: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1px 14px 2px 4px;
    }
    .slide-content {
        padding: 0 1rem;
    }
    .slide-content h1 {
        font-size: 2rem;
    }
    .container {
        padding: 0 1rem;
    }
}

.carousel-wrapper {
    height: 150px;
    /* Adjust as needed to show a few items */
    overflow: hidden;
    position: relative;
}

.vertical-carousel {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    /* Essential for animating 'top' */
    top: 0;
}

.vertical-carousel li {
    /* Basic styling for each item */
    padding: 10px;
    border-bottom: 1px solid #eee;
}

  :root{
    --bg: #fff;
    --fg: #0f172a;          /* slate-900 */
    --muted: #64748b;       /* slate-500 */
    --card: #f8fafc;        /* slate-50 */
    --ring: #e2e8f0;        /* slate-200 */
    --accent: #2563eb;      /* blue-600 */
    --radius: 14px;
  }
  @media (prefers-color-scheme: dark){
    :root{
      --bg:#0b1220; --fg:#e5e7eb; --muted:#94a3b8; --card:#0f172a; --ring:#1f2937;
      --accent:#60a5fa;
    }
  }
   .carousel3 {
      width: min(96vw, var(--w));
      background:var(--card);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }

    .carousel2 {
      width: min(96vw, var(--w));
      background:var(--card);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }

    .track {
      display:flex;
      transition:transform 500ms cubic-bezier(.2,.8,.2,1);
      will-change: transform;
    }

    .slide {
      min-width:33.33%; /* ✅ show 3 slides at a time */
      user-select:none;
      padding: 4px;
    }

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

    .track1 {
      display:flex;
      transition:transform 500ms cubic-bezier(.2,.8,.2,1);
      will-change: transform;
    }

    .slide1 {
      min-width:33.33%; /* ✅ show 3 slides at a time */
      user-select:none;
       padding: 4px;
    }

    .slide1 img{
      width:100%;
      height:260px;
      object-fit:cover;
      display:block;
    }

    /* buttons */
    .btn {
      position:absolute;
      top:50%;
      transform:translateY(-50%);
      background:rgba(0,0,0,.45);
      color:white; border:0; width:40px; height:40px; border-radius:50%;
      display:grid; place-items:center; cursor:pointer;
    }
    .btn:hover{ background:rgba(0,0,0,.7); }
    .prev{ left:12px; }
    .next{ right:12px; }

    /* dots */
    .dots{
      position:absolute; left:50%; transform:translateX(-50%);
      bottom:12px; display:flex; gap:8px;
    }
    .dot{
      width:10px; height:10px; border-radius:50%;
      background:rgba(255,255,255,.6); border:2px solid rgba(12,20,32,.06);
      cursor:pointer;
    }
    .dot.active{
      background:var(--accent); box-shadow:0 4px 12px rgba(37,99,235,.18);
    }

    .dots1{
      position:absolute; left:50%; transform:translateX(-50%);
      bottom:12px; display:flex; gap:8px;
    }
    .dot1{
      width:10px; height:10px; border-radius:50%;
      background:rgba(255,255,255,.6); border:2px solid rgba(12,20,32,.06);
      cursor:pointer;
    }
    .dot1.active{
      background:var(--accent); box-shadow:0 4px 12px rgba(37,99,235,.18);
    }
    /* small screens: show 1 or 2 slides instead */
    @media (max-width:700px){
      .slide{ min-width:50%; }
    }
    @media (max-width:480px){
      .slide{ min-width:100%; }
    }

    @media (max-width:700px){
      .slide1{ min-width:50%; }
    }
    @media (max-width:480px){
      .slide1{ min-width:100%; }
    }



