 :root {
      --primary-blue: #003285;
      --dark-blue: #00225c;
      --light-orange: #f8cea7;
      --white: #ffffff;
      --dd-blue: #004aad;
      --dd-peach: #f8cea7;
      --bg: #f5f7fb;
      --text: #0f172a;
      --muted: #64748b;
      --primary: #2f5aff;
      --ring: rgba(47, 90, 255, .25);
      --card: #ffffff;
      --shadow: 0 10px 25px rgba(15, 23, 42, .07);
      --radius: 22px;
    }


    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--white);
      overflow-x: hidden;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

   
    .hero {
      background: url('./images/imag2.jpg') no-repeat center/cover;
      min-height: 80vh;
      display: flex;
      align-items: center;
      color: #fff;
      position: relative;
    }

    .hero .container {
      display: flex;
      align-items: center;
      padding-left: 80px;
    }

    

    .hero-content {
      max-width: 650px;
      margin-left: 40px;
    }

   
    @media(max-width:1024px) {
      .hero {
        background: linear-gradient(120deg, #004aad, #004aad, #f8cea7);
       
      }

      .hero .container {
        padding-left: 40px;
       
      }

      .hero h1 {
        font-size: 42px;
        text-align: left;
      }

      
      .hero p {
        text-align: left;
      }
    }
.view{
    background: #fff;
    color: blue;
}
    @media(max-width:768px) {
      .hero {
        background: linear-gradient(120deg, #004aad, #004aad, #f8cea7);
        
        padding: 60px 0;
      }

      .hero .container {
        flex-direction: column;
        align-items: flex-start;
      
        padding-left: 20px;
      }

      .hero-content {
        margin-left: 0;
        /* remove extra margin on mobile */
        text-align: left;
      }

      .hero h1 {
        font-size: 32px;
      }

      .hero p {
        font-size: 16px;
      }
    }

    /* Header */
    header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: none;
      /* backdrop-filter:blur(4px); */
    }

    header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 80px;
     
    }

    header img {
      width: 160px;
    }

    nav {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
    }

    nav ul li a {
      color: #fff;
      font-size: 18px;
      font-weight: 500;
      text-decoration: none;
      position: relative;
    }

    nav ul li a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 0;
      height: 2px;
      background: #ffe56d;
      transition: .3s;
    }

    nav ul li a:hover::after {
      width: 100%;
    }

    nav ul li a:hover {
      color: #ffe56d;
    }

    .contact-btn {
      background: none;
      color: #fff;
      border: 1px solid #fff;
      padding: 8px 18px;
      border-radius: 6px;
      cursor: pointer;
    }

    

    
    .hero h1 {
      font-size: 52px;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .hero h1 span {
      background: linear-gradient(90deg, #fff, #f8cea7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero p {
      font-size: 18px;
      margin-bottom: 30px;
      color: #f1f1f1;
    }

    .btn-group {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    /* .btn{background:#0072ff;color:#fff;border:none;padding:10px 22px;border-radius:25px;cursor:pointer;transition:.3s;} */

    .start:hover {
      color: #0072ff;
      background: #fff;
    }

    /* Responsive */
    @media(max-width:1024px) {
      .container {
        padding: 0 40px;
      }

      header .container {
        padding: 15px 40px;
      }

    
      nav {
        display: none;
      }

      .contact-btn {
        display: none;
      }

      .menu-icon {
        display: block;
        right: 20px;
      }

      .hero h1 {
        font-size: 40px;
      }

      .hero .container {
        padding-left: 40px;
      }

    }

    @media(max-width:768px) {
      .container {
        padding: 100px 20px;
      }

      header .container {
        padding: 15px 10px;
      }

       .contact-btn {
        display: none;
      }
      .hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 0;
      }

      .hero h1 {
        font-size: 32px;
      }

      .hero p {
        font-size: 16px;
      }

      .hero .container {
        padding-left: 40px;
      }
.contact-btn{
    display: none;
}
     
    }

    @media(max-width:480px) {
      .hero {
        flex-direction: row;
        text-align: center;
        padding: 20px 0;
        padding-top: 60px;
      }

      header img {
        width: 150px;
      }

      .hero h1 {
        font-size: 42px;
      }

      .btn-group {
        flex-direction: column;
        align-items: left;
      }
      
    }

    .services {
      padding: 70px 8%;
      text-align: center;
      background: #fff;
    }

    .services h2 {
      font-size: 45px;
      margin-bottom: 50px;
      font-weight: 700;
      position: relative;
      display: inline-block;
      color: #222;
    }

    .services h2::after {
      content: '';
      position: absolute;
      width: 60%;
      height: 3px;
      background: var(--dd-blue);

      left: 20%;
      bottom: -10px;
      border-radius: 2px;
    }

    .service-boxes {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
      gap: 30px;
      justify-items: center;
      background: none;
    }

    .box {
      display: flex;
      align-items: center;
      width: 100%;
      max-width: 600px;
      background: none;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 15px;
      overflow: hidden;
      /* box-shadow: 0 6px 18px rgba(0,0,0,0.1); */
      transition: all 0.3s ease;
      cursor: pointer;
      padding: 20px;
    }

    .box:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    }

    .box img {
      max-width: 50%;
      height: 100%;
      object-fit: contain;
    }

    .content {
      padding: 20px;
      text-align: left;
      flex: 1;
    }

    .content h3 {
      font-size: 20px;
      margin-bottom: 8px;
      color: #222;
    }

    .content p {
      font-size: 14px;
      margin-bottom: 10px;
      color: #555;
    }

    .content ul {
      padding-left: 18px;
      font-size: 14px;
      color: #444;
    }

    .content ul li {
      margin-bottom: 6px;
      list-style: disc;
    }

    @media(max-width:480px) {
      .service-boxes {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        justify-items: center;
        background: none;
      }

      .box {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 600px;
        background: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        overflow: hidden;
        /* box-shadow: 0 6px 18px rgba(0,0,0,0.1); */
        transition: all 0.3s ease;
        cursor: pointer;
        padding: 20px;
      }
    }

    @media(max-width: 600px) {
      .service-boxes {
        /* padding: -10px; */
        justify-items: center;
      }

      .box {
        flex-direction: column;
        max-width: 100%;
      }

      .box {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 350px;
        /* margin-left: -10px; */
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        cursor: pointer;
        padding: 20px;
      }

      .box img {
        width: 100%;
        height: 250px;
      }

      .content {
        text-align: center;
      }

      .content ul {
        text-align: left;
        display: inline-block;
      }
    }
   .a {
      padding: 80px 50px;
      text-align: center;
      background-color: #f8fafd;
    }

    .b {
      margin-bottom: 50px;
    }

    .b h2 {
      font-size: 40px;
      font-weight: bold;
      color: #333;
      margin-bottom: 10px;
    }

    .b h2 span {
      color: #9333ea;
    }

    .b p {
      color: #666;
      max-width: 700px;
      margin: 15px auto 0;
      font-size: 18px;
    }

    .c {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1600px;
      margin: 0 auto;
    }

    .d {
      background-color: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      cursor: pointer;
      transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
      display: flex;
      flex-direction: column;
      text-align: left;
    }

    .d:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12),
        0 0 40px rgba(147, 51, 234, 0.2);
    }

    /* Top Icon Section */
    .e {
      padding: 30px;
      height: 200px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
      color: #fff;
    }

    .e i {
      font-size: 48px;
      margin-bottom: 15px;
    }

    .e h3 {
      font-size: 22px;
      font-weight: 600;
      margin: 0;
    }

    .e p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.8);
      margin: 5px 0 0;
    }

    /* Specific Card Gradients */
    .f {
      background: linear-gradient(135deg, #ff80bf, #a855f7);
    }

    .g {
      background: linear-gradient(135deg, #9f7aea, #6366f1);
    }

    .h {
      background: linear-gradient(135deg, #4fd1c5, #20c997);
    }

    .i {
      background: linear-gradient(135deg, #5c7aff, #3c415e);
    }

    /* Bottom Details Section */
    .j {
      padding: 25px;
      background-color: #fff;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .j h4 {
      font-size: 18px;
      font-weight: 600;
      color: #333;
      margin-bottom: 10px;
    }

    .j .k {
      font-size: 14px;
      color: #666;
      margin-bottom: 20px;
    }

    .l {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
    }

    .m {
      background-color: #e0e7ff;
      color: #3b82f6;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 500;
    }

    .n {
      color: #3b82f6;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: color 0.3s ease-in-out;
    }

    .n:hover {
      color: #2563eb;
    }

    /* Modal Styles */
    .o {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4);
      justify-content: center;
      align-items: center;
      backdrop-filter: blur(10px);
    }

    .p {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(20px);
      padding: 50px;
      border-radius: 25px;
      position: relative;
      max-width: 700px;
      text-align: center;
      box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
      transform: translateY(0);
      animation: fadeIn 0.3s ease-out;
      color: #fff;
    }

    .p h3,
    .p .q,
    .p p,
    .p a {
      text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }

    .q {
      font-size: 80px;
      margin-bottom: 30px;
      transition: color 0.3s;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Dynamic colors for modal title and icon */
    .p.brand-kit h3,
    .p.brand-kit .q {
      color: #a855f7;
    }

    .p.logos h3,
    .p.logos .q {
      color: #6366f1;
    }

    .p.social-media h3,
    .p.social-media .q {
      color: #14b8a6;
    }

    .p.website h3,
    .p.website .q {
      color: #5c7aff;
    }

    .p h3 {
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .p p {
      color: #c0c0c0;
      font-size: 19px;
      margin: 20px 0 30px;
    }

    .p a {
      display: inline-block;
      background-color: #3b82f6;
      color: #fff;
      padding: 12px 28px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.3s ease-in-out, transform 0.2s;
    }

    .p a:hover {
      background-color: #2563eb;
      transform: translateY(-2px);
    }

    .r {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      color: #a0a0a0;
      transition: color 0.3s ease-in-out, transform 0.2s;
    }

    .r:hover {
      color: #fff;
      transform: rotate(90deg);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .a {
        padding: 60px 20px;
      }
      .b h2 {
        font-size: 32px;
      }
      .b p {
        font-size: 16px;
        margin-bottom: 30px;
      }
      .c {
        grid-template-columns: 1fr;
      }

      .p {
        padding: 30px;
        max-width: 90%;
      }
      .q {
        font-size: 60px;
      }
      .p h3 {
        font-size: 28px;
      }
      .p p {
        font-size: 16px;
      }
      .r {
        font-size: 30px;
        top: 15px;
        right: 20px;
      }
    }
  
   


    .gradient-bg {
      background: linear-gradient(90deg, #004aad, #f8cea7);
    }

    .gradient-text {
      background: linear-gradient(90deg, #004aad, #f8cea7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .blink-animation {
      animation: blink 45s infinite;
    }

    @keyframes blink {

      0%,
      50% {
        opacity: 1;
      }

      25%,
      75% {
        opacity: 0;
      }
    }

    .heading-1 {
      animation-delay: 0s;
    }

    .heading-2 {
      animation-delay: 22.5s;
    }

    .floating-animation {
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-20px);
      }
    }

    .card-hover {
      transition: all 0.3s ease;
    }

    .card-hover:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(0, 74, 173, 0.15);
    }

    .parallax {
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }

    .counter {
      font-variant-numeric: tabular-nums;
    }

    .testimonial-slider {
      scroll-behavior: smooth;
    }

    .service-icon {
      transition: all 0.3s ease;
    }

    .service-card:hover .service-icon {
      transform: scale(1.1) rotate(5deg);
    }

    .vdo {
      float: right;
    }

    .wrap {
      max-width: 1600px;
      margin: 0 auto;
      padding: 56px 20px 96px;
      font-family: Inter, system-ui, Segoe UI, Roboto, Ubuntu, Arial;
      background: #f9f9f9;
    }

    .gradient-bg {
      background: linear-gradient(90deg, #004aad, #f8cea7);
    }

    .gradient-text {
      background: linear-gradient(90deg, #004aad, #f8cea7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .title {
      text-align: center;
      font-size: 44px;
      font-weight: 800;
      margin: 0 0 12px
    }

    .title .gradient {
      background: linear-gradient(90deg, #2f5aff, #ebb696);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent
    }

    .desc {
      max-width: 820px;
      margin: 0 auto 10px;
      text-align: center;
      color: var(--muted);
      font-size: 18px
    }

    .filters {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
      margin: 34px 0
    }

    .pill {
      cursor: pointer;
      padding: 12px 18px;
      border-radius: 999px;
      background: #fff;
      font-weight: 600;
      font-size: 15px;
      box-shadow: var(--shadow);
      border: 0;
      transition: .2s
    }

    .pill.active {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 12px 26px rgba(47, 90, 255, .35)
    }

    .gridd {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 26px;
    }

    @media (max-width: 1024px) {
      p {
        font-size: 1.2rem;
      }

      a {
        font-size: 1.2rem;
      }

      .service-boxes h3 {
        font-size: 1.8rem;
      }

      .service-boxes p {
        font-size: 1.2rem;
      }

      .service-boxes ul li {
        font-size: 1.2rem;
      }

      .gridd {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 26px;
      }
    }

    @media (max-width: 1440px) {
      p {
        font-size: 1.2rem;
      }

      a {
        font-size: 1.2rem;
      }

    }

    .card {
      background: var(--card);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: .2s;
      display: flex;
      flex-direction: column
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(15, 23, 42, .12)
    }

    .card.hidden {
      display: none
    }

    .panel {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 16px;
      color: #fff;
      position: relative
    }

    .panel .icon {
      font-size: 50px;
      margin-bottom: 10px
    }

    .panel h3 {
      margin: 0;
      font-size: 28px;
    }

    .panel p {
      margin: 4px 0 0
    }

    .g-brand {
      background: linear-gradient(135deg, #ff7ac6, #7bc6ff)
    }

    .g-brand1 {
      background: linear-gradient(135deg, #667eea, #764ba2);
    }

    .g-social {
      background: linear-gradient(135deg, #58a6ff, #1cd1b5)
    }

    .g-social1 {
      background: linear-gradient(135deg, #4568dc, #b06ab3);
    }

    .g-web {
      background: linear-gradient(135deg, #22c55e, #3beaf6)
    }

    .g-web1 {
      background: linear-gradient(135deg, #00c6ff, #1761ba);
    }

    .g-seo {
      background: linear-gradient(135deg, #fc6076, #ff9a44);
    }

    .g-seo1 {
      background: linear-gradient(135deg, #30cfd0, #330867);
    }

    .body {
      padding: 22px
    }

    .project-title {
      margin: 0 0 10px;
      font-size: 20px;
      font-weight: 700
    }

    .project-desc {
      margin: 0;
      color: var(--muted);
      line-height: 1.6
    }

    .footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 22px
    }

    .tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap
    }

    .tag {
      font-size: 13px;
      background: #eef2ff;
      color: #3745b0;
      border-radius: 999px;
      padding: 6px 10px;
      font-weight: 600
    }

    .link {
      text-decoration: none;
      color: var(--primary);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .testimonial {
      color: #333;
      background: #f9fbff;
      padding: 60px 20px;
      text-align: center;
    }

    .testimonial h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .testimonial h2 span {
      background: linear-gradient(90deg, #007cf0, #ff4c60);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .testimonial p.subtitle {
      font-size: 1rem;
      color: #555;
      margin-bottom: 40px;
    }

    .testimonial-container {
      position: relative;
      overflow: hidden;
      max-width: 1500px;
      margin: auto;
    }

    .testimonial-wrapper {
      display: flex;
      transition: transform 0.6s ease-in-out;
    }

    .testimonial-card {
      flex: 0 0 100%;
      max-width: 70%;
      box-sizing: border-box;
      background: #fff;
      margin: 0 15px;
      border-radius: 16px;
      padding: 25px;
      text-align: left;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .testimonial-card:hover {
      transform: scale(0.9);
    }

    .profile {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      color: #fff;
      margin-right: 15px;
    }

    .name-role {
      line-height: 1.3;
    }

    h4 {
      color: #000;
    }

    .name-role h4 {
      margin: 0;
      font-size: 1rem;
      font-weight: 600;
    }

    .name-role p {
      margin: 0;
      font-size: 0.9rem;
      color: #666;
    }

    .stars {
      color: #f5b50a;
      margin-bottom: 10px;
    }

    .testimonial-card p {
      font-style: italic;
      color: #444;
      font-size: 0.95rem;
    }

    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #fff;
      border: none;
      padding: 12px 15px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.2rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: 0.3s;
    }

    /* .nav-btn:hover {
      background: #007cf0;
      color: #fff;
    } */
    .prev {
      left: 0;
    }

    .next {
      right: 0;
    }

    /* Responsive */
    @media (min-width: 768px) {
      .testimonial-card {
        flex: 0 0 50%;
        max-width: 50%;
      }
    }

    @media (min-width: 1024px) {
      .testimonial-card {
        flex: 0 0 33.333%;
        max-width: 33.333%;
      }
    }

    .team-section {
      text-align: center;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .team-section h2 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #000;
    }



    .team-section p {
      max-width: 700px;
      margin: auto;
      color: #555;
      font-size: 1.1rem;
    }

    .team-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .team-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      transition: all .4s ease;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .team-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

    .team-header {
      background: linear-gradient(135deg, #667eea, #764ba2);
      padding: 40px 20px;
      text-align: center;
      color: #fff;
      position: relative;
    }

    .team-header .circle {
      width: 80px;
      height: 80px;
      margin: auto;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.3rem;
      letter-spacing: 1px;
    }

    .team-info {
      padding: 25px 20px;
    }

    .team-info h3 {
      font-size: 1.2rem;
      margin-bottom: 5px;
    }

    .team-info span {
      display: block;
      color: #4e54c8;
      margin-bottom: 15px;
      font-weight: 500;
    }

    .team-info p {
      font-size: 0.95rem;
      color: #666;
    }

    .social-icons {
      margin-top: 15px;
    }

    .social-icons a {
      padding: 12px 12px;
      background: #fff;
      margin: 0 8px;
      border-radius: 50px;
      color: #4e54c8;
      font-size: 1.1rem;
      box-shadow: 2px 12px 10px rgba(0, 0, 0, 0.1);
      transition: color .3s;
    }

    .social-icons a:hover {
      color: #fff;
      background: #0072ff;
      box-shadow: 2px 12px 10px rgba(255, 255, 255, 0.1);
    }

    @media(max-width:600px) {
      .team-section h2 {
        font-size: 2rem;
      }
    }

    .herooi {
      position: relative;
      background: linear-gradient(135deg, #004aad, #f8cea7);
      color: white;
      max-width: 1600px;
      text-align: center;
      padding: 20px 20px;
      overflow: hidden;

    }

    .herooi::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.35);
    }

    .herooi h1 {
      position: relative;
      font-size: 52px;
      font-weight: bold;
      background: linear-gradient(90deg, #ffea00, #ffffff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 20px;
      z-index: 1;
    }

    .herooi p {
      position: relative;
      font-size: 20px;
      max-width: 700px;
      margin: auto;
      z-index: 1;
    }

    /* Floating animations */
    .floating,
    .pulse {
      position: absolute;
      border-radius: 50%;
    }

    .floating {
      animation: float 6s ease-in-out infinite;
    }

    .pulse {
      animation: pulse 2s infinite;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-20px);
      }
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.5;
      }
    }

    /* Contact Section */
    .contact-section {
      padding: 80px 20px;
      max-width: 1200px;
      margin: auto;
      display: grid;
      gap: 40px;
    }

    @media(min-width: 992px) {
      .contact-section {
        grid-template-columns: 1fr 1fr;
      }

      .container4 {
        display: flex;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        max-width: 1360px;
        /* margin-left: 30px; */
        width: 100%;
        margin-left: 10px;
        overflow: hidden;
      }
    }

    .cardoi {
      background: #fff;
      border-radius: 20px;
      padding: 40px;

      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
    }

    .cardoi:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(0, 74, 173, 0.25);
    }

    .cardoi h2 {
      text-align: center;
      margin-top: 0;
      color: #1f2937;
      font-size: 2rem;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: bold;
      color: #374151;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #d1d5db;
      border-radius: 12px;
      font-size: 16px;
      transition: 0.3s;
    }

    .form-group textarea {
      height: 80px;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #004aad;
      box-shadow: 0 0 8px rgba(0, 74, 173, 0.2);
      outline: none;
    }

    .foram button {
      width: 100%;
      background: linear-gradient(270deg, #004aad, #f8cea7, #004aad);
      background-size: 600% 600%;
      animation: gradientMove 5s ease infinite;
      border: none;
      padding: 16px;
      border-radius: 12px;
      color: white;
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      transition: transform 0.3s;
    }

    button:hover {
      transform: scale(1.05);
    }

    @keyframes gradientMove {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    /* Info Cards */
    .info-card {
      background: #fff;
      border-radius: 20px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
    }

    .info-card:hover {
      transform: translateY(-5px);
    }

    .info-card h3 {
      margin: 0 0 15px 0;
      font-size: 1.2rem;
      font-weight: 600;
      color: #000;
    }

    .info-card i {
      margin-right: 3px;
      color: #000;
    }

    .social-links {
      display: flex;
      gap: 16px;
    }

    .social-links a {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
      background: #fff;
      color: white;
      font-size: 20px;
      transition: transform 0.3s, background 0.3s;
    }

    a {
      text-decoration: none;
    }

    .social-links a:hover {
      transform: scale(1.1);
      color: #fff;

    }

    footer {
      font-family: Arial, sans-serif;
      background: linear-gradient(120deg, #004aad, #004aad, #f8cea7);
      color: #fff;
      padding: 40px 20px;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
    }

    .footer-top {
      text-align: left;
      /* max-width: 1600px; */
      margin-bottom: 30px;
      /* margin-left: -200px; */
      line-height: 1.6;
    }

    .footer-columns {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: space-between;
    }

    .footer-column {
      flex: 1 1 200px;
    }

    .footer-column h4 {
      margin-bottom: 15px;
      font-size: 16px;
      font-weight: bold;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 10px;
      font-size: 14px;
    }

    .footer-column a {
      text-decoration: none;
      color: #fff;
    }

    .footer-column a:hover {
      color: #ccc;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      padding-top: 15px;
      border-top: 1px solid #fff;
      font-size: 14px;
      color: #fff;
    }

    @media (max-width: 768px) {
      .footer-columns {
        flex-direction: column;
        display: block;
      }

      .footer-column {
        margin-bottom: 20px;
      }

      .footer-top {
        text-align: left;
        margin-left: 0px;
      }
      
    }

    .btn {
      padding: 12px 20px;
      background: #1d4ed8;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
    }

    .btn:hover {
      background: #fff;
      color: #0072ff;
    }

    .form-popup button {
      padding: 10px 20px;
      margin: 20px;
      font-size: 16px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      background: #ff4b2b;
      color: #fff;
      transition: 0.3s;
    }

    button:hover {
      background: #ff6a4d;
    }

    /* Popup Form */
    .form-popup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 3000;
    }

    .form-box {
      background: #fff;
      color: #333;
      padding: 30px 25px;
      width: 350px;
      border-radius: 10px;
      position: relative;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    }

    .form-box h3 {
      margin-bottom: 15px;
      text-align: center;
      font-size: 1.5rem;
    }

    .form-box input,
    .form-box select,
    .form-box textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 14px;
    }

    .form-box button {
      width: 100%;
      padding: 10px;
      background: #0072ff;
      border: none;
      color: #fff;
      font-size: 16px;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
      margin-left: 0px;
    }

    .form-box button:hover {
      background: #0656b8;
    }

    .form-close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 22px;
      color: #333;
      cursor: pointer;
      font-weight: bold;
    }