:root {
  --primary: #0098d4;
  --primary-dark: #2980b9;
  /* --secondary: #4ecdc4; */
  --dark: #292f36;
  --light: #f7f7f7;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #3498db, #1abc9c);
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --accent-gradient: linear-gradient(135deg, #0098d4 0%, #00f2fe 100%);
  --dark-bg: #0a0e27;
  --dark-secondary: #1a1d3a;
  --text-light: #e8eaed;
  --text-muted: #9aa0a6;
  --hover-glow: 0 0 20px rgba(79, 172, 254, 0.4);
  /* --primary: #6366f1;
  --primary-dark: #4f46e5; */
  --secondary: #3b82f6;
  --accent: #10b981;
  --dark: #0f172a;
  --light: #f8fafc;
  --glass: rgba(255, 255, 255, 0.1);
  --glass-dark: rgba(15, 23, 42, 0.7);

  --sidebar-bg: #0d6efd;
  --sidebar-hover: #0b5ed7;
  --text-color: #ffffff;

  --primary-blue: #3b82f6;
  --card-bg: #f8fafc;
  --text-dark: #1e293b;
  /* --text-light: #64748b; */
  --border-color: #e2e8f0;
}

* {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
margin: 0;
padding: 0;
border: 0;
outline: 0;
}

ul,
li {
padding: 0;
margin: 0;
list-style: none;
}
section,
article,
aside,
footer,
hgroup {
display: block;
}

html,
body {
font-family: 'Poppins', sans-serif;
font-weight: 400;
background-color: #fff;
font-size: 16px;
-ms-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
scroll-behavior: smooth;
}
a {
  text-decoration: none !important;
}         

/*--------------header/navbar---------------------- */

/* ----------header start------------- */
.header-area {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(26, 26, 26, 0.9) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
  transition: none;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  position: relative;
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 3.5rem;
  filter: brightness(1.2);
}

.fl-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
}

.ai-gif {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
}

.fl-contact-btn {
  background: #0098d4;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 3;
}

.fl-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
  color: white;
}

.fl-nav-item {
  position: relative;
  z-index: 3;
  font-size: small;
}

.fl-nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 1rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.fl-nav-link.ai-link .ai-text {
  position: relative;
}

.fl-nav-link.ai-link .ai-text::before {
  content: '[';
  position: absolute;
  left: -0.6rem;
  animation: blink 1s infinite;
}

.fl-nav-link.ai-link .ai-text::after {
  content: ']';
  position: absolute;
  right: -0.6rem;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% {
      opacity: 1;
  }
  51%, 100% {
      opacity: 0;
  }
}

.fl-nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.fl-nav-link:hover {
  color: #0098d4;
  background: rgba(79, 172, 254, 0.1);
}

.fl-nav-link:hover::before {
  width: 80%;
}

.fl-dropdown {
  position: absolute;
  top: 120%;
  left: -450%;
  background: #000;
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 1rem 0;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  list-style: none;
}

.fl-nav-item:hover .fl-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fl-dropdown-item {
  list-style: none;
}

.fl-dropdown-link {
  display: flex;
  align-items: flex-start;
  padding: 1rem 1.5rem;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 0.5rem;
  gap: 1rem;
}

.fl-dropdown-link:hover {
  background: rgba(79, 172, 254, 0.1);
  transform: translateX(5px);
  color: #0098d4;
}

.fl-dropdown-link .fa {
  font-size: 1.2rem;
  width: 24px;
  margin-top: 0.2rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fl-dropdown-link-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  line-height: 1.4;
}

.portfolio-logo {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: contain;
  background-color: rgb(255, 255, 255);
}

.menu-trigger {
  background: #0098d4;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  z-index: 10;
}

.menu-trigger:hover {
  transform: scale(1.05);
}

@media (min-width: 992px) {
  .fl-dropdown {
      min-width: 850px;
      max-height: 350px;
      overflow-y: auto;
      overflow-x: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 1rem;
      padding: 1rem;
  }

  .fl-dropdown::-webkit-scrollbar {
      width: 8px;
  }

  .fl-dropdown::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0.2);
      border-radius: 10px;
  }

  .fl-dropdown::-webkit-scrollbar-thumb {
      background-color: #0098d4;
      border-radius: 10px;
      border: 2px solid var(--dark-secondary);
  }

  .fl-dropdown-item {
      padding: 0;
  }

  .fl-dropdown-link {
      margin: 0;
      width: 100%;
  }
  
}

