@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap');

html,body{
  overflow-x: hidden;
  scroll-behavior: initial;
  /* overflow: hidden; */
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('../img/wave3.png');
  background-color: rgb(13, 28, 51);

  /* Your wave image */
  background-repeat: repeat-y;
  /* Repeat horizontally */

}

:root {
  /* Logo Color Palette */
  --primary: #FF822C;       /* Vibrant orange */
  --secondary: #32B9E8;     /* Cyan-blue */
  --dark: #0A0A0A;          /* Rich black (not pure #000) */
  --light: #FFFFFF;         /* Pure white */
  --glass-bg:rgba(18, 18, 18, 0.9); /* More transparency */
  --text-color:#FFFFFF;  /* Darker text */
  --blue-bg:linear-gradient(90deg, #032A48 0%,rgb(13, 28, 51,0.1) 100%);
  --blue-menu:linear-gradient(90deg, #032A48 0%, #132C43 100%);
  --blue-bg-code:#0F172A;
  
  /* Derived Colors */
  --primary-hover: #E5671F;  /* 10% darker orange */
  --secondary-hover: #1F8FB0; /* 15% darker cyan */
  --overlay-dark: rgba(10,10,10,0.95);
  --overlay-light: rgba(255,255,255,0.1);
  --blue-glass-bg:linear-gradient(90deg, #032A48 0%, rgb(4, 31, 52,0.1) 100%);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}



:root {
  /* Heading Font Sizes */
  --h1: 3rem;
  --h2: 2.8rem;
  --h3: 1.8rem;
  --h4: 1.8rem;
  --h5: 1.4rem;
  --h6: 1.1rem;
  
  /* Spacing */
  --heading-margin: 0.5em 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin: var(--heading-margin);
  line-height: 1.2;
  
}

h1 {
  font-size: var(--h1);
  color: #FF822C;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  position: relative;
  padding-bottom: 1rem;
}


h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background: #32B9E8;
}

/* h2 {
  font-size: var(--h2);
  color: #32B9E8;
  padding-left: 1.5rem;
  border-left: 4px solid #FF822C;
} */

h2{
  color:var(--primary)
}
h3 {
  font-size: var(--h3);
  color: #FFFFFF;
  position: relative;
  padding-bottom: 0.5rem;
}

h3::before {
  content: '◆';
  color: var(--secondary);
  margin-right: 0.8rem;
}

h4 {
  font-size: var(--h4);
  color: #FF822C;
  border-bottom: 2px solid #32B9E8;
  display: inline-block;
  padding-bottom: 0.3rem;
}

h5 {
  font-size: var(--h5);
  color: #32B9E8;
  letter-spacing: 0.05em;
}

h6 {
  font-size: var(--h6);
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  text-transform: uppercase;
}



/* Special Effects */
h2:hover {
  text-shadow: 0 0 15px rgba(50,185,232,0.3);
  transition: text-shadow 0.3s ease;
}

h4:hover {
  border-color: #FF822C;
  transition: border-color 0.3s ease;
}

.service-card h3{
  font-size: 23px;
}
.service-card h3::before{
 content: none;
}


/* Header Styles */
.glass-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: var(--blur-intensity);
  -webkit-backdrop-filter: var(--blur-intensity);
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
  z-index: 1000;
}

.nav-container {
  /* max-width: 1280px; */
  margin: 0 auto;
  padding:0.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--blue-bg);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
  transition: opacity var(--transition-speed);
}

.logo:hover {
  opacity: 0.8;
}

/* Desktop Navigation */
.nav-menu {
  display: flex;
  gap: 1rem;
  list-style: none;
  align-items: center;
}

.nav-item {
  position: relative;
}
.nav-link.active{
  background: #E5671F;
  color: var(--primary-color);
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all var(--transition-speed);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover {
  background: #E5671F;
  color: var(--primary-color);

}

/* Dropdown Menu */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background:linear-gradient(90deg, #032A48 0%, #132C43 100%);
  backdrop-filter: var(--blur-intensity);
  -webkit-backdrop-filter: var(--blur-intensity);
  border-radius: 0.5rem;
  padding: 0.5rem;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-speed);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-color);
  text-decoration: none;
  border-radius: 0.25rem;
  transition: background var(--transition-speed);
}

.dropdown-link:hover ,.dropdown-link.active {
    background: #E5671F;
    color: var(--primary-color);

}


