/* -------------------
    GLOBAL
------------------- */
@font-face {
  font-family: "CustomFont";
  src: url("../fonts/24178_M025096D.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.spudweb-font {
  font-family: "CustomFont", sans-serif !important;
}

body {
  background-color: #0a0f2c; /* Ink blue base tone */
  color: #fff;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

body.hidden {
  display: none;
}

body.loading {
  /* Blur and dim the body content when banner is active */
  overflow: hidden;
}

body.loading .main-content,
body.loading #heroCarousel,
body.loading .logo-scroll-section {
  filter: blur(5px);
  opacity: 0.3;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Banner */
#banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url('../images/caro-4.jpg'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.5s ease;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Darker overlay for better contrast */
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 90%;
  background-image: url('../images/caro-8.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.8s ease;
  /* Add overlay directly to banner content for better text visibility */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.5);
}

.banner-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 30px;
  align-items: center;
}

.banner-text-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-logo-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.banner-logo img {
  max-width: 350px;
  max-height: 50px;
  width: auto;
  height: 100%;
  animation: pulse 2s ease-in-out infinite;
  object-fit: contain;
}

.banner-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid #ffffff;
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  pointer-events: auto;
  outline: none;
  text-decoration: none;
}

.banner-close:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
  text-decoration: none;
}

.banner-close:focus {
  outline: 3px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
  text-decoration: none;
}

.banner-logo {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.banner-logo img {
  max-width: 320px;
  max-height: 320px;
  width: 100%;
  height: auto;
  animation: pulse 2s ease-in-out infinite;
  object-fit: contain;
}

.banner-text {
  text-align: center;
  color: #ffffff;
}

.banner-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease;
}

.banner-subtitle {
  font-size: 0.9rem;
  color: #00bcd4;
  font-weight: 600;
  margin-bottom: 4px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1.1s ease;
}

.banner-tagline {
  font-size: 0.8rem;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 15px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1.2s ease;
}

.banner-text p {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 15px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1.2s ease;
}

.feature-item span {
  font-size: 0.75rem;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.banner-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
  animation: fadeIn 1.4s ease;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 14px;
  border-radius: 8px;
  min-width: 90px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 1.1rem;
  color: #00ffff;
}

.feature-item span {
  font-size: 0.75rem;
  font-weight: 600;
}