@media (max-width: 991px) {
  .menu-trigger {
      display: flex;
  }

  .fl-nav {
      position: fixed;
      top: 4.5rem; /* Adjusted to align with header height */
      left: 0;
      right: 0;
      height: calc(100dvh - 4.5rem); /* Full height minus header */
      background: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(10px);
      flex-direction: column;
      padding: 0;
      gap: 0;
      display: none;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      border-top: none;
      overflow-y: auto;
      z-index: 999;
      margin: 0;
  }

  .fl-nav.active {
      display: flex;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  .fl-nav-item {
      width: 100%;
      border-bottom: 1px solid rgba(102, 126, 234, 0.1);
      margin: 0;
      padding: 0;
      display: block;
      line-height: 1;
  }
  

  .fl-nav-item:last-child {
      border-bottom: none;
  }

  .fl-nav-link {
      width: 100%;
      padding: 15px 20px;
      justify-content: space-between;
      color: var(--text-light);
      font-weight: 500;
      font-size: 16px;
      text-transform: none;
      border-radius: 0;
      margin: 0;
      line-height: 1;
      display: flex;
      align-items: center;
  }

  .fl-nav-link:not(.ai-link)::after {
      content: '+';
      font-size: 20px;
      color: var(--text-light);
      font-weight: normal;
  }

  .fl-nav-link:not(.ai-link):hover::after {
      color: var(--text-light);
  }

  .fl-nav-item.active .fl-nav-link:not(.ai-link)::after {
      content: '-';
      color: var(--text-light);
  }

  .fl-nav-link .fa-chevron-down {
      display: none;
  }

  .fl-nav-link.ai-link {
      justify-content: flex-start;
      background: none;
      color: var(--text-light);
      padding: 15px 20px;
      margin: 0;
  }

  .fl-nav-link.ai-link .ai-text::before,
  .fl-nav-link.ai-link .ai-text::after {
      color: var(--text-light);
      animation: blink 1s infinite;
  }

  .fl-nav-item:hover .fl-dropdown {
      display: none; /* Disable hover in mobile/tablet */
  }

  .fl-nav-item.active .fl-dropdown {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  .fl-dropdown {
      position: static;
      background: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(20px);
      margin: 0;
      max-height: none;
      overflow-y: visible;
      transition: none;
      border: none;
      padding: 0;
      min-width: unset;
      border-radius: 0;
      box-shadow: none;
      z-index: 1000;
      display: none; /* Hidden by default */
  }

  .fl-dropdown-item {
      padding: 0;
      border-bottom: 1px solid rgba(102, 126, 234, 0.1);
      background: rgba(0, 0, 0, 0.9);
      margin: 0;
      display: block;
  }

  .fl-dropdown-link {
      margin: 0;
      width: 100%;
      padding: 10px 20px;
      color: var(--text-light);
      background: rgba(0, 0, 0, 0.9);
      border-radius: 0;
  }

  .fl-dropdown-link:hover {
      background: rgba(79, 172, 254, 0.1);
      transform: none;
      color: #0098d4;
  }

  .fl-dropdown-link .fa {
      font-size: 1.2rem;
      width: 24px;
      margin-top: 0.2rem;
      color: var(--text-light);
      background: none;
      -webkit-text-fill-color: initial;
  }

  .fl-dropdown-link-subtext {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 0.3rem;
  }

  .fl-contact-btn {
      margin: 20px 20px 10px 20px;
      width: fit-content;
      padding: 12px 25px;
      text-align: center;
      border-radius: 25px;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 14px;
      background: #0098d4;
      color: white;
  }

  .fl-contact-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 15px rgba(0, 152, 212, 0.4);
      background: #007ab8;
  }

  .portfolio-logo {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      object-fit: contain;
      background-color: rgb(255, 255, 255);
  }
}

@media (max-width: 768px) {
  .fl-nav {
      top: 4.5rem; /* Ensure no gap */
      padding: 0;
      height: 100dvh;
      background: rgba(26, 26,26,1);
  }

  .fl-dropdown {
      background: rgba(0, 0, 0, 0.9);
  }

  .fl-dropdown-item {
      background: rgba(0, 0, 0, 0.9);
  }

  .fl-dropdown-link {
      background: rgba(0, 0, 0, 0.9);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.3s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.fl-nav-link .fa-chevron-down {
  transition: transform 0.3s ease;
}

.fl-nav-item:hover .fl-nav-link .fa-chevron-down,
.fl-nav-item.active .fl-nav-link .fa-chevron-down {
  transform: rotate(180deg);
}
/* ----------header end------------- */
/* ----------header end------------- */


/*
--------------------------------------------
footer start
-------------------------------------------
*/

.main-footer {
  background-color: rgb(26, 26, 26);
  color: white;
  padding: 60px 0 30px;
  position: relative;
}

.main-footer-column {
  transition: transform 0.3s ease;
}

.main-footer-column:hover {
  transform: translateY(-5px);
}

.main-footer-heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: #00aeef;
}

.main-footer-heading:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: #00aeef;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  transition: width 0.3s ease;
}

.main-footer-column:hover .main-footer-heading:after {
  width: 70px;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
  font-size: 14px;
}

.footer-link:hover {
  color: #00aeef;
  text-decoration: none;
}

.main-social-links {
  margin-left: 0;
}

.main-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.main-social-link img {
  width: 18px;
  height: 18px;
}

.main-social-link:hover {
  background: #00aeef;
  transform: translateY(-5px);
  color: white;
}

.footer-badges {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-badge {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-badge:hover {
  opacity: 1;
}

.footer-badge img {
  height: 100px;
  width: auto;
}

.dmca-badge img {
  height: 60px;
  width: auto;
}

.copyright-text,
.statutory-legal-info,
.statutory-legal-info a {
  font-size: 14px;
  opacity: 0.7;
  margin: 0;
  color: #ccc;
}

.copyright-text a,
.statutory-legal-info a {
  color: #00aeef;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.copyright-text a:hover,
.statutory-legal-info a:hover {
  text-decoration: underline;
}

.statutory-legal-info .btn-link {
  color: #00aeef;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.7;
  padding: 0;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
}

.statutory-legal-info .btn-link:hover {
  color: #00aeef;
  text-decoration: underline;
}

/* Custom collapse styles */
.custom-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.custom-collapse.show {
  max-height: 200px; /* Adjust based on content */
  transition: max-height 0.3s ease-in;
}

.dmca-social-row {
  margin-top: 1rem;
  padding-top: 1rem;
}

/* Responsive Adjustments with Bootstrap 5 */
@media (max-width: 768px) {
  .main-footer {
      padding: 40px 0 20px;
  }

  .main-footer-heading {
      font-size: 18px;
  }

  .main-social-link {
      width: 32px;
      height: 32px;
      font-size: 14px;
  }

  .main-social-link img {
      width: 14px;
      height: 14px;
  }

  .footer-badges {
      justify-content: center;
  }

  .footer-badge img {
      height: 72px;
  }

  .dmca-badge img {
      height: 48px;
  }

  .copyright-text,
  .copyright-text a,
  .statutory-legal-info,
  .statutory-legal-info a,
  .statutory-legal-info .btn-link {
      font-size: 12px;
  }

  .dmca-social-row {
      margin-top: 0.75rem;
      padding-top: 0.75rem;
  }
}

@media (max-width: 576px) {
  .main-footer-heading {
      font-size: 16px;
  }
  
  
  .whatsapp{
      margin-right: 110px
  }

  .footer-link {
      font-size: 12px;
  }

  .main-social-link {
      width: 28px;
      height: 28px;
      font-size: 12px;
  }

  .main-social-link img {
      width: 12px;
      height: 12px;
  }

  .footer-badge img {
      height: 60px;
  }

  .dmca-badge img {
      height: 40px;
  }

  .copyright-text,
  .copyright-text a,
  .statutory-legal-info,
  .statutory-legal-info a,
  .statutory-legal-info .btn-link {
      font-size: 10px;
  }

  .dmca-social-row {
      margin-top: 0.5rem;
      padding-top: 0.5rem;
  }
}
/* ---------footer end------------- */


/* 
---------------------------------------------
banner
--------------------------------------------- 
*//* ---------- Main Banner Wrapper ---------- */
/* ---------- Text Overlay on Video ---------- */
/* Fullscreen Banner */
.main-banner {
position: relative;
width: 100%;
height: 100dvh; /* Full height including mobile safe area */
overflow: hidden;
}

/* Video should fill and stay behind */
#bg-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100dvh;
object-fit: cover;
z-index: 0;
}

/* Shadow overlay for dark background */
.video-shadow {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
/* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)); */
background: rgba(0, 0, 0,0.6);
z-index: 1;
}

/* Centered text over the video */
#banner-text {
position: absolute;
top: 5%;
left: 0;
z-index: 2;
width: 100%;
height: 100%;  

}

/* Text styling */
#banner-text h1 {
font-size: 1.8rem;
line-height: 1.2;
}

#banner-text p {
font-size: 0.9rem;
max-width: 700px;
line-height: 1.5;
}
.consult-button{
padding:10px;
border: 1px solid white;
border-radius: 10px;
background-color: #0098d4;
color: white;
}
.consult-button:hover{
background-color: transparent;
}