/* CTA Button */
.cta-button {
  background: linear-gradient(45deg, var(--primary-color), #3b82f6);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-color);
}
.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-images {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo-icon {
  height: 70px; /* Set the height of the logo image */
  /* Ensures the image doesn't overflow */
  object-fit: contain; /* Ensures the image maintains its aspect ratio */
}


.logo-text {
  height: 22px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.2rem;
  margin-top: 1rem;
  /* margin-left:-8px; */
}

/* Optional hover effect */
.logo-images:hover {
  transform: scale(1.05);
}


/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hero-banner {
  position: relative;
  height: 100vh;
  min-height: 600px;
  /* margin-top: 80px; */
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100vh;
  position: relative;
  object-fit: cover;
  /* filter: brightness(0.9); */
}

.banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(transparent 0%, rgba(18,18,18,0.9) 70%);
}

.banner-content {
  position: absolute;
  top: 10%;
  left: 0;
  /* left: 57%; */
  /* max-width: 600px; */
  z-index: 2;
  transform: translateY(50px);
  opacity: 0;
  animation: slideUp 1s ease forwards;
  animation-delay: 0.5s;
  width: 50%;
  padding: 2rem;
 
}

.banner-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.banner-subtitle {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.9);
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1s;
}

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

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

.scroll-indicator {
  position: absolute;
  /* bottom: 2%; */
  /* left: 5%; */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.5s;
  margin-top: 20px;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  animation: lineGrow 2s infinite;
}
.scroll-indicator a{
  color: var(--primary-hover);
  text-decoration: none;
  font-weight: 600;
  
}

@keyframes lineGrow {
  0% { height: 0; opacity: 0; }
  50% { height: 40px; opacity: 1; }
  100% { height: 0; opacity: 0; }
}



@keyframes floatText {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-30px) translateX(-50%); }
  60% { transform: translateY(-15px) translateX(-50%); }
}









.about-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--blue-bg);
  padding: 2rem;
}

.content-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: var(--blue-bg);
  border-radius: 12px;
  border: 1px solid rgba(50, 185, 232, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.content-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, 
      rgba(255, 130, 44, 0.05) 0%, 
      rgba(50, 185, 232, 0.03) 50%, 
      rgba(18, 18, 18, 0) 100%);
  pointer-events: none;
  z-index: -1;
}

/* Professional Typography */
.content-container h2 {
  color: #FF822C;
  font-size: 2.1rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
  font-weight: 600;
}

.content-container h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #32B9E8;
}

.content-container p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Grid Layout */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Professional Cards */
.professional-card {
  background: rgba(30, 30, 30, 0.9);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(50, 185, 232, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.professional-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 130, 44, 0.1);
  border-color: rgba(255, 130, 44, 0.2);
}

/* List Styling */
.professional-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.professional-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.professional-list li::before {
  content: '▹';
  color: #FF822C;
  font-size: 1.2rem;
}

/* Table Styling */
.professional-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.professional-table th {
  background: rgba(50, 185, 232, 0.1);
  color: #32B9E8;
  padding: 1.2rem;
  text-align: left;
}

.professional-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.professional-table tr:hover {
  background: rgba(255, 130, 44, 0.03);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 4rem 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(50, 185, 232, 0.1);
}
.background-animation {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: float 20s infinite linear;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: #ff3366;
  top: 20%;
  left: 10%;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: #4ecdc4;
  top: 50%;
  right: 10%;
  animation-delay: -5s;
}

.shape-3 {
  width: 350px;
  height: 350px;
  background: #ffe66d;
  bottom: 10%;
  left: 40%;
  animation-delay: -10s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  25% {
    transform: translateY(-20px) translateX(10px);
  }

  50% {
    transform: translateY(10px) translateX(-10px);
  }

  75% {
    transform: translateY(-10px) translateX(-20px);
  }
}

/* Add these styles to your existing CSS */
/* .section-title {
  position: relative;
  padding-left: 30px;
  margin-bottom: 40px;
} */


/* Optional: Add animation */
/* .section-title::before {
  transition: height 0.3s ease;
}

.section-title:hover::before {
  height: 100%;
} */


.intro-text {
  font-size: 1.2rem;
  margin-bottom: 4rem;
  line-height: 1.7;
}

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

.service-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.strengths-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  padding-left: 0;
}

.strengths-list li {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #4ecdc4;
  color:var(--text-color)
}