.banner-button {
  display: inline-block;
  background: linear-gradient(135deg, #007bff 0%, #00bcd4 100%);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px 0 20px 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  animation: fadeIn 1.6s ease;
  font-size: 0.8rem;
  /* width: fit-content;
  margin: 0 auto;
  display: block; */
  text-align: center;
}

.banner-button:hover {
  background: linear-gradient(135deg, #0056b3 0%, #008c9e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
  color: #ffffff;
}

/* Responsive styles for banner */
@media (max-width: 540px) {
  .banner-content {
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .banner-content-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
    grid-template-areas: 
      "logo"
      "text";
  }
  
  .banner-logo-column {
    grid-area: logo;
  }
  
  .banner-text-column {
    grid-area: text;
  }
  
  .banner-logo img {
    max-width: 100%;
    max-height: 200px;
  }
  
  .banner-text h2 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  
  .banner-subtitle {
    font-size: 0.75rem;
    margin-bottom: 2px;
  }
  
  .banner-tagline {
    font-size: 0.7rem;
    margin-bottom: 10px;
  }
  
  .banner-text p {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
  
  .banner-features {
    gap: 6px;
    margin-bottom: 10px;
  }
  
  .feature-item {
    min-width: 70px;
    padding: 6px 8px;
    gap: 4px;
  }
  
  .feature-item i {
    font-size: 0.85rem;
  }
  
  .feature-item span {
    font-size: 0.65rem;
  }
  
  .banner-button {
    padding: 6px 12px;
    font-size: 0.75rem;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    display: block;
  }
  
  .banner-close {
    width: 28px;
    height: 28px;
    font-size: 14px;
    position: fixed;
    z-index: 999999;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
  }
}

@media (min-width: 541px) and (max-width: 768px) {
  .banner-content {
    width: 95%;
    padding: 20px;
    max-width: 95%;
  }
  
  .banner-content-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
  }
  
  .banner-text-column {
    order: 1;
  }
  
  .banner-logo-column {
    order: 2;
  }
  
  .banner-logo img {
    max-width: 100%;
    max-height: 200px;
  }
  
  .banner-text h2 {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }
  
  .banner-subtitle {
    font-size: 0.8rem;
    margin-bottom: 3px;
  }
  
  .banner-tagline {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }
  
  .banner-text p {
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  
  .banner-features {
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .feature-item {
    min-width: 75px;
    padding: 8px 10px;
    gap: 5px;
  }
  
  .feature-item i {
    font-size: 0.9rem;
  }
  
  .feature-item span {
    font-size: 0.7rem;
  }
  
  .banner-button {
    padding: 7px 18px;
    font-size: 0.8rem;
  }
  
  .banner-close {
    width: 30px;
    height: 30px;
    font-size: 16px;
    top: 10px;
    right: 10px;
    position: absolute;
    z-index: 100000;
  }
}

@media (max-width: 360px) {
  .banner-features {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-item {
    min-width: 120px;
    width: 100%;
    max-width: 200px;
  }
  
  .banner-text h2 {
    font-size: 1.1rem;
  }
}

/* Banner Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* -------------------
   NAVBAR
------------------- */
.navbar {
  background: #f9f9fa ;
  backdrop-filter: blur(8px);
  /* padding: 1rem 2rem; */
}

.navbar-brand {
  font-size: 1.6rem;
  font-weight: 700;
  color: #08739e !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand img:first-child {
  height: 70px;
  width: 70px;
}

.navbar-brand img:last-child {
  width: 280px;
  height: auto;
  max-width: 280px;
  object-fit: contain;
  padding-bottom: 8px;
}

.nav-link {
  color: #666 !important;
  margin-left: 15px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #08739e !important;
}

.nav-item.active .nav-link {
  color: #08739e !important;
  font-weight: 600;
}

/* ================= HERO CAROUSEL ================= */
#heroCarousel {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}

/* Each carousel item */
#heroCarousel .carousel-item {
  height: 100vh;
  min-height: 500px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  transition: opacity 0.8s ease-in-out;
}

/* Overlay (darker gradient on left side) */
#heroCarousel .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  z-index: 1;
}

/* Carousel caption styling */
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 2;
  color: #fff;
  max-width: 600px;
  animation: fadeUp 1.2s ease both;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  margin-bottom: 15px;
  animation: fadeInDown 1s ease both;
}

.carousel-caption p {
  font-size: 1.1rem;
  line-height: 1.6;
  animation: fadeInUp 1.3s ease both;
}

/* Gradient Button */
.btn-gradient-box {
  background: linear-gradient(135deg, #00ffff 0%, #2643b8 100%);
  color: #fff !important;
  border: none;
  padding: 12px 30px;
  border-radius: 25px 0 25px 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(26, 43, 109, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-gradient-box:hover {
  background: linear-gradient(135deg, #1a2b6d 0%, #87ceeb 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 43, 109, 0.4);
}

/* Carousel controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* ================= RESPONSIVE BREAKPOINTS ================= */

/* Tablets */
@media (max-width: 992px) {
  #heroCarousel .carousel-item {
    height: 75vh;
  }

  .carousel-caption {
    left: 8%;
    max-width: 500px;
  }

  .carousel-caption h1 {
    font-size: 2.2rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }
}

/* Mobiles (landscape + portrait) */
@media (max-width: 768px) {
  #heroCarousel .carousel-item {
    height: 60vh;
  }

  .carousel-caption {
    left: 5%;
    right: 5%;
    text-align: center;
    max-width: 90%;
  }

  .carousel-caption h1 {
    font-size: 1.8rem;
  }

  .carousel-caption p {
    font-size: 0.95rem;
  }

  .main-content {
    padding-top: 120px; /* Increase top padding for mobile to account for fixed navbar */
  }
}

/* Tablets and Desktop */
@media (min-width: 769px) {
  .main-content {
    padding-top: 120px; /* Increase top padding for tablet and desktop to ensure hero content is fully visible */
  }
}

/* Extra small phones */
@media (max-width: 576px) {
  #heroCarousel .carousel-item {
    height: 85vh;
  }

  .carousel-caption h1 {
    font-size: 1.5rem;
  }

  .carousel-caption p {
    font-size: 0.85rem;
  }

  .btn-gradient-box {
    padding: 10px 22px;
    font-size: 0.85rem;
  }
}
/* Desktop adjustments for hero carousel */
@media (min-width: 1200px) {
  #heroCarousel .carousel-item::before {
    width: 75%; /* extend overlay further right */
  }

  .carousel-caption {
    top: 35%; /* move caption higher to show button fully */
    transform: translateY(-35%);
  }
}

/* ===== FIX: Center carousel caption for mobile ===== */
@media (max-width: 576px) {
  .carousel-caption {
    left: 5% !important;
    top: 30% !important;
    text-align: center !important;
    width: 90%;
    transform: none !important;
  }

  .carousel-caption h1,
  .carousel-caption p {
    text-align: center !important;
  }
  
  .carousel-caption .btn-gradient-box {
    padding: 8px 20px;
    font-size: 0.8rem;
    width: fit-content;
    margin: 0 auto;
    display: block;
  }
  
  #heroCarousel .carousel-item {
    height: 500px !important;
  }
}
@media (min-width: 992px) {
  .carousel-caption {
    top: 35%; /* move caption higher to show button fully */
    transform: translateY(-35%); /* keep perfect vertical alignment */
  }
  
  #heroCarousel .carousel-item {
    min-height: 700px !important; /* increase minimum height for better visibility */
  }
}
/* ===== Fix for iPad Pro / large tablets (portrait) ===== */
@media (min-width: 768px) and (max-width: 1100px) and (orientation: portrait) {
  #heroCarousel .carousel-item {
    height: 80vh; /* reduce height from full to 80% */
    background-position: center top; /* keep top of image visible */
  }

  .carousel-caption {
    top: 40%; /* move text slightly higher */
    transform: translateY(-40%);
  }

  .carousel-caption h1 {
    font-size: 2.4rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }
}