/* Responsive font sizes */



@media (min-width: 768px) {
#banner-text{
  top: 15%;
}
#banner-text h1 {
  font-size: 2.5rem;
}

#banner-text p {
  font-size: 1.5rem;
}
.consult-button{
  width: 50%;
}

}

@media (min-width: 992px) {

#banner-text h1 {
  font-size: 2.5rem;
}

#banner-text p {
  font-size: 0.9rem;
}
.consult-button{
  width: 20%;
}
}

@media (min-width: 1200px) {
#banner-text h1 {
  font-size: 3rem;
}

#banner-text p {
  font-size: 1rem;
}
.consult-button{
  width: 20%;
}
}
/* ---------- Main Banner Wrapper end ---------- */


/*-------------- cookie------------ */
  /* Cookie Popup Styles */
  .cookie-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: start;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cookie-popup {
    background: #2d2d2d;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    width: 95%;
    position: absolute;
    max-height: 90vh;
    overflow: hidden;
    z-index: 9999;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #444;
}

.cookie-popup-overlay.show .cookie-popup {
    transform: scale(1) translateY(0);
}

.popup-header {
    background: linear-gradient(135deg, #00aeef 0%, #0098d4 100%);
    color: white;
    padding: 30px;
    position: relative;
    text-align: center;
}

.popup-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 8px;
    font-weight: 300;
    color: white;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.popup-body {
    padding: 40px;
    color: #e0e0e0;
    max-height: 60vh;
    overflow-y: auto;
}

.popup-body::-webkit-scrollbar {
    width: 8px;
}

.popup-body::-webkit-scrollbar-track {
    background: #3a3a3a;
    border-radius: 4px;
}

.popup-body::-webkit-scrollbar-thumb {
    background:#00aeef;
    border-radius: 4px;
}

.description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #b0b0b0;
    text-align: center;
}

/* Cookie Options - Always Visible */
.cookie-options {
    margin-bottom: 30px;
}

.cookie-section {
    background: #3a3a3a;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #00aeef;
}

.cookie-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #4a4a4a;
}

.cookie-item:last-child {
    border-bottom: none;
}

.cookie-info h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
}

.cookie-info small {
    color: #aaa;
    font-size: 0.85rem;
}