.cta {
  text-align: center;
  margin-top: 4rem;
}


.services-section {
  position: relative;
  min-height: 100vh;
  padding: 4rem 2rem;
  background:var(--blue-bg);
  overflow: hidden;
}

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

.service-card {
  background: var(--blue-bg);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  /* background: rgba(255, 255, 255, 0.08); */
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.service-features {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color:var(--secondary)
}

.service-features li:last-child {
  border-bottom: none;
}

.cta-banner {
  text-align: center;
  /* padding: 3rem; */
  /* background: linear-gradient(45deg, #3b82f6, #6366f1); */
  border-radius: 15px;
  margin-top: 4rem;
  background: var(--blue-bg);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #3b82f6;
}
cta-banner::after{
  content: none;
}

.cta-content {
  /* max-width: 600px; */
  margin: 0 auto;
}




.cta-button {
  display: inline-block;
  margin-top: 2rem;
  background: rgb(255, 130, 44);
  color: rgb(18, 18, 18);
  /* padding: 0.8rem 1.5rem; */
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 50px;

}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 130, 44, 0.3);
}
.cta-btn-menu{
  margin-top: 0px;
  background-color: var(--primary-hover);
}

.why-choose-section {
  position: relative;
  min-height: 100vh;
  padding: 4rem 2rem;
  background: var(--blue-bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.robot-space {
  position: relative;
  height: 600px;
}

.floating-robot {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
}

.highlights-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #3b82f6;
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.cert-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}


.portfolio-grid {
  display: grid;
  gap: 2rem;
  padding: 1rem;
  margin: 2rem 0;
  
  /* Mobile First (1 column) */
  grid-template-columns: repeat(1, 1fr);

  /* Tablet (2 columns) */
  @media (min-width: 768px) {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Desktop (3 columns) */
  @media (min-width: 1024px) {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  /* Large Desktop (3 columns with max-width) */
  @media (min-width: 1280px) {
    max-width: 1440px;
    margin: 2rem auto;
  }
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--blue-bg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Card Hover Effect */
  &:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    
    .project-image {
      transform: scale(1.05);
    }
  }
}

.project-image {
  width: 100%;
  height: 100px;
  object-fit: cover;
  transition: transform 0.3s ease;
  padding: 1rem;
}

.project-info {
  padding: 1.5rem;
  
  @media (min-width: 768px) {
    padding: 2rem;
  }
}

/* Responsive Typography */
.project-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  
  @media (min-width: 768px) {
    font-size: 1.5rem;
  }
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.project-tags span {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  
  @media (min-width: 768px) {
    font-size: 0.875rem;
  }
}

/* Mobile Menu Adjustment */
@media (max-width: 480px) {
  .portfolio-grid {
    gap: 1rem;
    padding: 0.5rem;
  }
  
  .portfolio-card {
    margin-bottom: 0.5rem;
  }
  

}

/* Touch Device Optimization */
@media (hover: none) {
  .portfolio-card:hover {
    transform: none;
    box-shadow: none;
    
    .project-image {
      transform: none;
    }
  }
}
.confidential-project {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 15px;
  border: 2px dashed #4ecdc4;
}

.confidential-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.2;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tech-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.project-link {
  display: inline-block;
  margin-top: 1rem;
  color: #4ecdc4;
  text-decoration: none;
  font-weight: bold;
}








.hamburger {
  width: 30px;
  height: 2px;
  background: #f8fafc;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}



/* Scroll Effect */
.header-scrolled {
  background: rgba(15, 23, 42, 0.95);
  padding: 0.5rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-section {
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
}

.contact-gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,130,44,0.15) 0%, rgba(18,18,18,0) 70%);
  pointer-events: none;
}

.contact-info-blur {
  background: var(--blue-bg);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 130, 44, 0.1);
  position: relative;
}