/* -------------------
   FOOTER
------------------- */
footer {
  background: #0a0f2c;
  color: #bbb;
  padding: 40px 0 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer logo sizing */
.footer-logo {
  max-height: 180px;
  max-width: 180px;
}

@media (max-width: 768px) {
  .footer-logo {
    max-height: 140px;
    max-width: 140px;
  }
}

@media (max-width: 576px) {
  .footer-logo {
    max-height: 100px;
    max-width: 100px;
  }
}

footer h5 {
  color: #fff !important;
}

footer p, footer li, footer a {
  color: #adb5bd !important;
}

footer a:hover {
  color: #4b6eff !important;
}

/* Footer Social Media Icons */
footer .social-media a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

footer .social-media a:hover {
  background: #007bff;
  transform: translateY(-2px);
  color: #fff !important;
}

footer .social-media .fa {
  font-size: 18px;
}

/* -------------------
   ANIMATIONS
------------------- */
.carousel-caption h1,
.carousel-caption p,
.carousel-caption a {
  opacity: 1 !important;
  animation-fill-mode: both;
}

.carousel-item.active .carousel-caption h1 {
  animation: fadeInUp 1s ease forwards 0.3s;
}

.carousel-item.active .carousel-caption p {
  animation: fadeInUp 1s ease forwards 0.6s;
}

.carousel-item.active .carousel-caption a {
  animation: fadeInUp 1s ease forwards 0.6s;
  opacity: 1 !important;
}



@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------
   LOGO SCROLL
------------------- */
.logo-scroll-section {
  background-color: #fff;
  overflow: hidden;
  position: relative;
}

.logo-scroll-track {
  display: flex;
  width: max-content;  
  animation: scroll 50s linear infinite;
  align-items: center;
}

.logo-item {
  height: 70px;
  width: auto;
  margin: 0 40px;
  transition: all 0.3s;
  filter: none;
  opacity: 1;
}

.logo-item.sonicwall-logo {
  height: 55px;
}


.logo-item.microsoft-logo {
  height: 150px;
}

.logo-item.paloalto-logo {
  height: 150px;
}

.logo-item.commscope-logo {
  height: 100px;
}

.logo-item.netrack-logo {
  height: 160px;
}

.logo-item.sophos-logo {
  height: 240px;
}

.logo-item.fortinet-logo {
  height: 190px;
}

.logo-item.Nutanix-logo {
  height: 150px;
}

.logo-item.NetApp-logo {
  height: 30px;
}
.logo-item.Logitech-logo {
  height: 30px;
}
.logo-item.jabra-logo {
  height: 150px;
}
.logo-item.Crowdstrike-logo {
  height: 150px;
}
.logo-item.SentinelOne-logo {
  height: 40px;
}
.logo-item.Broadcom-logo {
  height: 40px;
}
.logo-item.netskope-logo {
  height: 100px;
}
.logo-item.Zscaler-logo {
  height: 40px;
}
.logo-item.RUCKUS-logo {
  height: 100px;
}
.logo-item.DigiCert-logo {
  height: 100px;
}
.logo-item.Thawte-logo {
  height: 80px;
}
.logo-item.GeoTrust-logo {
  height: 40px;
}

.logo-item:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.see-more {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
}
.see-more:hover {
  text-decoration: underline;
}

/* -------------------
   MODAL
------------------- */
.modal-content {
  background: #fff;
  color: #000;
  border-radius: 12px;
}

.logo-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: 1px solid #e0e0e0;
}

