.portfolio-box {
    position: relative;
}
.portfolio-box .portfolio-caption {
    display: none;
    transition: 0.8s ease all;
}
.portfolio-box:hover .portfolio-caption {
    position: absolute;
    top: 0;
    padding: 20px;
    background: #000000c2;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cookie-popup {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 24%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 10px 35px rgba(0,0,0,0.20);
    padding: 8px 13px;
    font-family: "Inter", Arial, sans-serif;
    z-index: 999999;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.cookie-popup.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-content h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.cookie-content p {
    font-size: 14px;
    color: #555;
    line-height: 17px;
}

.cookie-buttons {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
}

.cookie-accept {
    background: #0073ff;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.cookie-decline {
    background: #f1f1f1;
    color: #333;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

.cookie-accept:hover {
    background: #005ed1;
}

.cookie-decline:hover {
    background: #e2e2e2;
}

/* Responsive */
@media(max-width: 480px){
    .cookie-popup {
        width: 90%;
        right: 5%;
        bottom: 20px;
    }
}

html {
  scroll-behavior: smooth;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #f5f5f5 !important;
}

.header-light .header-icon .icon>a, .header-light .navbar-nav .nav-link {
    color: #264a9f !important;
}
.fs-170 {
    font-size: 9.625rem !important;
}

.para-bold{

    font-weight: 400;
    color: #264a9f;
}


span.error {
    color: red;
    font-size: 15px;
}

.elec-camp{
    background-color: #b93927 !important;
    padding: 10px !important;
    border-radius: 50px;
    margin-top: 10px;
}

.footer_section {
    padding-top: 35px !important;
    padding-bottom: 0px !important;
    background-color: #18478b;
    color: white;
}

/* Outer Card */
.sr-neumorph-card {
    background: linear-gradient(to bottom right, #eff0f3, #e5e6eb);
    border-radius: 18px;
    padding: 35px;
    box-shadow:
        6px 6px 12px rgba(0,0,0,0.12),
        -6px -6px 12px rgba(255,255,255,0.8);
}

/* Labels */
.sr-label {
    font-size: 14px;
    font-weight: 600;
    color: #617091;
    margin-bottom: 6px;
    display: block;
}

/* Input wrapper */
.sr-input-wrap {
    position: relative;
       background: #f4f7ff;
    border-radius: 75px;
    box-shadow:
        inset 2px 2px 6px rgba(0,0,0,0.08),
        inset -2px -2px 6px rgba(255,255,255,0.9);
}

input.sr-input::placeholder {
    color: #4a4a4a !important;
}

textarea.sr-input.sr-textarea::placeholder {
    color: #4a4a4a !important;
}

/* Icon */
.sr-input-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #7b7b7b;
    font-size: 18px;
}

/* Input Fields */
.sr-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 14px 20px 14px 48px;
    font-size: 15px;
    color: #4a4a4a;
        border-radius: 60px;
    color: #071e54;
    opacity: .8;
    -webkit-appearance: none;
    -webkit-box-shadow: inset 3px 3px 6px #bfc3cf, inset -3px -3px 6px #fff;
    -moz-box-shadow: inset 3px 3px 6px #bfc3cf,inset -3px -3px 6px #fff;
    box-shadow: inset 3px 3px 6px #bfc3cf, inset -3px -3px 6px #fff;
    /* font-weight: 600; */
}

.sr-input::placeholder {
    color: #9ea1ad;
}

/* Textarea */
.sr-textarea-wrap textarea {
    padding-top: 18px;
}
.sr-textarea {
    min-height: 120px;
    resize: none;
}

/* Button */
.sr-submit-btn {
    background: linear-gradient(90deg, #35d3e1 -45%, #264a9f 110%, #195dff 140%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow:
        3px 3px 10px rgba(0,0,0,0.2),
        -3px -3px 10px rgba(255,255,255,0.7);
}

.sr-submit-btn:hover {
    background: #0066c2;
}

/* Error Message */
.sr-error {
    color: red;
    font-size: 13px;
}

/* Small description text */
.sr-small-text {
    font-size: 14px;
    color: #6d6d6d;
}

.video-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 200px; /* Start 100px from top */
  }

  .video-container {
    width: 70%;              /* Start at 50% width */
    transition: width 0.3s ease; /* Smooth resizing */
  }

  .video-element {
    width: 100%;
    height: auto;
    object-fit: cover;
  }


/* For all modern browsers */
body {
    scrollbar-width: auto; /* Firefox */
    -ms-overflow-style: none; /* IE & Edge */
  }

  body::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }


  /* 🔹 Toggle Button (hamburger) */