.contact-form-modern {
  background: var(--blue-bg);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform-style: preserve-3d;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-input-modern {
  width: 100%;
  padding: 15px;
  background: transparent;
  border: 1px solid rgba(255, 130, 44, 0.3);
  border-radius: 8px;
  color: #fff;
  transition: all 0.3s ease;
}

.form-input-modern:focus {
  border-color: rgb(255, 130, 44);
  box-shadow: 0 0 15px rgba(255, 130, 44, 0.2);
}

.form-label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-input-modern:focus ~ .form-label,
.form-input-modern:not(:placeholder-shown) ~ .form-label {
  top: -10px;
  left: 10px;
  font-size: 0.8em;
  color: rgb(255, 130, 44);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  margin-bottom: 25px;
  background: rgb(13, 28, 51);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-method:hover {
  background: rgba(255, 130, 44, 0.1);
  transform: translateX(10px);
}

.contact-icon-modern {
  color: var(--text-color);
  width: 50px;
  height: 50px;
  background: rgba(255, 130, 44, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.contact-details-modern h3 {
  margin-bottom: 5px;
  color: rgb(255, 130, 44);
}

.contact-details-modern p {
  color: rgba(255,255,255,0.8);
}

.submit-btn-modern {
  background: rgb(255, 130, 44);
  color: #121212;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.submit-btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 130, 44, 0.3);
}


@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.floating-element {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255,130,44,0.1);
  border-radius: 20px;
  animation: float 6s ease-in-out infinite;
}

.footer {
  background: var(--blue-bg);
  color: rgba(255, 255, 255, 0.8);
  padding:3rem 2rem;
  border-top: 1px solid rgba(255, 130, 44, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.footer-section h4 {
  color: rgb(255, 130, 44);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: rgb(255, 130, 44);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: rgb(255, 130, 44);
}

.footer-bottom {
  margin-top: 3rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 130, 44, 0.1);
}





/* ========== Buttons & CTAs ========== */
.primary-btn {
  background: var(--primary);
  color: var(--dark);
}

.secondary-btn {
  background: var(--secondary);
  color: var(--dark);
}

.primary-btn:hover {
  background: var(--primary-hover);
}

.secondary-btn:hover {
  background: var(--secondary-hover);
}

/* ========== Section Styling ========== */
/* .section-title {
  color: var(--primary);
  border-left: 4px solid var(--secondary);
  padding-left: 1rem;
} */

.card {
  background: var(--overlay-dark);
  border: 1px solid var(--secondary);
}

/* ========== Footer ========== */

.footer-links a {
  color: var(--text-color);
}

.footer-links a:hover {
  color: var(--primary);
}

/* ========== Special Effects ========== */
.highlight {
  color: var(--secondary);
  text-shadow: 0 0 15px rgba(50,185,232,0.3);
}

.gradient-text {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.phone-icon i {display: none;}

.tech-stack,.tech-used{
  color:var(--secondary)
}
.tech-item{
  color:var(--text-color)
}


.project-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.project-status.in-progress {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tech-stack span {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  /* CSS rules for devices between 769px and 1024px wide */
  .nav-menu{
    gap: 0rem;
  }
  .nav-container{
    padding: 0rem 1rem 0rem 1rem;
  }
  .nav-link{
    padding: 0.4rem 0.5rem;
  }
  .cta-btn-menu{
    font-size: 12px;
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 768px) {
  
  :root {
    --h1: 2.8rem;
    --h2: 2.2rem;
    --h3: 1.8rem;
    --h4: 1.5rem;
    --h5: 1.2rem;
    --h6: 1rem;
  }
  
  h1::after {
    width: 60px;
    height: 3px;
  }
  .main-logo{
    width: 60px;
  }
  .unify-logo{
    height:20px
  }
  .menu-toggle {
    display: block;
  }

  .menu-toggle.active .hamburger {
    background: transparent;
  }

  .menu-toggle.active .hamburger::before {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .menu-toggle.active .hamburger::after {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  .section-title {
    font-size: 38px;
  }
  
  .banner-subtitle {
      font-size: 1.2rem;
  }
  
  .banner-content {
              top: 10%;
        padding: 1rem;
        width: 100%;
    
      
  }
  #why-choose .shape-2,#about .shape-1,.shape-2,.shape-3{
    display: none;
  }
  .banner-image{
    height: 100%;
    object-fit: cover;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .robot-space {
    height: 400px;
  }
  

  
  .contact-container {
    grid-template-columns: 1fr;
}

.contact-info-blur,
.contact-form-modern {
    padding: 16px;
}
.contact-details-modern h3{
  font-size:20px;
}
.contact-details-modern h2{
  font-size: 20px;
}

.contact-icon-modern{
  font-size: 1rem;
  color: var(--text-color);
}
.contact-method{
  padding: 0;
}
.footer-container {
  grid-template-columns: 1fr;
}
  .contact-container {
    grid-template-columns: 1fr;
}
  .content-container {
    padding: 2rem 1rem;
    border-radius: 8px;
}
.phone-call {
  position: relative;
  margin-right: -1.5rem;
}
.phone-icon {
  width: 40px;
  height: 40px;
  background: #0D1C33;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;

}


.phone-icon i {
  display: block;
  color: #FF822C;
  font-size: 1.2rem;
}
.phone-icon:hover {
  background: rgba(255, 130, 44, 0.2);
  transform: scale(1.1);
}

.safety-badge h3,.final-cta h3,.trust-badge h3 {
    font-size: 1.2rem;
}
.content-container h2{
  font-size: 1.4rem;
}
.concept-overlay{
  position:relative;
}
.risk-reversal{
  padding: 0px !important;
  margin: 0px !important;
}
.trust-section{
  padding: 2rem 1rem;
}
.content-grid {
    grid-template-columns: 1fr;
}

.professional-card {
    padding: 1.5rem;
}
.logo-icon {
  height: 65px; /* Set the height of the logo image */
  max-width: 100%; /* Ensures the image doesn't overflow */
  object-fit: contain; /* Ensures the image maintains its aspect ratio */
  filter: brightness(1.3);
}
  .logo-text {
    height: 20px;
  }
  

  .nav-container {
      padding: 0rem 1rem 0rem 1rem;
      justify-content: space-between;
  }

  .mobile-menu-btn {
      display: block;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 0.5rem;
  }

  .nav-menu {
      position: fixed;
      top: 4rem;
      right: -100%;
      width: 80%;
      height: calc(100vh - 4.5rem);
      background: linear-gradient(90deg, #032A48 0%, #132C43 100%);
      backdrop-filter: var(--blur-intensity);
      flex-direction: column;
      padding: 1.5rem;
      transition: right var(--transition-speed);
      border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.active {
      right: 0;
      overflow: scroll;
  }

  .nav-item {
      width: 100%;
  }

  .dropdown {
      position: static;
      background: transparent;
      box-shadow: none;
      padding: 0;
      margin-top: 0.5rem;
      display: none;
      opacity: 1;
  }

  .nav-item:hover .dropdown {
      transform: none;
  }

  .dropdown.active {
      display: block;
      visibility: visible;
  }
  

  .cta-button {
      margin-top: auto;
      width: 100%;
      text-align: center;
  }
    .service-card {
    width: calc(100% - 1rem);
  
  }

}

.expertise-banner {
  background: var(--blue-bg);
  padding: 4rem 2rem;
  border-radius: 20px;
  margin: 4rem 0;
  backdrop-filter: blur(10px);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-item:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.tech-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.tech-item:hover img {
  transform: scale(1.1);
}

.tech-item span {
  text-align: center;
  font-weight: 500;
  color: #f8fafc;
}

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
  }
  
  .tech-item {
    padding: 1rem;
  }
  
  .tech-item img {
    width: 40px;
    height: 40px;
  }
}

/* For Success */
#response-message.success {
  display: block;
  color: limegreen;
  /* background-color: #d4edda; */
  border: 1px solid rgba(255, 130, 44, 0.3);
  padding: 10px;
  margin-top: 20px;
  border-radius: 5px;
  background:var(--glass-bg);
}

/* For Error */
#response-message.error {
  display: block;
  color: red;
  /* background-color: #f8d7da; */
  border: 1px solid rgba(255, 130, 44, 0.3);
  padding: 10px;
  margin-top: 20px;
  border-radius: 5px;
  background:var(--glass-bg);
}



  /* Scroll button styles */
  #scroll-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, box-shadow 0.3s;
  }

  #scroll-toggle:hover {
    background-color:var(--primary-hover);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }

  /* Arrow icon styles */
  .arrow-icon {
    width: 20px;
    height: 20px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    display: inline-block;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }

  /* Rotate the arrow for "scroll to bottom" */
  .down {
    transform: rotate(225deg);
    margin-bottom:-6px;
  }

  /* Add a smooth transition to fade in/out the button */
  #scroll-toggle {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  #scroll-toggle.show {
    opacity: 1;
  }
  @media (max-width: 480px) {
    #scroll-toggle {
      bottom: 10px;
      right: 10px;
      padding: 8px 12px;
      font-size: 16px;  /* Even smaller font size for very small screens */
    }
    .cta-btn-menu{
      margin-bottom: 30px;
    }

    .arrow-icon {
      width: 16px;  /* Further reduce icon size */
      height: 16px;
    }
  }