/* Custom Toggle Switch */
.custom-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: #555;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.custom-switch.active {
    background: #00aeef;
    box-shadow: 0 0 20px rgba(0, 174, 239, 0.4);
}

.custom-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.custom-switch.active::after {
    transform: translateX(30px);
}

.custom-switch.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Button Styles */
.btn-gradient {
    background: linear-gradient(135deg, #00aeef 0%, #0098d4 100%);
    border: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 30px;
    border-radius: 25px !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.4);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid #00aeef !important;
    color: #00aeef !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 30px;
    border-radius: 25px !important;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: #00aeef !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Animations */
@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pulse-animation {
    animation: pulse 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-popup {
        width: 98%;
        margin: 10px;
        top:1%;
    }

    .popup-header {
        padding: 25px 20px;
    }

    .popup-title {
        font-size: 1.4rem;
    }

    .popup-body {
        padding: 25px 20px;
    }

    .cookie-section {
        padding: 20px;
    }

    .btn-gradient,
    .btn-outline-custom {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
  .cookie-popup {
    top:0.5%;
}
    .popup-title {
        font-size: 1.2rem;
    }

    .cookie-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .custom-switch {
        margin-left: 0;
    }
}
/*-------------- cookie end---------- */

/*---------------- contact-popup start----------- */
.contact-popup-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 9999;
display: none;
animation: fadeIn 0.3s ease-in-out;
}

.contact-popup-modal {
position: fixed;
top:50%;
left: 50%;
transform: translate(-50%, -50%);
background: white;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
max-width: 1000px;
width: 95%;
max-height: 90vh;
overflow-y: auto;
animation: slideIn 0.4s ease-out;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

@keyframes slideIn {
from { 
    opacity: 0;
    transform: translate(-50%, -60%);
}
to { 
    opacity: 1;
    transform: translate(-50%, -50%);
}
}

.contact-close-btn {
position: absolute;
top: 20px;
right: 25px;
background: transparent;
border: none;
font-size: 28px;
color: #666;
cursor: pointer;
z-index: 1000;
transition: color 0.3s ease;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
}

.contact-close-btn:hover {
color: #333;
}

.contact-left-section {
background: linear-gradient(135deg, #f0f4ff 0%, #e8f2ff 100%);
padding: 40px 30px;
border-radius: 20px 0 0 20px;
}

.contact-section-title {
color: #4285f4;
font-size: 28px;
font-weight: 700;
margin-bottom: 10px;
}

.contact-section-subtitle {
color: #666;
font-size: 16px;
}

.contact-testimonial-card {
background: white;
border-radius: 15px;
padding: 25px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
margin-bottom: 10px;
text-align: center;
}

.contact-testimonial-avatar {
width: 80px;
height: 80px;
border-radius: 50%;
margin: 0 auto 15px;
background: #ddd;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: #666;
}

.contact-testimonial-name {
font-weight: 700;
font-size: 18px;
color: #333;
margin-bottom: 5px;
}

.contact-testimonial-role {
background: transparent;
border: 2px solid #ddd;
border-radius: 25px;
padding: 5px 15px;
font-size: 12px;
color: #666;
display: inline-block;
margin-bottom: 15px;
}

.contact-testimonial-text {
color: #555;
line-height: 1.6;
font-size: 14px;
font-style: italic;
}

.contact-quote-icon {
color: #4285f4;
font-size: 24px;
}

.contact-right-section {
padding: 20px 30px;
}

.contact-form-title {
font-size: 24px;
font-weight: 700;
width: 80%;
color: #333;
margin-bottom: 8px;
}

.contact-form-subtitle {
color: #666;
font-size: 16px;
margin-bottom: 30px;
}

.contact-form-group {
margin-bottom: 20px;
}

.contact-form-control {
border: none;
border-bottom: 2px solid #ddd;
border-radius: 0;
padding: 10px 0;
font-size: 16px;
background: transparent;
transition: border-color 0.3s ease;
width: 100%;
}

.contact-form-control:focus {
border-color: #4285f4;
box-shadow: none;
background: transparent;
outline: none;
}

.contact-form-control::placeholder {
color: #999;
}

.contact-submit-btn {
background: #4285f4;
color: white;
border: none;
padding: 15px 40px;
border-radius: 30px;
font-size: 16px;
font-weight: 600;
width: 100%;
transition: background 0.3s ease;
cursor: pointer;
}

.contact-submit-btn:hover {
background: #3367d6;
}

/* Prevent any spinner or loading animations */
.contact-submit-btn:disabled {
background: #4285f4;
cursor: pointer;
}

.contact-submit-btn .fa-spinner {
display: none !important;
}

/* Mobile Responsive */
@media (max-width: 576px) {
.contact-popup-modal {
    width: 95%;
    height: 90vh;
    border-radius: 15px;
}

.contact-left-section {
    display: none;
}

.contact-right-section {
    padding: 25px 20px;
    border-radius: 15px;
}

.contact-form-title {
    font-size: 20px;
}
.contact-submit-btn{
  font-size: 10px !important;
  padding: 15px 8px !important;
}
}

@media (max-width: 480px) {
.contact-popup-modal {
    width: 98%;
    height: 95vh;
}

.contact-right-section {
    padding: 20px 15px;
}

.contact-form-title {
    font-size: 18px;
}
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}

input[type="number"] {
-moz-appearance: textfield;
}
/* ------------------end contact-popup------------ */

/*----------- chatbot start---------- */

/*
--------------------------------------------
chat bot
--------------------------------------------
*/
/* Chatbot Container */
.chatbot-container {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 1000;
}

.chatbot-icon-whatsapp {
width: 60px;
height: 60px;
background-color: green;
/* background-color: #4a6bff; */
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-size: 24px;
cursor: pointer;
/* box-shadow: 0 4px 15px #0098d4; */
transition: all 0.3s ease;
position: relative;
animation: float 4s ease-in-out infinite;
margin-bottom: 12px;
}

.chatbot-icon-whatsapp:hover {
transform: scale(1.5);
/* box-shadow: 0 6px 20px rgba(74, 107, 255, 1); */
box-shadow: 0 4px 15px green;
}

/* Chatbot Icon */
.chatbot-icon {
width: 60px;
height: 60px;
background-color: #0098d4;
/* background-color: #4a6bff; */
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-size: 24px;
cursor: pointer;
/* box-shadow: 0 4px 15px #0098d4; */
transition: all 0.3s ease;
position: relative;
animation: float 3s ease-in-out infinite;
}

.chatbot-icon:hover {
transform: scale(1.5);
/* box-shadow: 0 6px 20px rgba(74, 107, 255, 1); */
box-shadow: 0 4px 15px #0098d4c3;
}

@keyframes float {
0%, 100% {
    transform: translateY(0);
}
50% {
    transform: translateY(-10px);
}
}

/* Emotion Selector */
.emotion-selector {
position: absolute;
bottom: 80px;
right: 0;
width: 350px;
background-color: white;
border-radius: 15px;
box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
display: none;
flex-direction: column;
padding: 20px;
opacity: 0;
transform: translateY(20px);
transition: opacity 0.3s ease, transform 0.3s ease;
}

.emotion-selector.active {
display: flex;
opacity: 1;
transform: translateY(0);
}

.emotion-selector h3 {
margin-top: 0;
margin-bottom: 10px;
font-size: 18px;
}

.emotion-selector p {
margin-top: 0;
margin-bottom: 20px;
font-size: 14px;
color: #666;
}

.emotion-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
margin-bottom: 15px;
}

.emotion-option {
display: flex;
flex-direction: column;
align-items: center;
padding: 15px;
border-radius: 10px;
cursor: pointer;
transition: all 0.2s ease;
}

.emotion-option:hover {
transform: scale(1.05);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.emotion-option i {
font-size: 24px;
margin-bottom: 8px;
}

.emotion-option.normal {
background-color: #c6ffc3;
color: #0bd400;
border: 1px solid #0bd400;
}

.emotion-option.happy {
background-color: #fef3c7;
color: #d97706;
border: 1px solid #d97706;
}

.emotion-option.sad {
background-color: #dbeafe;
color: #1d4ed8;
border: 1px solid #1d4ed8;
}

.emotion-option.angry {
background-color: #fee2e2;
color: #dc2626;
border: 1px solid #dc2626;
}

/* Chat Window */
.chat-window {
position: absolute;
bottom: 80px;
right: 0;
width: 350px;
height: 450px;
background-color: white;
border-radius: 15px;
box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
display: none;
flex-direction: column;
overflow: hidden;
opacity: 0;
transform: translateY(20px);
transition: opacity 0.3s ease, transform 0.3s ease;
}

.chat-window.active {
display: flex;
opacity: 1;
transform: translateY(0);
}

.chat-header {
background-color: #4a6bff;
color: white;
padding: 15px;
display: flex;
justify-content: space-between;
align-items: center;
}

.chat-header h3 {
margin: 0;
font-size: 18px;
}

.chat-controls button {
background: none;
border: none;
color: white;
font-size: 16px;
cursor: pointer;
margin-left: 10px;
transition: transform 0.2s;
}

.chat-controls button:hover {
transform: scale(1.1);
}

.chat-messages {
flex: 1;
padding: 15px;
overflow-y: auto;
display: flex;
flex-direction: column;
}

.message {
max-width: 80%;
padding: 10px 15px;
margin-bottom: 10px;
border-radius: 18px;
font-size: 14px;
line-height: 1.4;
position: relative;
animation: messageAppear 0.3s ease-out;
}

@keyframes messageAppear {
from {
    opacity: 0;
    transform: translateY(10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.user-message {
align-self: flex-end;
background-color: #4a6bff;
color: white;
border-bottom-right-radius: 5px;
}

.bot-message {
align-self: flex-start;
background-color: #f0f0f0;
color: #333;
border-bottom-left-radius: 5px;
}

.typing-indicator {
display: flex;
align-self: flex-start;
margin-bottom: 10px;
}

.typing-dot {
width: 8px;
height: 8px;
background-color: #999;
border-radius: 50%;
margin-right: 5px;
animation: typingAnimation 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
animation-delay: 0s;
}

.typing-dot:nth-child(2) {
animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
animation-delay: 0.4s;
}

@keyframes typingAnimation {
0%, 60%, 100% {
    transform: translateY(0);
}
30% {
    transform: translateY(-5px);
}
}

.chat-input {
display: flex;
padding: 10px;
border-top: 1px solid #eee;
}

.chat-input input {
flex: 1;
padding: 10px 15px;
border: 1px solid #ddd;
border-radius: 25px;
outline: none;
font-size: 14px;
transition: border 0.3s;
}

.chat-input input:focus {
border-color: #4a6bff;
}

.chat-input button {
width: 40px;
height: 40px;
border: none;
background-color: #4a6bff;
color: white;
border-radius: 50%;
margin-left: 10px;
cursor: pointer;
transition: background-color 0.3s;
}

.chat-input button:hover {
background-color: #3a5bef;
}

/* Responsive */
@media (max-width: 480px) {
.chat-window, .emotion-selector {
    width: 300px;
}
}

/* ----------chat bot end---------- */

/* ==== dark-background-Section Styles---/---awards section ==== */
.dark-background-Section {
  padding: 60px 0;
  background: #000;
  position: relative;
  overflow: hidden;
}

/* .dark-background-Section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB...') no-repeat center center;
  background-size: cover;
  opacity: 0.4;
  z-index: 0;
} */

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary, #6366f1), var(--secondary, #ec4899));
  opacity: 0.05;
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  left: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -50px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 10%;
}

.circle-decoration {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--secondary, #ec4899);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.circle-1 {
  top: 10%;
  left: 5%;
}

.circle-2 {
  top: 20%;
  right: 10%;
}

.circle-3 {
  bottom: 15%;
  left: 20%;
}

.circle-4 {
  bottom: 30%;
  right: 25%;
}

/* ==== Awards Section ==== */
.awards-section {
  padding: 0;
}

.award-img {
  max-height: 80px;
  transition: transform 0.3s ease;
}

.award-img:hover {
  transform: scale(1.05);
}

/* ==== Typography ==== */
.main-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.description {
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ==== Responsive Breakpoints ==== */
@media (max-width: 991.98px) {
  .main-heading {
    font-size: 1.8rem;
  }

  .description {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .main-heading {
    font-size: 1.6rem;
  }

  .award-img {
    max-height: 60px;
  }
}

@media (max-width: 575.98px) {
  .main-heading {
    font-size: 1.4rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .award-img {
    max-height: 50px;
  }
}

/* ----award and abouts us ---------- */


/*------------ our services---------  */

.section-content {
  position: relative;
  z-index: 1;
}

.section-heading {
  margin-bottom: 80px;
}

.section-heading h2 {
  color: var(--light);
  font-size: 44px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-heading p {
  color: rgba(248, 250, 252, 0.7);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(to right, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card {
  position: relative;
  height: 100%;
  min-height: 330px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  z-index: 1;
  margin-bottom: 30px;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05));
  z-index: -1;
  border-radius: 16px;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-card:hover .service-icon {
  transform: translateY(-10px);
  color: var(--accent);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--secondary), var(--accent));
  opacity: 0;
  transition: all 0.4s ease;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--secondary);
  font-size: 36px;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card h4 {
  color: var(--light);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.service-card p {
  color: rgba(248, 250, 252, 0.7);
  font-size: 16px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.service-features {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.service-features li {
  color: rgba(248, 250, 252, 0.7);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.service-features li i {
  color: var(--accent);
  margin-right: 10px;
  font-size: 14px;
}

.service-action {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.read-more {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 30px;
  background: linear-gradient(45deg, var(--primary-dark), var(--secondary));
  color: var(--light);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.read-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(45deg, var(--secondary), var(--accent));
  transition: all 0.5s ease;
  z-index: -1;
}

.read-more:hover::before {
  width: 100%;
}

.read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

.tech-stack {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(248, 250, 252, 0.5);
  font-size: 12px;
  transition: all 0.3s ease;
}

.service-card:hover .tech-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--light);
  transform: rotate(360deg);
}

/* Tab Navigation */
.service-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(248, 250, 252, 0.6);
  padding: 12px 24px;
  margin: 0 5px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: linear-gradient(45deg, var(--primary-dark), var(--secondary));
  border-color: transparent;
  color: var(--light);
}

.tab-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(248, 250, 252, 0.8);
}

.card-wrapper {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.fade-scale-up {
  opacity: 0;
  transform: scale(0.9) translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center bottom;
}

.fade-scale-up.appear {
  opacity: 1;
  transform: scale(1) translateY(0);
}
/*----------- services send  ---------- */

/*---------------- testimonial start ----------- */
.slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  z-index: 1;
}

.slider-track {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  width: 100%;
  height: 100%;
  background:rgba(26,26,26,0.6);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.8s ease;
  opacity: 0;
  transform: translateX(100%);
  will-change: transform, opacity;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.testimonial-card.exit-left {
  transform: translateX(-100%);
  opacity: 0;
}

.testimonial-client-info{
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-client-info .client-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #0098d4;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  flex-shrink: 0;
}

.client-details {
  flex: 1;
}

.client-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.client-company {
  font-size: 0.95rem;
  color:  #94a3b8;
  margin-bottom: 0.5rem;
}

.rating {
  display: flex;
  gap: 0.3rem;
}

.rating i {
  color: goldenrod;
  font-size: 1rem;
}

.testimonial-text-comment {
  font-size: 1.05rem;
  color: white !important;
  line-height: 1.8;
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.testimonial-date {
  font-size: 0.9rem;
  color: #94a3b8;
  text-align: right;
  font-style: italic;
  margin-top: 1rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.control-btn {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  border: 2px solid #0098d4;
  background: transparent;
  color: #0098d4;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-btn:hover {
  background: #0098d4;
  color: white;
  transform: scale(1.05);
}

.slider-dots {
  display: flex;
  gap: 0.8rem;
}

.dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  border-radius: 50%;
  background: #94a3b8;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #0098d4;
  transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .slider-container {
      max-width: 750px;
  }

  .testimonial-card {
      padding: 2rem;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
      padding: 60px 0;
  }

  .slider-track {
      height: 450px;
  }

  .client-info {
      flex-direction: column;
      text-align: center;
  }

  .rating {
      justify-content: center;
  }

  .testimonial-text-comment{
      font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .slider-track {
      height: 500px;
  }

  .testimonial-card {
      padding: 1.5rem;
  }

  .client-avatar {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
  }

  .control-btn {
      width: 45px;
      height: 45px;
      font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .section-heading h2 {
      font-size: 1.8rem;
  }

  .slider-track {
      height: 550px;
  }

  .testimonial-text-comment {
      font-size: 0.95rem;
  }
}

@media (max-width: 360px) {
  .slider-track {
      height: 600px;
  }

  .testimonial-card {
      padding: 1.25rem;
  }
}

/* Animation for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .testimonial-card {
      transition: none;
  }
}
/*--------------------- testimonial end --------------- */  



/* ---------industries demands start-------- */
.header-section {
  padding: 60px 20px;
  text-align: center;
  
}

.heading {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #fff;
}

.explore-btn {
  background-color: #0d6efd;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.explore-btn:hover {
  background-color: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.industry-card {
  background-color: #000;
  border: 1px solid #1e1e1e;
  border-radius: 10px;
  padding: 30px 15px;
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.industry-card:hover {
  border-color: #0d6efd;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.active-card {
  border-color: #0d6efd;
  box-shadow: 0 0 15px rgba(13, 110, 253, 0.5);
}

.icon-container {
  font-size: 2rem;
  margin-bottom: 15px;
  color: white;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  color: #fff !important;
}

@media (max-width: 768px) {
  .heading {
      font-size: 2rem;
  }
  .industry-card {
      padding: 20px 10px;
  }
}
/* ---------industries demands ends-------- */


/* 
---------------------------------------------
Experties fields
--------------------------------------------- 
*/


.main-container {
  background: white;
  min-height: 100vh;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-radius: 10px !important ;
}

/* Expertise Sidebar Styles */
.expertise-sidebar {
  background: var(--primary-blue);
  color: white;
  min-height: 100vh;
  width: 100%;
  overflow-y: auto;
  border-radius: 10px 0 0 10px ;
}

.expertise-sidebar-header {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  opacity: 0.8;
  padding: 1rem;
  margin-bottom: 0.5rem;
}

.expertise-nav-item {
  margin-bottom: 0.25rem;
}

.expertise-nav-link {
  color: white !important;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}

.expertise-nav-link:hover, .expertise-nav-link.active {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.expertise-nav-link i {
  margin-right: 0.75rem;
  width: 1.25rem;
  text-align: center;
}

/* Expertise Content Area */
.expertise-content-area {
  background: var(--card-bg);
  min-height: 100vh;
  padding: 2rem;
}

.expertise-content-section {
  display: none;
}

.expertise-content-section.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.expertise-section-title {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

/* Expertise Tech Cards Grid */
.expertise-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.expertise-tech-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.expertise-tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.expertise-tech-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-tech-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.expertise-tech-name {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .main-container {
      flex-direction: column;
  }

  .expertise-sidebar {
      min-height: auto;
      width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      white-space: nowrap;
  }

  .expertise-sidebar-content {
      display: flex;
      padding: 1rem 0;
  }

  .expertise-sidebar-header {
      display: none;
  }

  .expertise-nav {
      display: flex !important;
      flex-direction: row !important;
      padding: 0 1rem;
  }

  .expertise-nav-item {
      margin-right: 0.5rem;
      margin-bottom: 0;
      flex-shrink: 0;
  }

  .expertise-nav-link {
      white-space: nowrap;
      margin: 0;
      padding: 0.75rem 1rem;
      font-size: 0.875rem;
  }

  .expertise-nav-link i {
      margin-right: 0.5rem;
  }

  .expertise-content-area {
      padding: 1rem;
  }

  .expertise-tech-grid {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 1rem;
  }

  .expertise-tech-card {
      padding: 1rem;
  }

  .expertise-section-title {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
  }
}

/* Desktop Expertise Sidebar Scrollbar */
@media (min-width: 769px) {

  .expertise-sidebar::-webkit-scrollbar {
      width: 6px;
  }

  .expertise-sidebar::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.1);
  }

  .expertise-sidebar::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.3);
      border-radius: 3px;
  }

  .expertise-sidebar::-webkit-scrollbar-thumb:hover {
      background: rgba(255, 255, 255, 0.5);
  }
}

/* Mobile Expertise Sidebar Scrollbar */
@media (max-width: 768px) {

  .expertise-sidebar::-webkit-scrollbar {
      height: 4px;
  }

  .expertise-sidebar::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.1);
  }

  .expertise-sidebar::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.3);
      border-radius: 2px;
  }
}
/* ***** experties fields end ***** */

 
/* 
---------------------------------------------
F&Q
--------------------------------------------- 
*/

.faq-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.faq-container {
  position: relative;
  z-index: 2;
}

.faq-title {
  text-align: center;
  margin-bottom: 50px;
  color: #333;
  position: relative;
}

.faq-title h2 {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-title p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

.faq-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question i {
  transition: all 0.3s ease;
  font-size: 1.2rem;
  color: #4b6cb7;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  background-color: #f8f9fa;
  color: #555 ;
  font-size: 1rem ;
  line-height: 1.6;
}

.faq-item.active .faq-question {
  background-color: #4b6cb7;
  color: white;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: white;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
}

.faq-decoration {
  position: absolute;
  opacity: 0.07;
  z-index: 1;
}

.faq-decoration-1 {
  top: 10%;
  left: 5%;
  font-size: 15rem;
  transform: rotate(-15deg);
}

.faq-decoration-2 {
  bottom: 10%;
  right: 5%;
  font-size: 12rem;
  transform: rotate(15deg);
}

.faq-search {
  margin-bottom: 40px;
  position: relative;
}

.faq-search input {
  padding: 15px 20px;
  border-radius: 50px;
  border: none;
  width: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding-left: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.faq-search input:focus {
  box-shadow: 0 5px 20px rgba(75, 108, 183, 0.2);
  outline: none;
}

.faq-search i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #4b6cb7;
  font-size: 1.2rem;
}

.faq-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 10px;
}

.faq-category {
  padding: 10px 20px;
  background-color: white;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-category:hover, .faq-category.active {
  background-color: #4b6cb7;
  color: white;
  transform: translateY(-2px);
}

.faq-not-found {
  text-align: center;
  padding: 40px;
  display: none;
}

.faq-not-found i {
  font-size: 3rem;
  color: #4b6cb7;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .faq-title h2 {
      font-size: 2rem;
  }
  
  .faq-decoration {
      display: none;
  }
}
/* ***** F&Q end ***** */



/* 
---------------------------------------------
Get in touch
--------------------------------------------- 
*/
#contact-us {
  margin-top: 80px;
  padding: 60px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

#contact-us .container-fluid {
  position: relative;
  z-index: 2;
}

#contact-us .col-lg-6 {
  padding: 0;
}


.map-container {
height: 95%;
position: relative;
overflow: hidden;
background: #f8f9fa;
border-radius: 15px;
margin: 20px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
width: 100%;
height: 100%;
border: none;
border-radius: 15px;
filter: saturate(0.8) contrast(1.1);
transition: all 0.3s ease;
}

.map-container:hover iframe {
filter: saturate(1) contrast(1.2);
transform: scale(1.02);
}


.company-info {
position: absolute;
top: 20px;
right: 20px;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
padding: 20px;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
z-index: 10;
max-width: 300px;
}

.company-info h4 {
color: #2c3e50;
font-weight: 700;
margin-bottom: 15px;
font-size: 18px;
}

.company-info p {
color: #666;
margin-bottom: 8px;
font-size: 14px;
display: flex;
align-items: center;
}

.company-info i {
margin-right: 8px;
color: #0098d4;
width: 16px;
}


.contact-form {
padding: 40px;
background: #ffffff;
border-radius: 20px;
margin: 20px;
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
border: 1px solid #e2e8f0;
position: relative;
overflow: hidden;

}

.contact-form::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background:#0098d4;
}

.contact-form h3 {
color: #0098d4;
font-weight: 700;
margin-bottom: 30px;
text-align: center;
font-size: 28px;
}

.contact-form #contact {
background: transparent;
padding: 0;
border-radius: 0;
}

.contact-form input,
.contact-form textarea {
color: #2c3e50;
font-size: 15px;
border: 2px solid #e9ecef;
background-color: #fff;
width: 100%;
height: 50px;
outline: none;
line-height: 50px;
padding: 0 20px;
border-radius: 10px;
margin-bottom: 20px;
transition: all 0.3s ease;
font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
border-color: #0098d4;
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
transform: translateY(-2px);
}

.contact-form textarea {
height: 120px;
resize: vertical;
line-height: 1.6;
padding: 15px 20px;
}

.contact-form ::placeholder {
color: #95a5a6;
font-weight: 400;
}

.contact-form button {
display: inline-block;
font-size: 16px;
padding: 15px 40px;
background: #0098d4;
color: #fff;
text-align: center;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
border: none;
outline: none;
border-radius: 50px;
cursor: pointer;
box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
position: relative;
overflow: hidden;
}

.contact-form button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s;
}

.contact-form button:hover::before {
left: 100%;
}

.contact-form button:hover {
background: transparent;
border: #0098d4 1px solid;
color: #0098d4;
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.contact-form button:active {
transform: translateY(-1px);
}


.section-title {
text-align: center;
margin-bottom: 60px;
position: relative;
z-index: 2;
}

.section-title h2 {
color: #0098d4;
font-size: 48px;
font-weight: 700;
margin-bottom: 20px;
text-shadow: none;
}

.section-title p {
color: #64748b;
font-size: 18px;
max-width: 600px;
margin: 0 auto;
}


@media (max-width: 768px) {
.contact-form {
    padding: 30px 20px;
    margin: 15px;
}

.map-container {
    height: 400px;
    margin: 15px;
}

.company-info {
    position: relative;
    top: auto;
    left: auto;
    margin: 20px;
    max-width: none;
}

.section-title h2 {
    font-size: 36px;
}

.contact-form h3 {
    font-size: 24px;
}
}


/*====== end Get in touch  ========== */