.menu-toggle {
    width: 35px;
    height: 28px;
    cursor: pointer;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  #menuToggle .bar {
    display: block;
    height: 3px;
    width: 100%;
    background: #264a9f;
    border-radius: 3px;
    transition: all 0.4s ease-in-out;
    transform-origin: center;
  }

  /* 🔹 Animate to X */
  #menuToggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  #menuToggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }

  #menuToggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  /* 🔹 Fullscreen Menu */
  .fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1999;
  }
  .sr-chip-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
  .fullscreen-menu.show {
    display: flex;
    animation: fadeIn 0.5s ease;
  }

  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  /* Layout for 2 columns */
  .menu-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    width: 100%;
    height: 100%;
  }

  .menu-left img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
  }

  .menu-right {
    color: #546280;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 80px 50px 50px 50px;
    background: linear-gradient(to bottom right, #eff0f3, #e5e6eb);
  }


  .btn-link.text-black, .text-black, a.text-black-hover:hover {
    color: #264a9f !important;
}
  .menu-right ul {
    list-style: none;
    padding: 0;
  }

  .menu-right ul li {
    margin: 15px 0;
  }

  .menu-right ul li a {
    color: #264a9f;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }

  .menu-right ul li a:hover {
    color: #f39c12;
  }

  /* 🔹 Prevent scroll when menu is open */
  body.no-scroll {
    overflow: hidden;
  }


  ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: linear-gradient(179deg,rgba(13,53,148,.9) -102%,#35d3e1 162%);
    min-height: 100px;
}


/* Chip container */
.sr-chip-container {
    padding: 16px;
    /* background: #f4f6fb; */
    border-radius: 16px;
    box-shadow:
        inset 3px 3px 8px rgba(0,0,0,0.08),
        inset -3px -3px 8px rgba(255,255,255,0.9);
}

/* Chip base */
.sr-chip {
    padding: 10px 22px;
    background: #eff0f3;
    border-radius: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
       color: #546280;
    box-shadow:
        3px 3px 8px rgba(0,0,0,0.10),
        -3px -3px 8px rgba(255,255,255,0.95);
    transition: all 0.25s ease;
    border: 1.5px solid transparent;
}

.sr-chip:hover {
    transform: translateY(-2px);
}

/* Chip when selected */
.sr-chip-selected {
    background: #E9F2FF;
    border-color: #0B63C5;
    color: #0B63C5;
    box-shadow:
        2px 2px 8px rgba(0,0,0,0.12),
        -2px -2px 10px rgba(255,255,255,1);
}

/* Tick icon */
.sr-chip-check {
    margin-right: 8px;
    font-size: 18px;
    color: #0B63C5;
}

.header-chip-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background: #eff0f3;
    box-shadow: -2px -2px 4px 0 #fff, 2px 2px 4px 0 #bfc3cf;
    font-size: 14px !important;
    font-weight: 500;
    padding: 8px 20px !important;
    padding: 8px 24px;
    color: #546280 !important;
}

.socialMediaIcon a {
    color: #fff;
    background-image: linear-gradient(90deg,#35d3e1 -45%,#264a9f 110%,#195dff 140%);
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.smIcons {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    box-shadow: 3px 3px 6px #bfc3cf,-3px -3px 6px #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-right: 10px;
}

@media (max-width: 768px) {
   .video-element {
    padding: 8px !important;
    width: 100%;
    border-radius: 18px !important;
    height: auto;
    display: block;
    object-fit: contain;
    transform-origin: center center;
    transition: transform 420ms cubic-bezier(.2,.9,.2,1);
    will-change: transform;
}
}