.logo-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.logo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive logo modal */
@media (max-width: 768px) {
  .logo-card {
    height: 120px;
    padding: 15px;
  }

  .logo-card img {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 576px) {
  .logo-card {
    height: 100px;
    padding: 10px;
  }

  .logo-card img {
    width: 70px;
    height: 70px;
  }
}

/* -------------------
   FOOTER STYLING
------------------- */
.footer-section {
  font-family: "Poppins", sans-serif;
}

.footer-link {
  color: #dcdcdc;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #00bcd4;
}

footer .fa {
  width: 18px;
  text-align: center;
}


/* -------------------
   WHITE THEME SECTIONS
------------------- */
.ftco-section {
  background-color: #fff !important;
  color: #333 !important;
}

.ftco-section h2 {
  color: #333 !important;
}

.ftco-section p {
  color: #666 !important;
}

.services-2 {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.services-2:hover {
  transform: translateY(-5px);
}

.services-2 .icon {
  margin-bottom: 20px;
}

.services-2 .icon span {
  font-size: 3rem;
  color: #007bff;
}

.services-2 h3 {
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.services-2 p {
  color: #666;
  line-height: 1.6;
}

/* -------------------
   SOLUTIONS SECTION
------------------- */
.solutions-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
}

/* -------------------
   MODERN INTRO SECTION
------------------- */
.modern-intro {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modern-intro.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.modern-heading {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  position: relative;
}

.modern-heading .highlight-number {
  color: #007bff;
  font-size: 2.4rem;
  font-weight: 700;
}

.modern-heading .highlight-text {
  color: #1a2b6d;
  font-weight: 700;
}

.modern-paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: #5a6c7d;
  font-weight: 400;
  max-width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.3s;
}

.modern-intro.animate-in .modern-paragraph {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modern-heading {
    font-size: 1.8rem;
  }

  .modern-heading .highlight-number {
    font-size: 2rem;
  }

  .modern-paragraph {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .modern-heading {
    font-size: 1.6rem;
  }

  .modern-heading .highlight-number {
    font-size: 1.8rem;
  }

  .modern-paragraph {
    font-size: 0.9rem;
    max-width: 100%;
  }
}

.solution-boxes-row {
  margin-bottom: 30px;
}

.solution-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: cardFadeInUp 0.6s ease forwards;
}

.solution-card:nth-child(1) {
  animation-delay: 0.1s;
}
.solution-card:nth-child(2) {
  animation-delay: 0.2s;
}
.solution-card:nth-child(3) {
  animation-delay: 0.3s;
}
.solution-card:nth-child(4) {
  animation-delay: 0.4s;
}
.solution-card:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes cardFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid #dee2e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.solution-card.active .card-header {
  background: linear-gradient(135deg, #00ffff 0%, #87ceeb 100%);
  color: #fff;
}

.solution-card.active .card-header h4 {
  color: #fff;
}

.solution-card.active .toggle-icon {
  color: #fff;
}

.card-header:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.solution-card.active .card-header:hover {
  background: linear-gradient(135deg, #00ffff 0%, #87ceeb 100%);
}

.card-header h4 {
  color: #333;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.toggle-icon {
  font-size: 1.2rem;
  color: #007bff;
  font-weight: bold;
  transition: all 0.3s ease;
}

.solution-card.active .toggle-icon {
  transform: rotate(180deg);
}

.solution-content {
  background: #fff;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.solution-content.show {
  max-height: 200px;
  padding: 20px;
}

.solution-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.solution-content .btn {
  border-color: #007bff;
  color: #007bff;
  transition: all 0.3s ease;
}

.solution-content .btn:hover {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
}

/* -------------------
   RESPONSIVE
------------------- */
@media (max-width: 1200px) {
  .carousel-caption h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .carousel-caption h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .carousel-caption {
    left: 5%;
    max-width: 90%;
  }

  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .btn-inkblue {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .logo-item {
    height: 70px;
  }

  .logo-item.sophos-logo {
    height: 90px;
  }

  .navbar {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .carousel-caption {
    left: 5%;
    top: 45%;
  }
  .carousel-caption h1 {
    font-size: 1.6rem;
  }
  .carousel-caption p {
    font-size: 0.9rem;
  }
  .btn-inkblue,
  .btn-gradient-box {
    padding: 8px 20px;
    font-size: 0.8rem;
    width: fit-content;
    margin: 0 auto;
  }
  .logo-item {
    height: 55px;
  }

  .logo-item.sophos-logo {
    height: 70px;
  }
}

@media (max-width: 991px) {
  footer h5 {
    font-size: 1rem;
  }
  footer p,
  .footer-link,
  footer li {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  footer {
    text-align: center;
  }
  footer .col-sm-12 {
    margin-bottom: 1.5rem;
  }
  footer ul {
    padding: 0;
  }
}

/* FLOATING CONTACT WIDGET - TATA-like behaviour */
.floating-icons {
  position: fixed;
  right: 18px;
  bottom: 110px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 99999;
  user-select: none;
}

/* wrapper that contains icon + pill */
.float-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  pointer-events: auto;
  transition: transform 180ms ease;
}

/* round icon button */
.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0b1e36;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.45);
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
  flex-shrink: 0;
}

/* pill that slides out */
.contact-pill {
  background: #0b1e36;
  color: #fff;
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 0.95rem;
  white-space: nowrap;
  margin-right: 6px;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.35);
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 220ms ease, transform 220ms ease;
  display: inline-flex;
  align-items: center;
}

/* visible state */
.float-item.open .contact-pill {
  opacity: 1;
  transform: translateX(0);
}

/* small hover/press feedback */
.float-btn:hover {
  transform: scale(1.06);
  background: #007bff;
}

/* responsive sizes */
@media (max-width: 768px) {
  .floating-icons {
    right: 12px;
    bottom: 86px;
  }
  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  .contact-pill {
    font-size: 0.85rem;
    padding: 8px 12px;
  }
}

/* slight nudge when open */
.float-item.open {
  transform: translateX(-4px);
}

/* ================== ABOUT HERO SECTION ================== */
.about-hero-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 1.5s ease forwards;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/about.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: zoomIn 2s ease forwards;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  animation: fadeIn 1s ease forwards;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  animation: slideUp 1.2s ease 0.5s forwards;
  opacity: 0;
  transform: translateY(50px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease 0.8s forwards;
  opacity: 0;
  transform: translateY(-30px);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #f8f9fa;
  font-weight: 300;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 1s forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* ============================
   ABOUT INFO SECTION STYLES
============================ */
.about-info-section {
  background-color: #ffffff; /* White background */
  color: #212529; /* Dark text for contrast */
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Gradient Title */
.about-info-section .gradient-title {
  background: linear-gradient(90deg, #004aad, #00b4d8); /* Ink blue → cyan */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Paragraphs inside section */
.about-info-section p {
  color: #6c757d; /* Muted grey text */
  font-size: 1rem;
  line-height: 1.6;
}

/* Accordion Styling */
.about-info-section .accordion-button {
  background-color: #f8f9fa;
  color: #0a0f2c;
  font-weight: 500;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

.about-info-section .accordion-button:hover {
  background-color: #e9f5ff;
  color: #004aad;
}

.about-info-section .accordion-button:focus {
  box-shadow: none;
}

.about-info-section .accordion-item {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.about-info-section .accordion-body {
  background-color: #ffffff;
  color: #495057;
  line-height: 1.6;
}

/* Right-side image styling */
.about-info-section img {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-info-section img:hover {
  transform: scale(1.02);
}


/* ================== ABOUT CONTENT SECTION ================== */
.about-content-section {
  padding: 80px 0;
  background: #fff;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.about-content-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.about-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.about-main-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  border-radius: 2px;
}

.about-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.about-content-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5a6c7d;
  margin-bottom: 2rem;
  text-align: justify;
}

/* ================== ANIMATIONS ================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(1.1);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================== CONTACT PAGE STYLES ================== */
.contact-page-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid #e9ecef;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  font-size: 3rem;
  color: #0b1e36;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
  color: #00bcd4;
  transform: scale(1.1);
}

.contact-info-card h5 {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.contact-info-card p {
  color: #6c757d;
  line-height: 1.6;
}

.contact-info-card a {
  color: #6c757d;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: #007bff;
}

/* Responsive Contact Page */
@media (max-width: 768px) {
  .contact-page-section {
    padding: 60px 0;
  }

  .contact-info-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .contact-info-card h5 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  .contact-info-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .contact-page-section {
    padding: 40px 0;
  }

  .contact-info-card {
    padding: 25px 15px;
  }

  .contact-icon {
    font-size: 2rem;
  }

  .contact-info-card h5 {
    font-size: 1.1rem;
  }

  .contact-info-card p {
    font-size: 0.85rem;
  }
}

/* Contact Form Styles */
.contact-form-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  transition: all 0.4s ease;
}

.contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-form-card h4 {
  background: linear-gradient(45deg, #007bff, #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  font-size: 2rem;
}

.form-label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-gradient-box {
  background: linear-gradient(45deg, #007bff, #00bcd4);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-gradient-box:hover {
  transform: translateY(-2px);
  background: linear-gradient(45deg, #00bcd4, #007bff);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

/* Map Container */
.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  height: 100%;
  min-height: 400px;
}

/* Responsive Contact Form and Map */
@media (max-width: 768px) {
  .contact-form-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .contact-form-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .form-control {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .btn-gradient-box {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .map-container {
    min-height: 300px;
  }
}

@media (max-width: 576px) {
  .contact-form-card {
    padding: 25px 15px;
  }

  .contact-form-card h4 {
    font-size: 1.3rem;
  }

  .form-label {
    font-size: 0.9rem;
  }

  .form-control {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .btn-gradient-box {
    padding: 8px 20px;
    font-size: 0.8rem;
  }

  .map-container {
    min-height: 250px;
  }
}

/* ================== INTERACTIVE SERVICES SECTION ================== */
.interactive-services-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #007bff, #00bcd4);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

/* Services Menu */
.services-menu-container {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.services-menu {
  display: flex;
  background: #ffffff;
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #e9ecef;
  overflow-x: auto;
  max-width: 100%;
}

.service-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  background: transparent;
  color: #6c757d;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: fit-content;
}

.service-menu-item:hover {
  color: #007bff;
  transform: translateY(-2px);
}

.service-menu-item.active {
  background: linear-gradient(45deg, #007bff, #00bcd4);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.service-menu-item i {
  font-size: 1.1rem;
}

/* Service Content */
.service-content-container {
  position: relative;
  min-height: 400px;
}

.service-content {
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.service-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.service-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.service-image-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.4s ease;
}

.service-text-content {
  padding: 0 2rem;
}

.service-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #007bff, #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5a6c7d;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #495057;
}

.service-features li i {
  color: #28a745;
  font-size: 1rem;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
  .about-hero-section {
    height: 60vh;
    min-height: 400px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .about-main-title {
    font-size: 2rem;
  }

  .about-content-block p {
    font-size: 1rem;
    text-align: left;
  }

  /* Contact page responsive adjustments */
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  /* Services responsive */
  .interactive-services-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .service-menu-item {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .service-menu-item span {
    display: none;
  }

  .service-image {
    height: 250px;
  }

  .service-text-content {
    padding: 0 1rem;
  }

  .service-title {
    font-size: 1.6rem;
  }

  .service-description {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .about-hero-section {
    height: 50vh;
    min-height: 350px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .about-main-title {
    font-size: 1.8rem;
  }

  .contact-info-card {
    padding: 25px 15px;
  }

  .contact-form-card {
    padding: 25px 15px;
  }

  .contact-form-card h4 {
    font-size: 1.5rem;
  }

  /* Services responsive */
  .section-title {
    font-size: 1.8rem;
  }

  .services-menu {
    padding: 6px;
  }

  .service-menu-item {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .service-image {
    height: 200px;
  }

  .service-title {
    font-size: 1.4rem;
  }

  .service-features {
    margin-bottom: 1.5rem;
  }

  .service-features li {
    font-size: 0.9rem;
  }
}


/* ==============about us page =============== */
.main-content {
  background-color: #ffffff;
}
.about-image-wrapper {
  background-color: #ffffff; /* Keep the background white */
  border-radius: 12px; /* Optional for soft edges */
  padding: 20px; /* Give a little spacing inside */
  display: inline-block;
  position: relative;
  overflow: hidden; /* Prevent float animation from showing edges */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); /* Optional subtle shadow */
}

.about-image {
  width: 100%;
  height: auto;
  animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.about-us-section {
  background-color: #ffffff; /* White background */
  padding: 60px 15px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.about-us-section h2 {
  color: #0b1e36; /* Ink blue heading */
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Image wrapper for floating effect */
.about-image-wrapper {
  position: relative;
  overflow: hidden;
}

.about-image {
  width: 100%;
  border-radius: 12px;
  animation: floatImage 6s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Floating animation */
@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-us-section {
    text-align: center;
  }

  .about-text {
    margin-top: 30px;
  }
}

/* ===============about page into section============= */
/* Enterprise Intro Section */
.enterprise-intro-section {
  background-color: #ffffff;
  text-align: center;
}

.enterprise-intro-section h2 {
  font-size: 2rem;
  font-weight: 600;
}

.enterprise-intro-section p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.05rem;
}
/* Make <strong> text visually bold in content sections */
.enterprise-intro-section strong {
  font-weight: 700 !important;
  color: #091b8f; /* Ink blue highlight */
}
/* Animation for enterprise expertise heading */
.animate-heading {
  position: relative;
  display: inline-block;
  font-weight: 700;
  background: linear-gradient(90deg, #0a1f62, #2a65ff, #0a1f62);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: text-shade 4s ease-in-out infinite, fade-up 1.2s ease-in-out both;
}

/* Gradient movement */
@keyframes text-shade {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Smooth fade-up entrance */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================= Enterprise Cards ================= */
.enterprise-cards-section {
  background: #f8faff;
  position: relative;
  overflow: hidden;
}

.info-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Animated Gradient Hover Border */
.info-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px; 
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #08cfd9, #007bff, #00FFFF);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 22px;
}

.info-card:hover::before {
  opacity: 1;
}

.info-card h4 {
  font-weight: 700;
  font-size: 1.25rem;
  color: #0a1f62;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.info-card ul li {
  font-size: 0.95rem;
  padding: 5px 0;
  color: #333;
  position: relative;
  transition: transform 0.3s ease;
}

.info-card ul li::before {
  content: "✔";
  color: #007bff;
  margin-right: 8px;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Fade-in upward animation */
.info-card {
  opacity: 0;
  transform: translateY(40px);
  animation: cardFadeUp 1s ease forwards;
}
.info-card:nth-child(1) { animation-delay: 0.2s; }
.info-card:nth-child(2) { animation-delay: 0.4s; }
.info-card:nth-child(3) { animation-delay: 0.6s; }
.info-card:nth-child(4) { animation-delay: 0.8s; }

@keyframes cardFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================= Centered Animated Heading ================= */
.enterprise-title {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #0a1f62;
  text-align: center;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #0a1f62, #007bff, #00bcd4, #0a1f62);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300%;
  animation: shine 6s linear infinite;
}

.enterprise-title span {
  font-weight: 900;
}

@keyframes shine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

/* ======service us page ============ */
/* ================= Solutions Tabs Full White Background ================= */
.solutions-tabs-section {
  background-color: #fff;
  text-align: center;
  padding: 80px 0;
}

.section-title {
  color: #0a1f62;
  font-weight: 700;
  font-size: 2rem;
}

/* Navigation (Menu Tabs) */
.solutions-nav .nav-link {
  color: #0a1f62;
  font-weight: 600;
  margin: 0 15px;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.solutions-nav .nav-link:hover {
  color: #007bff;
  border-bottom: 3px solid #007bff;
}

.solutions-nav .nav-link.active {
  color: #007bff;
  border-bottom: 3px solid #007bff;
}

/* Content Area */
.solutions-content {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.tab-content {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(20px);
}

.tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeSlideIn 0.8s ease;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content h3 {
  font-weight: 700;
  color: #0a1f62;
  margin-bottom: 15px;
}

.tab-content p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}
/* ============================
   CONTACT PAGE STYLES
============================ */
.contact-section {
  background-color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* ---- Gradient Title ---- */
.contact-section .section-title {
  background: linear-gradient(90deg, #004aad, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  animation: fadeSlideDown 1s ease-out;
}

/* ---- Send Us a Message Section Title ---- */
.contact-section h2.section-title {
  background: linear-gradient(90deg, #004aad, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  animation: fadeSlideUp 1s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---- Subtitle text ---- */
.contact-section .section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeSlideUp 1s ease-out;
}

/* ---- Contact Info Boxes ---- */
.contact-info-box {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  animation: fadeInBox 1.2s ease forwards;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}

.contact-info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Icon in info box */
.contact-info-box i {
  font-size: 2.5rem;
  color: #00b4d8;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}
.contact-info-box:hover i {
  color: #004aad;
}

/* Info text */
.contact-info-box h5 {
  color: #0a0f2c;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.contact-info-box p {
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* ---- Contact Form ---- */
.contact-form {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  padding: 40px 30px;
  transition: transform 0.3s ease;
  animation: fadeSlideLeft 1.2s ease forwards;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 450px;
}
.contact-form:hover {
  transform: translateY(-5px);
}

/* Form controls */
.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #dee2e6;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #00b4d8;
  box-shadow: 0 0 8px rgba(0, 180, 216, 0.3);
}

/* Submit button */
.contact-form button {
  background: linear-gradient(90deg, #004aad, #00b4d8);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.contact-form button:hover {
  background: linear-gradient(90deg, #00b4d8, #004aad);
  transform: translateY(-2px);
}

/* ---- Google Map ---- */
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  animation: fadeSlideRight 1.2s ease forwards;
  height: 100%;
  min-height: 450px;
  display: flex;
  align-items: stretch;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  flex: 1;
}

/* ---- Animations ---- */
@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideLeft {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeSlideRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInBox {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .contact-section {
    padding: 60px 0;
  }
  .contact-form {
    padding: 25px 20px;
    min-height: auto;
    height: auto;
  }
  .contact-map {
    min-height: 300px;
    height: auto;
  }
  .contact-section .section-title {
    font-size: 2rem;
  }
  .contact-section h2.section-title {
    font-size: 1.8rem;
  }
  .contact-info-box {
    margin-bottom: 20px;
    min-height: auto;
    height: auto;
    padding: 25px 20px;
  }
  .contact-info-box i {
    font-size: 2rem;
  }
  .contact-info-box h5 {
    font-size: 1.1rem;
  }
  .contact-info-box p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .contact-section .section-title {
    font-size: 1.8rem;
  }
  .contact-section h2.section-title {
    font-size: 1.6rem;
  }
  .contact-info-box {
    padding: 20px 15px;
    min-height: auto;
    height: auto;
  }
  .contact-info-box i {
    font-size: 1.8rem;
  }
  .contact-info-box h5 {
    font-size: 1rem;
  }
  .contact-info-box p {
    font-size: 0.85rem;
  }
  .contact-form {
    padding: 20px 15px;
    min-height: auto;
    height: auto;
  }
  .contact-map {
    min-height: 250px;
    height: auto;
  }
  .contact-form .form-control {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  .contact-form button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
