/* ==================== GLOBAL STYLES ==================== */
body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
  background-color: var(--white) !important;
  font-family: "Segoe UI", sans-serif;
}
:focus,
:active {
  box-shadow: none !important;
}
/* ===== VARIANT 2 - ORANGE & GREEN HEADING ===== */
.isms-heading-v2 {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

/* Tagline Container */
.isms-heading-v2-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

/* Tagline Text */
.isms-heading-v2-tag-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff9933;
  white-space: nowrap;
}

/* Tagline Lines */
.isms-heading-v2-tag-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #ff9933, #138808);
  border-radius: 2px;
}

/* Left Line */
.isms-heading-v2-tag-line:first-child {
  background: linear-gradient(90deg, transparent, #ff9933, #138808);
}

/* Right Line */
.isms-heading-v2-tag-line:last-child {
  background: linear-gradient(90deg, #138808, #ff9933, transparent);
}

/* Main Title */
.isms-heading-v2-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #0a2f44;
}

/* Orange Part */
.isms-heading-v2-title .orange {
  color: #ff9933;
  display: inline-block;
  position: relative;
}

/* Green Part */
.isms-heading-v2-title .green {
  color: #138808;
  display: inline-block;
  position: relative;
}

/* Optional: Add subtle underline effect */
.isms-heading-v2-title .orange::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(255, 153, 51, 0.2);
  border-radius: 3px;
  z-index: -1;
}

.isms-heading-v2-title .green::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(19, 136, 8, 0.2);
  border-radius: 3px;
  z-index: -1;
}

/* Description */
.isms-heading-v2-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding: 0 30px;
}

/* Quote Marks */
.isms-heading-v2-desc::before {
  content: "“";
  font-size: 40px;
  color: #ff9933;
  opacity: 0.3;
  position: absolute;
  left: -5px;
  top: -10px;
  font-family: serif;
}

.isms-heading-v2-desc::after {
  content: "”";
  font-size: 40px;
  color: #138808;
  opacity: 0.3;
  position: absolute;
  right: -5px;
  bottom: -10px;
  font-family: serif;
}

/* ===== FULLY RESPONSIVE STYLES ===== */

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
  .isms-heading-v2-title {
    font-size: 48px;
  }
  .isms-heading-v2-tag-text {
    font-size: 14px;
  }
  .isms-heading-v2-tag-line {
    width: 60px;
  }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) {
  .isms-heading-v2-title {
    font-size: 44px;
  }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
  .isms-heading-v2-title {
    font-size: 40px;
  }
  .isms-heading-v2-desc {
    font-size: 15px;
    padding: 0 25px;
  }
  .isms-heading-v2-tag-line {
    width: 45px;
  }
}

/* Mobile Landscape (576px to 767px) */
@media (max-width: 767px) {
  .isms-heading-v2-title {
    font-size: 36px;
  }
  .isms-heading-v2-tag-text {
    font-size: 13px;
    letter-spacing: 2px;
  }
  .isms-heading-v2-tag-line {
    width: 35px;
  }
  .isms-heading-v2-desc {
    font-size: 15px;
    padding: 0 20px;
  }
  /* Hide quote marks on mobile */
  .isms-heading-v2-desc::before,
  .isms-heading-v2-desc::after {
    display: none;
  }
  /* Make orange and green inline */
  .isms-heading-v2-title .orange,
  .isms-heading-v2-title .green {
    display: inline;
  }
  .isms-heading-v2-title .orange::after,
  .isms-heading-v2-title .green::after {
    height: 4px;
    bottom: 3px;
  }
}

/* Mobile Portrait (575px and below) */
@media (max-width: 575px) {
  .isms-heading-v2-title {
    font-size: 32px;
  }
  .isms-heading-v2-tag-text {
    font-size: 12px;
    letter-spacing: 1.5px;
  }
  .isms-heading-v2-tag {
    gap: 10px;
  }
  .isms-heading-v2-tag-line {
    width: 25px;
  }
  .isms-heading-v2-desc {
    font-size: 14px;
    line-height: 1.7;
    padding: 0 15px;
  }
}

/* Small Mobile (375px and below) */
@media (max-width: 375px) {
  .isms-heading-v2-title {
    font-size: 28px;
  }
  .isms-heading-v2-tag-text {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .isms-heading-v2-tag-line {
    width: 20px;
  }
  .isms-heading-v2-desc {
    font-size: 13px;
  }
}

/*===============================TOP BAR STYLING============================*/
.top-bar {
  background: linear-gradient(90deg, #ff9933 0%, #ffffff 40%, #138808 100%);
  color: #0a2f44;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  /* border-bottom: 2px solid #0a2f44; */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Before Element - Tricolor Flag Pattern */
.top-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    #ff9933 33.33%,
    #ffffff 33.33%,
    #ffffff 66.66%,
    #138808 66.66%
  );
  animation: slide 10s infinite linear;
}

/* After Element - Ashoka Chakra Style */
.top-bar::after {
  content: "⚙️";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #0a2f44;
  opacity: 0.3;
  animation: rotate 8s infinite linear;
}

/* Container for content */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Left side content - Desktop pe normal */
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 47, 68, 0.08);
  padding: 5px 15px;
  border-radius: 30px;
  backdrop-filter: blur(2px);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover effect for contact items */
.top-bar-left span:hover {
  background: #0a2f44;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.top-bar-left span:hover i {
  color: #ffb800;
}

.top-bar-left i {
  color: #0a2f44;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* Clickable links */
.clickable {
  text-decoration: none;
  color: inherit;
}

/* Right side content */
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #0a2f44;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.social-links a:hover {
  background: #0a2f44;
  color: white;
  transform: translateY(-3px);
}

/* Registration Badge */
.reg-badge {
  background: #0a2f44;
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-left: 3px solid #ff9933;
  border-right: 3px solid #138808;
  position: relative;
}

.reg-badge::before {
  content: "✓";
  margin-right: 5px;
  color: #ffb800;
}

/* Animations */
@keyframes slide {
  0% {
    background-position: 0;
  }
  100% {
    background-position: 100px;
  }
}

@keyframes rotate {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Orange, White, Green Dots Pattern */
.top-bar-left span::before {
  /* content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff9933;
  margin-right: 5px;
  box-shadow:
    12px 0 #ffffff,
    24px 0 #138808; */
}

/* Extra Tricolor Effect on Hover */
.top-bar:hover::before {
  height: 6px;
  transition: height 0.3s ease;
}

/* ========== RESPONSIVE CSS - SIRF SMALL DEVICES KE LIYE ========== */
/* Design mein koi change nahi - bas mobile ke hisaab se adjust */

/* Tablet (768px to 992px) */
@media screen and (min-width: 768px) and (max-width: 992px) {
  .container {
    flex-direction: column;
    gap: 12px;
  }

  .top-bar-left {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* Number left */
  .top-bar-left span:first-child {
    grid-column: 1;
    justify-self: start;
  }

  /* Email right */
  .top-bar-left span:nth-child(2) {
    grid-column: 2;
    justify-self: end;
  
  }

  /* Address - full width */
  .top-bar-left span:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 8px;
    display: flex;
    align-items: center;

    gap: 15px;
  }

  /* TRUST line address ke niche */
  .top-bar-left span:last-child::after {
    content: "TRUST • SAFETY • EXCELLENCE";
    margin-left: 15px;
    padding-left: 15px;
    border-left: 2px solid #0a2f44;
    font-weight: 600;
    font-size: 13px;
    color: #0a2f44;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  /* Right side hide */
  .top-bar-right {
    display: none !important;
  }

  /* Gear icon hide */
  .top-bar::after {
    display: none;
  }
}

/* Mobile Phones (up to 767px) */
@media screen and (max-width: 767px) {
  .top-bar {
    padding: 10px 0;
  }

  .container {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .top-bar-left {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* Number left me */
  .top-bar-left span:first-child {
    grid-column: 1;
    justify-self: start;
    width: 100%;
    font-size: 12px;
    padding: 5px 12px;
  }

  /* Email right me */
  .top-bar-left span:nth-child(2) {
    grid-column: 2;
    justify-self: end;
    width: 100%;
    font-size: 12px;
    padding: 5px 12px;
    visibility: hidden;
  }

  /* Address niche - full width */
  .top-bar-left span:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: auto;
    margin-top: 5px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* TRUST line address ke niche - with proper spacing */
  .top-bar-left span:last-child::after {
    content: "TRUST • SAFETY • EXCELLENCE";
    margin-left: 10px;
    padding-left: 10px;
    border-left: 2px solid #0a2f44;
    font-weight: 600;
    font-size: 11px;
    color: #0a2f44;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  /* Small dots adjustment */
  .top-bar-left span::before {
    width: 6px;
    height: 6px;
    box-shadow:
      10px 0 #ffffff,
      20px 0 #138808;
  }

  /* Right side completely hide */
  .top-bar-right {
    display: none !important;
  }

  /* Gear icon hide */
  .top-bar::after {
    display: none;
  }
}

/* Very Small Phones (up to 380px) */
@media screen and (max-width: 380px) {
  .top-bar-left span:first-child,
  .top-bar-left span:nth-child(2) {
    font-size: 11px;
    padding: 4px 8px;
  }

  .top-bar-left span:last-child {
    flex-direction: column;
    gap: 5px;
  }

  .top-bar-left span:last-child::after {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-top: 2px solid #0a2f44;
    padding-top: 5px;
    margin-top: 5px;
    white-space: normal;
    text-align: center;
  }

  .top-bar-left span::before {
    display: none;
  }
}

/* Ensure desktop design remains exactly same above 992px */
@media screen and (min-width: 993px) {
  /* No changes - desktop waise hi rahega */
  .top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .top-bar-right {
    display: flex !important;
  }

  .top-bar::after {
    display: block !important;
  }

  .top-bar-left span:last-child::after {
    display: none;
  }
}
/*===============================MIDDILE BAR STYLING==============================*/
.middle-bar {
  background: white;
  padding: 20px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  border-bottom: 3px solid #0a2f44;
}

/* Before Element - Decorative Line */
.middle-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    #ff9933,
    #ffffff,
    #138808,
    #0a2f44,
    #ffb800
  );
  animation: gradientShift 8s infinite linear;
}

/* After Element - Background Pattern */
.middle-bar::after {
  content: "🔰";
  position: absolute;
  right: 5%;
  bottom: 5px;
  font-size: 60px;
  opacity: 0.03;
  color: #0a2f44;
  transform: rotate(10deg);
  pointer-events: none;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.middle-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Logo Section - Left Side */
.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

/* Logo Image Container */
.logo-image {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Actual Logo Image */
.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.logo-image:hover img {
  transform: scale(1.05);
}

/* Decorative Border Around Logo */
.logo-image::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px dashed #ff9933;
  animation: spin 15s infinite linear;
  z-index: -1;
}

.logo-image::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #138808;
  border-bottom-color: #ffb800;
  animation: spinReverse 10s infinite linear;
  z-index: -1;
}

.company-name {
  display: flex;
  flex-direction: column;
}

.company-name h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #0a2f44;
  position: relative;
}

/* Gradient Text for "INDIAN" */
.company-name h1 span:first-child {
  background: linear-gradient(45deg, #ff9933, #ffb800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* Green Text for "MANPOWER" part */
.company-name h1 span:last-child {
  color: #138808;
}

.company-name .sub-title {
  font-size: 14px;
  color: #666;
  letter-spacing: 2px;
  margin-top: 5px;
  position: relative;
  padding-left: 20px;
}

.company-name .sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 2px;
  background: #ff9933;
}

.company-name .sub-title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 2px;
  background: #138808;
  transform: translateY(-5px);
}

/* Right Side Elements - आकर्षक तत्व */
.right-elements {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: 140px;
  flex-wrap: wrap;
}

/* Experience Badge */
.exp-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 180, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.exp-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.exp-badge:hover::before {
  left: 100%;
}

.exp-icon {
  width: 45px;
  height: 45px;
  background: #0a2f44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb800;
  font-size: 20px;
  border: 2px solid #ff9933;
}

.exp-text {
  display: flex;
  flex-direction: column;
}

.exp-text strong {
  font-size: 20px;
  color: #0a2f44;
  line-height: 1.2;
}

.exp-text small {
  font-size: 12px;
  color: #666;
  letter-spacing: 0.5px;
}

/* Certification Strip */
.cert-strip {
  display: flex;
  gap: 15px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: #f8f9fa;
  border-radius: 30px;
  border-left: 3px solid #ff9933;
  border-right: 3px solid #138808;
  transition: all 0.3s ease;
}

.cert-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: white;
}

.cert-item i {
  color: #0a2f44;
  font-size: 18px;
}

.cert-item span {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.cert-item .govt-tag {
  background: #0a2f44;
  color: white;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 10px;
  margin-left: 5px;
}

/* Trust Badge */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0a2f44;
  padding: 8px 20px;
  border-radius: 40px;
  color: white;
  border: 2px solid #ffb800;
  position: relative;
}

.trust-badge i {
  color: #ffb800;
  font-size: 20px;
}

.trust-badge .stars {
  color: #ffb800;
  letter-spacing: 3px;
  font-size: 12px;
}

/* Animations */
@keyframes gradientShift {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinReverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .right-elements {
    /* justify-content: center;
    width: 100%; */
    display: none !important;
  }

  .cert-strip {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .middle-content {
    flex-direction: column;
    text-align: center;
  }

  .logo-section {
    flex-direction: column;
  }

  .company-name .sub-title {
    padding-left: 0;
  }

  .company-name .sub-title::before,
  .company-name .sub-title::after {
    display: none;
  }

  .exp-badge {
    width: 100%;
    justify-content: center;
  }

  .logo-image {
    width: 100px;
    height: 100px;
  }
}
/*=================================MAIN NAVBAR SECTION STYLING========================*/
.professional-navbar {
  background: linear-gradient(135deg, #0a2f44 0%, #124b6e 100%);
  padding: 0;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #ff9933;
  z-index: 1000;
}

.navbar-container {
  position: relative;
  z-index: 1002;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Navbar Brand */
.navbar-brand {
  color: white !important;
  font-weight: 700;
  font-size: 24px;
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand span {
  color: #ffb800;
}

/* Navbar Toggler */
.navbar-toggler {
  border: 2px solid #ffb800;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 184, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Nav Links - Base Styles */
.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 18px 22px !important;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  white-space: nowrap;
}

.nav-link i {
  font-size: 16px;
  color: #ffb800;
  transition: all 0.3s ease;
  min-width: 20px;
  text-align: center;
}

/* Desktop Styles */
@media (min-width: 992px) {
  .nav-link {
    position: relative;
  }

  .nav-link::before {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, #ff9933, #ffb800, #138808);
    border-radius: 3px;
    transition: transform 0.3s ease;
    opacity: 0;
  }

  .nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
  }

  .nav-link:hover i {
    transform: rotate(360deg);
    color: #ff9933;
  }

  /* Desktop Dropdown - HOVER */
  .dropdown {
    position: relative;
  }

  /* Two Column Dropdown for Services & Jobs */
  .dropdown-menu.services-menu {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    min-width: 550px;
    max-width: 650px;
  }

  /* Normal Dropdown for Gallery */
  .dropdown-menu.normal-menu {
    display: block !important;
    min-width: 200px;
    max-width: 250px;
  }

  .dropdown-menu {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: none;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 15px;
    border-top: 4px solid #ffb800;
    z-index: 9999;
    margin-top: 0;
    pointer-events: none;
    left: 0;
  }

  .dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  /* Category Header */
  .dropdown-category {
    grid-column: span 2;
    padding: 8px 12px;
    margin: 0 0 5px 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ff9933;
    letter-spacing: 0.5px;
    background: rgba(255, 153, 51, 0.05);
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .dropdown-category i {
    color: #138808;
    font-size: 12px;
    width: 16px;
    text-align: center;
  }

  /* Dropdown Items */
  .dropdown-item {
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    border-radius: 5px;
    margin: 1px 0;
  }

  .dropdown-item i {
    color: #0a2f44;
    font-size: 13px;
    width: 18px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .dropdown-item .item-text {
    flex: 1;
    color: inherit;
  }

  .dropdown-item:hover {
    background: linear-gradient(90deg, #0a2f44, #124b6e);
    color: white;
    padding-left: 15px;
  }

  .dropdown-item:hover i {
    color: #ffb800;
    transform: scale(1.1);
  }

  /* Submenu Items */
  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu > .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding-right: 25px;
  }

  .dropdown-submenu > .dropdown-item .submenu-arrow {
    margin-left: auto;
    font-size: 10px;
    color: #ff9933;
    transition: transform 0.3s ease;
    width: 12px;
    text-align: center;
  }

  .dropdown-submenu:hover > .dropdown-item .submenu-arrow {
    transform: translateX(3px);
    color: #138808;
  }

  .dropdown-submenu .dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    margin-top: 0;
    margin-left: 2px;
    min-width: 220px;
    display: block !important;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    border-top-color: #138808;
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .dropdown-submenu:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
  }

  /* Contact Button */
  .contact-btn {
    background: linear-gradient(135deg, #ff9933, #ffb800);
    border-radius: 30px !important;
    padding: 10px 25px !important;
    margin-left: 10px;
    margin-top: 8px;
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
    color: #0a2f44 !important;
    font-weight: 600;
  }

  .contact-btn i {
    color: #0a2f44 !important;
  }

  .contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.4);
  }
}

/* Mobile Styles */
@media (max-width: 991px) {
  .navbar-collapse {
    transition: all 0.4s ease-in-out !important;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #ffb800 #0a2f44;
    position: relative;
    z-index: 9999;
    background: #0a2f44;
    border-radius: 0 0 20px 20px;
  }

  .navbar-collapse::-webkit-scrollbar {
    width: 4px;
  }

  .navbar-collapse::-webkit-scrollbar-track {
    background: #0a2f44;
  }

  .navbar-collapse::-webkit-scrollbar-thumb {
    background: #ffb800;
    border-radius: 4px;
  }

  .navbar-nav {
    padding: 15px 0;
    width: 100%;
  }

  .nav-item {
    width: 100%;
    margin: 2px 0;
    position: relative;
  }

  .nav-link {
    padding: 15px 20px !important;
    justify-content: flex-start !important;
    width: 100%;
    border-radius: 8px;
    background: transparent;
    margin: 0;
    white-space: normal;
    word-break: keep-all;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .nav-link i {
    width: 24px;
    font-size: 18px;
    text-align: center;
  }

  /* Dropdown Toggle Arrow */
  .dropdown-toggle {
    position: relative;
    padding-right: 45px !important;
  }

  .dropdown-toggle::after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }

  .dropdown-toggle.show::after {
    transform: translateY(-50%) rotate(180deg);
  }

  /* Dropdown Menu */
  .dropdown-menu {
    background: rgba(0, 0, 0, 0.2) !important;
    border: none;
    border-left: 3px solid #ffb800;
    margin: 5px 0 5px 30px;
    padding: 0;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    display: block !important;
    visibility: hidden;
    pointer-events: none;
    position: relative;
    width: calc(100% - 30px);
  }

  .dropdown-menu.show {
    max-height: 2000px;
    padding: 8px 0;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  /* Category Header - Mobile */
  .dropdown-category {
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffb800;
    letter-spacing: 0.5px;
    background: rgba(255, 153, 51, 0.1);
    margin: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .dropdown-category i {
    color: #138808;
    width: 18px;
    text-align: center;
  }

  /* Dropdown Items - Mobile */
  .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    white-space: normal;
    word-break: break-word;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .dropdown-menu.show .dropdown-item {
    opacity: 1;
    transform: translateX(0);
  }

  .dropdown-item i {
    color: #ffb800;
    width: 20px;
    font-size: 14px;
    text-align: center;
  }

  .dropdown-item .item-text {
    flex: 1;
    color: inherit;
  }

  .dropdown-item:hover {
    background: #ffb800;
    color: #0a2f44;
  }

  .dropdown-item:hover i {
    color: #0a2f44;
  }

  /* Submenu in Mobile */
  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu .dropdown-menu {
    margin-left: 20px;
    border-left-color: #138808;
    width: calc(100% - 20px);
  }

  .dropdown-submenu > .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding-right: 40px;
  }

  .dropdown-submenu > .dropdown-item .submenu-arrow {
    position: absolute;
    right: 20px;
    font-size: 12px;
    color: #ffb800;
    transition: transform 0.3s ease;
  }

  .dropdown-submenu.show > .dropdown-item .submenu-arrow {
    transform: rotate(90deg);
  }

  /* Contact Button Mobile */
  .contact-btn {
    margin: 15px 20px 10px !important;
    justify-content: center !important;
    text-align: center;
    background: linear-gradient(135deg, #ff9933, #ffb800);
    color: #0a2f44 !important;
    font-weight: 600;
    width: calc(100% - 40px);
    border-radius: 50px !important;
    padding: 12px 20px !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
  }

  .contact-btn i {
    color: #0a2f44 !important;
  }
}

/*========================HERO SLIDER SECTION STYLING========================*/
.hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 750px;
  background: linear-gradient(135deg, #0a2f44 0%, #083244 100%);
  overflow: hidden;
  z-index: 1; /* Lower z-index so navbar appears above */
}

/* Slider Container */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1; /* Lower z-index */
}

/* Individual Slide */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  align-items: center;
  z-index: 1; /* Lower z-index */
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2; /* Slightly higher but still below navbar */
}

/* Container */
.slide-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* ===== LEFT CONTENT AREA ===== */
.left-content {
  flex: 1;
  max-width: 600px;
  color: white;
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s;
}

.slide.active .left-content {
  transform: translateX(0);
  opacity: 1;
}

/* Tagline */
.content-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  border-left: 3px solid #ff9933;
  border-right: 3px solid #138808;
  position: relative;
  overflow: hidden;
}

.content-tagline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shine 3s infinite;
}

.content-tagline i {
  color: #ffb800;
}

/* Title */
.content-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.content-title .orange {
  color: #ff9933;
  display: block;
}

.content-title .green {
  color: #138808;
  display: block;
}

.content-title .white {
  color: white;
  display: block;
}

/* Description */
.content-desc {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
}

/* Features List */
.content-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 35px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 15px;
  border-radius: 30px;
  border: 1px solid rgba(255, 184, 0, 0.2);
}

.feature-item i {
  color: #ffb800;
  font-size: 12px;
}

/* Buttons */
.content-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 15px 35px;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  border: none;
  border-radius: 50px;
  color: #0a2f44;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 153, 51, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 153, 51, 0.4);
}

.btn-secondary {
  padding: 15px 35px;
  background: transparent;
  border: 2px solid rgba(255, 184, 0, 0.5);
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  width: 100%;
}

.btn-secondary:hover {
  border-color: transparent;
  color: #0a2f44;
  transform: translateY(-3px);
}

/* ===== RIGHT IMAGE AREA ===== */
.right-images {
  flex: 1;
  position: relative;
  height: 600px;
  transform: translateX(50px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s;
}

.slide.active .right-images {
  transform: translateX(0);
  opacity: 1;
}

/* Main Image */
.main-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 550px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border: 5px solid rgba(255, 184, 0, 0.3);
  z-index: 5;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.slide.active .main-image img {
  transform: scale(1.1);
}

/* Small Image 1 - Top Right */
.small-image-1 {
  position: absolute;
  top: 30px;
  right: 0;
  width: 180px;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 4px solid #ff9933;
  z-index: 6;
  animation: floatImage 6s ease-in-out infinite;
}

.small-image-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Small Image 2 - Bottom Left */
.small-image-2 {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 4px solid #138808;
  z-index: 6;
  animation: floatImage 7s ease-in-out infinite;
}

.small-image-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Small Image 3 - Middle Left */
.small-image-3 {
  position: absolute;
  top: 40%;
  left: -30px;
  width: 150px;
  height: 150px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 4px solid #ffb800;
  z-index: 7;
  animation: floatImage 8s ease-in-out infinite reverse;
}

.small-image-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Background Pattern */
.image-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(255, 153, 51, 0.1) 0%,
    transparent 50%
  );
  z-index: 1;
}

/* ===== CENTER NAVIGATION ===== */
.slider-navigation {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(10, 47, 68, 0.4);
  backdrop-filter: blur(10px);
  padding: 12px 30px;
  border-radius: 60px;
  border: 1px solid rgba(255, 184, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Navigation Buttons */
.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 184, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav-btn:hover::before {
  opacity: 1;
}

.nav-btn:hover {
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(255, 153, 51, 0.3);
}

/* Dots Container */
.dots-container {
  display: flex;
  gap: 12px;
}

/* Unique Dots */
.dot {
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.dot::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff9933, #138808);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.dot.active {
  width: 40px;
  background: linear-gradient(90deg, #ff9933, #ffffff, #138808);
}

.dot.active::before {
  opacity: 1;
}

.dot:hover {
  background: rgba(255, 184, 0, 0.5);
  transform: scale(1.2);
}

/* Animations */
@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .content-title {
    font-size: 48px;
  }

  .main-image {
    width: 350px;
    height: 450px;
  }
}
/* ===== MOBILE RESPONSIVE (Only for small mobile devices) ===== */
@media screen and (max-width: 480px) {
  .hero-section {
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
  }

  /* Hide all small images on mobile - only main image remains */
  .small-image-1,
  .small-image-2,
  .small-image-3 {
    display: none !important;
  }

  /* Adjust slider navigation */
  .slider-navigation {
    bottom: 20px;
    padding: 8px 16px;
    gap: 15px;
    background: rgba(10, 47, 68, 0.6);
    backdrop-filter: blur(10px);
    z-index: 30;
  }

  .nav-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .dots-container {
    gap: 8px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 25px;
  }

  /* Container adjustments */
  .slide-container {
    padding: 0 20px;
    gap: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* Left content area */
  .left-content {
    max-width: 100%;
    margin-top: 30px;
    text-align: center;
    transform: translateX(0);
    width: 100%;
  }

  /* Tagline */
  .content-tagline {
    font-size: 12px;
    padding: 6px 15px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-flex;
  }

  .content-tagline i {
    font-size: 10px;
  }

  /* Title */
  .content-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .content-title .orange,
  .content-title .green,
  .content-title .white {
    display: inline-block;
    margin: 0 3px;
  }

  /* Description */
  .content-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 auto 15px;
    padding: 0 5px;
    max-width: 100%;
    opacity: 0.9;
  }

  /* Features List - Now visible and properly adjusted */
  .content-features {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 5px;
  }

  .feature-item {
    padding: 6px 12px;
    font-size: 12px;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-width: 1px;
  }

  .feature-item i {
    font-size: 10px;
  }

  /* Buttons */
  .content-buttons {
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 13px;
    letter-spacing: 0.5px;
  }

  .btn-primary i,
  .btn-secondary i {
    font-size: 12px;
  }

  /* Right images area - Only main image visible */
  .right-images {
    height: 220px;
    width: 100%;
    margin: 5px 0 20px;
    transform: translateX(0);
    position: relative;
  }

  /* Main Image - Centered and properly sized */
  .main-image {
    width: 400px;
    height: 400px;
    border-width: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .main-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  /* Active slide adjustments */
  .slide.active .left-content {
    transform: translateX(0);
  }

  .slide.active .right-images {
    transform: translateX(0);
  }

  /* Ensure proper stacking */
  .slide {
    z-index: 1;
  }

  .slide.active {
    z-index: 2;
  }

  .slider-navigation {
    z-index: 30;
  }

  /* Prevent content from being hidden */
  .left-content {
    padding-bottom: 5px;
  }
}

/* ===== SPECIFIC FIXES FOR 320px SCREEN ONLY ===== */
@media screen and (width: 320px) {
  .hero-section {
    min-height: 568px;
    height: 100vh;
  }

  /* Container */
  .slide-container {
    padding: 0 15px;
    gap: 8px;
  }

  /* Left content */
  .left-content {
    margin-top: 15px;
  }

  /* Tagline */
  .content-tagline {
    font-size: 10px;
    padding: 4px 10px;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .content-tagline i {
    font-size: 8px;
  }

  /* Title */
  .content-title {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .content-title .orange,
  .content-title .green,
  .content-title .white {
    margin: 0 2px;
  }

  /* Description */
  .content-desc {
    font-size: 12px;
    line-height: 1.5;
    margin: 0 auto 10px;
    padding: 0 5px;
  }

  /* Features */
  .content-features {
    gap: 6px;
    margin-bottom: 12px;
  }

  .feature-item {
    padding: 4px 8px;
    font-size: 10px;
    gap: 4px;
  }

  .feature-item i {
    font-size: 8px;
  }

  /* Buttons */
  .content-buttons {
    gap: 8px;
    margin-bottom: 5px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 8px 16px;
    font-size: 11px;
  }

  .btn-primary i,
  .btn-secondary i {
    font-size: 10px;
  }

  /* Right images */
  .right-images {
    height: 160px;
    margin: 0 0 15px;
  }

  /* Main Image */
  .main-image {
    width: 140px;
    height: 140px;
    border-width: 3px;
  }

  /* Navigation */
  .slider-navigation {
    bottom: 10px;
    padding: 5px 12px;
    gap: 10px;
  }

  .nav-btn {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .dots-container {
    gap: 5px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }

  .dot.active {
    width: 18px;
  }
}

/* Extra small devices (320px and below) */
@media screen and (max-width: 360px) {
  .hero-section {
    min-height: 550px;
  }

  .content-title {
    font-size: 28px;
  }

  .content-tagline {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 10px;
  }

  .content-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  /* Features for extra small devices */
  .feature-item {
    padding: 5px 10px;
    font-size: 11px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 12px;
  }

  .main-image {
    width: 170px;
    height: 170px;
    border-width: 3px;
  }

  .right-images {
    height: 180px;
  }

  .slider-navigation {
    bottom: 15px;
    padding: 6px 14px;
  }

  .nav-btn {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .dot {
    width: 7px;
    height: 7px;
  }

  .dot.active {
    width: 22px;
  }
}

/* Height-specific adjustments for very short screens */
@media screen and (max-height: 650px) and (max-width: 480px) {
  .hero-section {
    min-height: 500px;
  }

  .left-content {
    margin-top: 15px;
  }

  .content-tagline {
    margin-bottom: 8px;
    padding: 4px 12px;
  }

  .content-title {
    font-size: 26px;
    margin-bottom: 5px;
  }

  .content-desc {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.4;
  }

  /* Features in short screens */
  .content-features {
    gap: 6px;
    margin-bottom: 10px;
  }

  .feature-item {
    padding: 4px 8px;
    font-size: 10px;
  }

  .right-images {
    height: 150px;
    margin: 0 0 10px;
  }

  .main-image {
    width: 140px;
    height: 140px;
    border-width: 3px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 8px 16px;
    font-size: 11px;
  }

  .slider-navigation {
    bottom: 10px;
    padding: 5px 12px;
  }
}

/* Small phones with very narrow width */
@media screen and (max-width: 280px) {
  .content-title {
    font-size: 24px;
  }

  .content-tagline {
    font-size: 10px;
    padding: 4px 10px;
  }

  .content-desc {
    font-size: 11px;
  }

  .feature-item {
    padding: 4px 8px;
    font-size: 10px;
    width: 100%;
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary {
    padding: 8px 14px;
    font-size: 11px;
    width: 100%;
    justify-content: center;
  }

  .content-buttons {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .main-image {
    width: 130px;
    height: 130px;
  }

  .right-images {
    height: 140px;
  }
} /*============================ABOUT STYLING===========================*/
.isms-about-premium {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background Decoration */
.isms-about-premium::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 153, 51, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.isms-about-premium::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(19, 136, 8, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.isms-container-custom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.isms-wrapper-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* ===== LEFT IMAGE AREA ===== */
.isms-image-col {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.isms-image-stack {
  position: relative;
  height: 550px;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

/* Main Image */
.isms-main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 380px;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border: 5px solid white;
  z-index: 3;
}

.isms-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.isms-main-img:hover img {
  transform: scale(1.1);
}

/* Image Overlay */
.isms-main-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.2),
    rgba(19, 136, 8, 0.2)
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.isms-main-img:hover::before {
  opacity: 1;
}

/* Second Image */
.isms-second-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 380px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border: 5px solid white;
  z-index: 4;
  animation: ismsFloatImage 6s ease-in-out infinite;
}

.isms-second-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Experience Badge */
.isms-exp-badge-premium {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  padding: 20px 25px;
  border-radius: 30px;
  color: #0a2f44;
  text-align: center;
  box-shadow: 0 20px 40px rgba(255, 153, 51, 0.3);
  z-index: 5;
  animation: ismsPulseBadge 3s ease-in-out infinite;
  border: 3px solid white;
}

.isms-exp-years {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.isms-exp-text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Trust Badge */
.isms-trust-badge-premium {
  position: absolute;
  bottom: 50px;
  left: -20px;
  background: white;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 5;
  border-left: 4px solid #ff9933;
  border-right: 4px solid #138808;
}

.isms-trust-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0a2f44, #124b6e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb800;
  font-size: 20px;
}

.isms-trust-text {
  font-weight: 600;
  color: #0a2f44;
  font-size: 15px;
}

.isms-trust-text small {
  display: block;
  font-size: 12px;
  color: #666;
  font-weight: 400;
}

/* ===== STATS SECTION - Now below image ===== */
.isms-stats-container {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: space-between;
  background: white;
  padding: 25px 30px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 153, 51, 0.2);
  margin-top: 10px;
}

.isms-stat-block {
  text-align: center;
  min-width: 80px;
  position: relative;
}

.isms-stat-digit {
  font-size: 36px;
  font-weight: 800;
  color: #0a2f44;
  line-height: 1;
  margin-bottom: 5px;
  background: linear-gradient(135deg, #ff9933, #138808);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

/* Counter Plus Sign */
.isms-stat-digit::after {
  content: "+";
  font-size: 22px;
  color: #ff9933;
  position: absolute;
  top: 0;
  right: -15px;
}

.isms-stat-label {
  font-size: 13px;
  color: #555;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== RIGHT CONTENT AREA ===== */
.isms-content-col {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Section Subtitle */
.isms-subtitle-block {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff9933;
  margin-bottom: 15px;
  padding: 6px 18px;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 40px;
}

.isms-subtitle-block i {
  color: #138808;
  font-size: 12px;
}

/* Section Title */
.isms-main-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0a2f44;
}

.isms-main-title span {
  display: block;
}

.isms-title-orange {
  color: #ff9933;
}

.isms-title-green {
  color: #138808;
}

/* Description */
.isms-desc-wrapper {
  margin-bottom: 20px;
}

.isms-desc-wrapper p {
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  color: #555;
  margin-bottom: 15px;
  /* Show only 4 lines */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Read More Link */
.isms-readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff9933;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.isms-readmore-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.isms-readmore-link:hover {
  color: #138808;
  gap: 10px;
}

.isms-readmore-link:hover i {
  transform: translateX(5px);
}

/* Features Grid */
.isms-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.isms-feature-card {
  background: white;
  padding: 18px 15px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 153, 51, 0.1);
  position: relative;
  overflow: hidden;
}

.isms-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, #ff9933, #138808);
  transition: height 0.3s ease;
}

.isms-feature-card:hover::before {
  height: 100%;
}

.isms-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.isms-feature-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.1),
    rgba(19, 136, 8, 0.1)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 20px;
  color: #ff9933;
  transition: all 0.3s ease;
}

.isms-feature-card:hover .isms-feature-icon {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  color: white;
  transform: rotateY(180deg);
}

.isms-feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 5px;
}

.isms-feature-card p {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

/* About Buttons */
.isms-btn-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.isms-btn-primary {
  padding: 12px 30px;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  border: none;
  border-radius: 40px;
  color: #0a2f44;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 153, 51, 0.3);
  position: relative;
  overflow: hidden;
}

.isms-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.isms-btn-primary:hover::before {
  left: 100%;
}

.isms-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 153, 51, 0.4);
}

.isms-btn-secondary {
  padding: 12px 30px;
  background: transparent;
  border: 2px solid #0a2f44;
  border-radius: 40px;
  color: #0a2f44;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.isms-btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #0a2f44;
  transition: width 0.3s ease;
  z-index: -1;
}

.isms-btn-secondary:hover::before {
  width: 100%;
}

.isms-btn-secondary:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Animations */
@keyframes ismsFloatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes ismsPulseBadge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .isms-main-title {
    font-size: 30px;
  }

  .isms-image-stack {
    height: 500px;
  }

  .isms-main-img {
    width: 340px;
    height: 460px;
  }

  .isms-second-img {
    width: 260px;
    height: 340px;
  }
}

@media (max-width: 992px) {
  .isms-wrapper-flex {
    flex-direction: column;
  }

  .isms-image-col {
    width: 100%;
  }

  .isms-image-stack {
    height: 500px;
    margin-bottom: 20px;
  }

  .isms-main-img {
    position: relative;
    width: 320px;
    height: 420px;
    margin: 0 auto;
  }

  .isms-second-img {
    position: absolute;
    bottom: 0;
    right: 50px;
    width: 220px;
    height: 280px;
  }

  .isms-trust-badge-premium {
    left: 20px;
  }

  .isms-content-col {
    width: 100%;
  }

  .isms-stats-container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .isms-about-premium {
    padding: 50px 0;
  }

  .isms-main-title {
    font-size: 26px;
  }

  .isms-features-grid {
    grid-template-columns: 1fr;
  }

  .isms-image-stack {
    height: 450px;
  }

  .isms-main-img {
    width: 280px;
    height: 380px;
  }

  .isms-second-img {
    width: 180px;
    height: 230px;
    right: 20px;
  }

  .isms-exp-badge-premium {
    padding: 15px 20px;
    right: 20px;
    top: 20px;
  }

  .isms-exp-years {
    font-size: 32px;
  }

  .isms-exp-text {
    font-size: 12px;
  }

  .isms-trust-badge-premium {
    padding: 12px 20px;
    bottom: 40px;
    left: 10px;
  }

  .isms-trust-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .isms-trust-text {
    font-size: 14px;
  }

  .isms-stats-container {
    gap: 15px;
    padding: 20px;
  }

  .isms-stat-digit {
    font-size: 28px;
  }

  .isms-stat-digit::after {
    font-size: 18px;
    right: -12px;
  }

  .isms-stat-label {
    font-size: 11px;
  }

  .isms-btn-wrapper {
    justify-content: center;
  }

  .isms-btn-primary,
  .isms-btn-secondary {
    padding: 10px 20px;
    font-size: 13px;
  }
}
/*==============================OUR CERTIFICATION SECTION STYING========================*/
.isms-cert-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  overflow: hidden;
}

/* Background Decorations */
.isms-cert-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 153, 51, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.isms-cert-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(19, 136, 8, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.isms-cert-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ===== CERTIFICATES SLIDER ===== */
.isms-cert-swiper {
  padding: 20px 10px 40px;
  margin: 0 -10px;
}

.isms-cert-swiper .swiper-wrapper {
  padding: 20px 0;
}

/* Certificate Card */
.isms-cert-card {
  background: white;
  border-radius: 30px;
  padding: 30px 20px 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 153, 51, 0.1);
  height: 100%;
  cursor: pointer;
  text-align: center;
}

.isms-cert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(255, 153, 51, 0.15);
  border-color: #ff9933;
}

/* Card Gradient Border */
.isms-cert-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff9933, #ffb800, #138808);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.isms-cert-card:hover::before {
  opacity: 1;
}

/* Certificate Ribbon */
.isms-cert-ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff9933;
  color: #0a2f44;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 30px;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

/* Certificate Image Container */
.isms-cert-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border: 4px solid white;
  transition: all 0.4s ease;
  position: relative;
}

.isms-cert-card:hover .isms-cert-image {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 153, 51, 0.2);
  border-color: #ffb800;
}

.isms-cert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.isms-cert-card:hover .isms-cert-image img {
  transform: scale(1.1);
}

/* Zoom Icon */
.isms-cert-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px;
  height: 50px;
  background: rgba(255, 153, 51, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 3;
  opacity: 0;
}

.isms-cert-card:hover .isms-cert-zoom {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Certificate Title */
.isms-cert-title-sm {
  font-size: 18px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.isms-cert-card:hover .isms-cert-title-sm {
  color: #ff9933;
}

/* Certificate Issuer */
.isms-cert-issuer {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.isms-cert-issuer i {
  color: #138808;
  font-size: 12px;
}

/* Certificate Date */
.isms-cert-date {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 153, 51, 0.2);
}

.isms-cert-date i {
  color: #ff9933;
  font-size: 12px;
}

/* ===== NAVIGATION BUTTONS ONLY ===== */
.isms-cert-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

.isms-cert-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  border: 2px solid #ff9933;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9933;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(255, 153, 51, 0.1);
}

.isms-cert-btn:hover {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  border-color: transparent;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(255, 153, 51, 0.3);
}

/* Hide Swiper Pagination completely */
.swiper-pagination {
  display: none !important;
}

/* Responsive */
@media (max-width: 1200px) {
  .isms-cert-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .isms-cert-section {
    padding: 60px 0;
  }

  .isms-cert-title {
    font-size: 36px;
  }

  .isms-cert-image {
    width: 150px;
    height: 150px;
  }

  .isms-cert-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .isms-cert-nav {
    gap: 20px;
  }
}
/*==============================OUR SERVICES SECTION STYING========================*/
.isms-services-premium {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  overflow: hidden;
}

/* Background Decoration */
.isms-services-premium::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 153, 51, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
  animation: ismsPulseAnim 8s ease-in-out infinite;
}

.isms-services-premium::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(19, 136, 8, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
  animation: ismsPulseAnim 8s ease-in-out infinite reverse;
}

.isms-container-custom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ===== SERVICES GRID ===== */
.isms-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* Service Card */
.isms-card-item {
  background: white;
  border-radius: 30px;
  padding: 40px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 153, 51, 0.1);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

/* Card Number Background */
.isms-card-item::before {
  content: attr(data-number);
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 120px;
  font-weight: 800;
  color: rgba(10, 47, 68, 0.03);
  line-height: 1;
  transition: all 0.5s ease;
  pointer-events: none;
}

.isms-card-item:hover::before {
  transform: scale(1.1);
  color: rgba(255, 153, 51, 0.1);
  bottom: -10px;
  right: -10px;
}

/* Card Border Animation */
.isms-card-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(135deg, #ff9933, #ffb800, #138808);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.isms-card-item:hover::after {
  opacity: 1;
}

/* Card Icon Container */
.isms-icon-container {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.1),
    rgba(19, 136, 8, 0.1)
  );
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 48px;
  color: #ff9933;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  border: 2px dashed rgba(255, 153, 51, 0.3);
}

.isms-card-item:hover .isms-icon-container {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 40px rgba(255, 153, 51, 0.3);
  border-color: transparent;
}

/* Card Title */
.isms-title-text {
  font-size: 24px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.isms-card-item:hover .isms-title-text {
  color: #ff9933;
  transform: translateX(5px);
}

/* Card Description */
.isms-desc-small {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

/* Card Features List */
.isms-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  position: relative;
  z-index: 1;
}

.isms-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.isms-features-list li i {
  color: #138808;
  font-size: 14px;
  width: 20px;
  transition: all 0.3s ease;
}

.isms-card-item:hover .isms-features-list li {
  transform: translateX(5px);
}

.isms-card-item:hover .isms-features-list li i {
  color: #ff9933;
  transform: scale(1.2);
}

/* Card Link */
.isms-link-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #0a2f44;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.isms-card-item:hover .isms-link-more {
  color: #138808;
  gap: 15px;
  border-bottom-color: #ff9933;
}

.isms-link-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.isms-card-item:hover .isms-link-more i {
  transform: translateX(8px);
  color: #ff9933;
}

/* Service Badge */
.isms-badge-small {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #ff9933;
  background: rgba(255, 153, 51, 0.1);
  padding: 5px 15px;
  border-radius: 25px;
  z-index: 2;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 153, 51, 0.2);
  backdrop-filter: blur(5px);
}

.isms-card-item:hover .isms-badge-small {
  background: #ff9933;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

/* ===== VIEW ALL BUTTON - CENTERED ===== */
.isms-button-wrapper {
  text-align: center;
  margin-top: 60px;
  position: relative;
  width: 100%;
}

/* Decorative Lines */
.isms-button-wrapper::before,
.isms-button-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 200px);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff9933,
    #138808,
    #ff9933,
    transparent
  );
  transform: translateY(-50%);
  z-index: 1;
}

.isms-button-wrapper::before {
  left: 0;
}

.isms-button-wrapper::after {
  right: 0;
}

/* View All Button */
.isms-btn-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 18px 50px;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  border: none;
  border-radius: 60px;
  color: #0a2f44;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(255, 153, 51, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 2;
  border: 2px solid white;
}

.isms-btn-view-all::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transition: left 0.6s ease;
}

.isms-btn-view-all:hover::before {
  left: 100%;
}

.isms-btn-view-all:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 30px 50px rgba(255, 153, 51, 0.4);
  color: #0a2f44;
  background: linear-gradient(135deg, #ffb800, #ff9933);
}

.isms-btn-view-all i {
  font-size: 18px;
  transition: transform 0.4s ease;
}

.isms-btn-view-all:hover i {
  transform: translateX(8px) rotate(360deg);
}

/* Animations */
@keyframes ismsShineEffect {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes ismsPulseAnim {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .isms-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .isms-heading-main {
    font-size: 42px;
  }

  .isms-button-wrapper::before,
  .isms-button-wrapper::after {
    width: calc(50% - 150px);
  }
}

@media (max-width: 768px) {
  .isms-services-premium {
    padding: 60px 0;
  }

  .isms-heading-main {
    font-size: 36px;
  }

  .isms-grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .isms-card-item {
    padding: 30px 25px;
  }

  .isms-icon-container {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }

  .isms-title-text {
    font-size: 22px;
  }

  .isms-btn-view-all {
    padding: 15px 40px;
    font-size: 14px;
  }

  .isms-button-wrapper::before,
  .isms-button-wrapper::after {
    display: none;
  }

  .isms-desc-text::before,
  .isms-desc-text::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .isms-heading-main {
    font-size: 30px;
  }

  .isms-title-text {
    font-size: 20px;
  }

  .isms-btn-view-all {
    padding: 12px 30px;
    font-size: 13px;
    gap: 10px;
  }
}

/* ===== MANPOWER CATEGORIES SECTION ===== */
.isms-manpower-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #f9fbfd 0%, #ffffff 100%);
  overflow: hidden;
}

.isms-manpower-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.isms-manpower-header {
  text-align: center;
  margin-bottom: 50px;
}

.isms-manpower-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff9933;
  margin-bottom: 15px;
  padding: 8px 25px;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 40px;
}

.isms-manpower-title {
  font-size: 42px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 10px;
}

.isms-manpower-title span {
  color: #138808;
}

/* ===== TWO COLUMN LAYOUT - EQUAL 10-10 ===== */
.isms-categories-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.isms-category-column {
  flex: 1;
  min-width: 300px;
  background: white;
  border-radius: 30px;
  padding: 35px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 153, 51, 0.1);
  transition: all 0.3s ease;
}

.isms-category-column:hover {
  box-shadow: 0 30px 60px rgba(255, 153, 51, 0.1);
  border-color: rgba(255, 153, 51, 0.3);
  transform: translateY(-5px);
}

/* Column Header */
.isms-column-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 153, 51, 0.2);
  background: linear-gradient(90deg, rgba(255, 153, 51, 0.02), transparent);
  border-radius: 0 0 20px 20px;
}

.isms-column-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.1),
    rgba(19, 136, 8, 0.1)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ff9933;
}

.isms-column-title {
  font-size: 24px;
  font-weight: 700;
  color: #0a2f44;
}

.isms-column-title small {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-top: 3px;
}

/* Categories List */
.isms-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.isms-category-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 10px;
}

.isms-category-item:last-child {
  border-bottom: none;
}

.isms-category-item:hover {
  background: rgba(255, 153, 51, 0.05);
  transform: translateX(8px);
}

.isms-category-bullet {
  width: 8px;
  height: 8px;
  background: #ff9933;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.isms-category-item:hover .isms-category-bullet {
  background: #138808;
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(19, 136, 8, 0.3);
}

.isms-category-text {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  flex: 1;
}

.isms-category-number {
  font-size: 12px;
  font-weight: 600;
  color: #ff9933;
  background: rgba(255, 153, 51, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
  min-width: 35px;
  text-align: center;
}

.isms-category-item:hover .isms-category-number {
  background: #ff9933;
  color: white;
}

/* Column Footer */
.isms-column-footer {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px dashed rgba(255, 153, 51, 0.2);
  text-align: center;
}

.isms-total-count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 47, 68, 0.05);
  padding: 8px 25px;
  border-radius: 40px;
  font-size: 14px;
  color: #0a2f44;
  font-weight: 600;
}

.isms-total-count span {
  background: #ff9933;
  color: white;
  padding: 3px 12px;
  border-radius: 30px;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .isms-manpower-title {
    font-size: 32px;
  }

  .isms-category-column {
    padding: 25px 20px;
  }

  .isms-column-title {
    font-size: 20px;
  }

  .isms-category-text {
    font-size: 14px;
  }
}

/* ===== WHERE WE WORK SECTION ===== */
.isms-work-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  overflow: hidden;
}

/* Background Decoration */
.isms-work-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 153, 51, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.isms-work-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(19, 136, 8, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.isms-work-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.isms-work-header {
  text-align: center;
  margin-bottom: 50px;
}

.isms-work-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff9933;
  margin-bottom: 15px;
  padding: 8px 25px;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 40px;
}

.isms-work-title {
  font-size: 42px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 10px;
}

.isms-work-title span {
  color: #138808;
}

/* ===== CARDS GRID - 4 CARDS PER ROW ===== */
.isms-work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
  margin-top: 50px;
}

/* Small Card */
.isms-work-card {
  background: white;
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 153, 51, 0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Card Hover Effect */
.isms-work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 153, 51, 0.15);
  border-color: #ff9933;
}

/* Card Border Animation */
.isms-work-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, #ff9933, #138808);
  transition: height 0.3s ease;
}

.isms-work-card:hover::before {
  height: 100%;
}

/* Logo Container */
.isms-work-logo {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.1),
    rgba(19, 136, 8, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: all 0.3s ease;
  border: 2px dashed rgba(255, 153, 51, 0.3);
}

.isms-work-card:hover .isms-work-logo {
  transform: scale(1.1) rotate(5deg);
  border-color: #ff9933;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.2),
    rgba(19, 136, 8, 0.2)
  );
}

.isms-work-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

/* Default Logo Icon (if image not available) */
.isms-work-logo i {
  font-size: 36px;
  color: #ff9933;
}

/* Card Heading */
.isms-work-heading {
  font-size: 16px;
  font-weight: 700;
  color: #0a2f44;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Short Paragraph */
.isms-work-para {
  font-size: 13px;
  color: #666;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

/* Location Icon */
.isms-work-location {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: #ff9933;
}

.isms-work-location i {
  font-size: 12px;
  margin-right: 3px;
}

/* View All Button Wrapper */
.isms-work-btn-wrapper {
  text-align: center;
  position: relative;
  margin-top: 20px;
}

/* Decorative Lines */
.isms-work-btn-wrapper::before,
.isms-work-btn-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 200px);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff9933,
    #138808,
    #ff9933,
    transparent
  );
  transform: translateY(-50%);
  z-index: 1;
}

.isms-work-btn-wrapper::before {
  left: 0;
}

.isms-work-btn-wrapper::after {
  right: 0;
}

/* View All Button */
.isms-work-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 45px;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  border: none;
  border-radius: 50px;
  color: #0a2f44;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 15px 30px rgba(255, 153, 51, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 2;
  border: 2px solid white;
}

.isms-work-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.isms-work-btn:hover::before {
  left: 100%;
}

.isms-work-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 153, 51, 0.3);
  color: #0a2f44;
}

.isms-work-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.isms-work-btn:hover i {
  transform: translateX(5px) rotate(360deg);
}

/* Responsive */
@media (max-width: 1200px) {
  .isms-work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .isms-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .isms-work-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .isms-work-section {
    padding: 60px 0;
  }

  .isms-work-title {
    font-size: 32px;
  }

  .isms-work-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .isms-work-card {
    padding: 20px;
  }

  .isms-work-btn-wrapper::before,
  .isms-work-btn-wrapper::after {
    display: none;
  }

  .isms-work-btn {
    padding: 12px 35px;
    font-size: 14px;
  }
}

/* ===== WHY CHOOSE US SECTION ===== */
.isms-choose-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0a2f44 0%, #124b6e 100%);
  overflow: hidden;
}

/* Background Pattern */
.isms-choose-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 153, 51, 0.1) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(19, 136, 8, 0.1) 0%,
      transparent 30%
    );
  z-index: 0;
}

/* Animated Lines */
.isms-choose-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.02) 20px,
    rgba(255, 255, 255, 0.02) 40px
  );
  pointer-events: none;
}

.isms-choose-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.isms-choose-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.isms-choose-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffb800;
  margin-bottom: 20px;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 184, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.isms-choose-tag i {
  color: #ff9933;
  font-size: 18px;
}

.isms-choose-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.isms-choose-title span {
  display: block;
}

.isms-title-orange {
  color: #ff9933;
  position: relative;
  display: inline-block;
}

.isms-title-orange::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff9933, #ffb800, transparent);
  border-radius: 3px;
}

.isms-title-white {
  color: white;
}

.isms-choose-desc {
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== CARDS/STEPS GRID ===== */
.isms-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
  position: relative;
}

/* Connecting Lines Between Cards */
.isms-choose-grid::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 153, 51, 0.5),
    rgba(255, 184, 0, 0.5),
    rgba(19, 136, 8, 0.5),
    transparent
  );
  z-index: 1;
  pointer-events: none;
}

/* Individual Card */
.isms-choose-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: 30px;
  padding: 40px 25px 30px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 2;
  cursor: pointer;
}

.isms-choose-card:hover {
  transform: translateY(-15px);
  border-color: #ffb800;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

/* Card Number - Step Indicator */
.isms-card-number {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 100px;
  font-weight: 800;
  color: rgba(255, 153, 51, 0.2);
  line-height: 1;
  transition: all 0.4s ease;
  z-index: -1;
}

.isms-choose-card:hover .isms-card-number {
  transform: scale(1.2);
  color: rgba(255, 184, 0, 0.3);
  top: -30px;
}

/* Card Icon */
.isms-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.2),
    rgba(19, 136, 8, 0.2)
  );
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 40px;
  color: #ffb800;
  transition: all 0.4s ease;
  position: relative;
  border: 2px dashed rgba(255, 184, 0, 0.3);
}

.isms-choose-card:hover .isms-card-icon {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  color: #0a2f44;
  transform: scale(1.1) rotate(5deg);
  border-color: transparent;
  box-shadow: 0 20px 30px rgba(255, 153, 51, 0.3);
}

/* Card Title */
.isms-card-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 15px;
}

.isms-card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ff9933, #ffb800);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.isms-choose-card:hover .isms-card-title::after {
  width: 80px;
}

/* Card Description */
.isms-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.isms-choose-card:hover .isms-card-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* Card Features List */
.isms-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.isms-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.isms-card-features li i {
  color: #ff9933;
  font-size: 12px;
  transition: all 0.3s ease;
}

.isms-choose-card:hover .isms-card-features li {
  color: rgba(255, 255, 255, 0.9);
  transform: translateX(5px);
}

.isms-choose-card:hover .isms-card-features li i {
  color: #ffb800;
  transform: scale(1.2);
}

/* Corner Decoration */
.isms-card-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(255, 153, 51, 0.2) 50%
  );
  border-radius: 0 0 30px 0;
  transition: all 0.3s ease;
}

.isms-choose-card:hover .isms-card-corner {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, transparent 50%, #ff9933 50%);
}

/* ===== BOTTOM BUTTON ===== */
.isms-choose-footer {
  text-align: center;
  margin-top: 70px;
  position: relative;
}

.isms-choose-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 50px;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  border: none;
  border-radius: 60px;
  color: #0a2f44;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid white;
}

.isms-choose-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transition: left 0.5s ease;
}

.isms-choose-btn:hover::before {
  left: 100%;
}

.isms-choose-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
  color: #0a2f44;
  background: linear-gradient(135deg, #ffb800, #ff9933);
}

.isms-choose-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.isms-choose-btn:hover i {
  transform: translateX(5px) rotate(360deg);
}

/* Responsive */
@media (max-width: 1200px) {
  .isms-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .isms-choose-grid::before {
    display: none;
  }

  .isms-choose-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .isms-choose-section {
    padding: 60px 0;
  }

  .isms-choose-title {
    font-size: 36px;
  }

  .isms-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .isms-choose-card {
    padding: 35px 25px 25px;
  }

  .isms-card-title {
    font-size: 20px;
  }

  .isms-card-number {
    font-size: 80px;
  }

  .isms-choose-btn {
    padding: 15px 40px;
    font-size: 14px;
  }
}
/* ===== HOW IT WORKS SECTION ===== */
.isms-how-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  overflow: hidden;
}

/* Animated Background Elements */
.isms-how-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 153, 51, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: ismsFloatBg 15s ease-in-out infinite;
}

.isms-how-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(19, 136, 8, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: ismsFloatBg 18s ease-in-out infinite reverse;
}

@keyframes ismsFloatBg {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, 30px) scale(1.1);
  }
}

.isms-how-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.isms-how-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.isms-how-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff9933;
  margin-bottom: 20px;
  padding: 10px 30px;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  animation: ismsPulseTag 2s ease-in-out infinite;
}

@keyframes ismsPulseTag {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 153, 51, 0.3);
  }
  50% {
    box-shadow: 0 0 20px 5px rgba(255, 153, 51, 0.2);
  }
}

.isms-how-tag i {
  color: #138808;
  animation: ismsRotate 4s linear infinite;
}

@keyframes ismsRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.isms-how-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0a2f44;
}

.isms-how-title span {
  display: block;
}

.isms-title-orange {
  color: #ff9933;
  position: relative;
  display: inline-block;
  animation: ismsTitleGlow 3s ease-in-out infinite;
}

@keyframes ismsTitleGlow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(255, 153, 51, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 153, 51, 0.6);
  }
}

.isms-title-green {
  color: #138808;
}

.isms-how-desc {
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  animation: ismsFadeInUp 1s ease;
}

/* ===== STEPS GRID ===== */
.isms-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
  position: relative;
}

/* Connecting Line Animation */
.isms-steps-grid::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 15%;
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, #ff9933, #ffb800, #138808, #ff9933);
  background-size: 300% 100%;
  animation: ismsGradientMove 5s linear infinite;
  z-index: 1;
  border-radius: 3px;
}

@keyframes ismsGradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

/* Step Card */
.isms-step-card {
  background: white;
  border-radius: 30px;
  padding: 40px 25px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  z-index: 2;
  cursor: pointer;
  border: 1px solid rgba(255, 153, 51, 0.1);
  animation: ismsCardAppear 0.6s ease backwards;
}

.isms-step-card:nth-child(1) {
  animation-delay: 0.1s;
}
.isms-step-card:nth-child(2) {
  animation-delay: 0.3s;
}
.isms-step-card:nth-child(3) {
  animation-delay: 0.5s;
}
.isms-step-card:nth-child(4) {
  animation-delay: 0.7s;
}

@keyframes ismsCardAppear {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.isms-step-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 40px 60px rgba(255, 153, 51, 0.2);
  border-color: #ff9933;
}

/* Step Number with Animation */
.isms-step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  font-weight: 800;
  color: rgba(255, 153, 51, 0.1);
  line-height: 1;
  transition: all 0.5s ease;
  animation: ismsNumberPulse 3s ease-in-out infinite;
}

@keyframes ismsNumberPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }
}

.isms-step-card:hover .isms-step-number {
  color: rgba(255, 153, 51, 0.3);
  transform: scale(1.2) rotate(5deg);
  animation: none;
}

/* Step Icon */
.isms-step-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.1),
    rgba(19, 136, 8, 0.1)
  );
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 48px;
  color: #ff9933;
  transition: all 0.5s ease;
  position: relative;
  border: 2px dashed rgba(255, 153, 51, 0.3);
  animation: ismsIconFloat 4s ease-in-out infinite;
}

@keyframes ismsIconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.isms-step-card:hover .isms-step-icon {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  color: white;
  transform: scale(1.1) rotate(360deg);
  border-color: transparent;
  box-shadow: 0 20px 30px rgba(255, 153, 51, 0.3);
  animation: none;
}

/* Step Title */
.isms-step-title {
  font-size: 22px;
  font-weight: 700;
  color: #0a2f44;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
  transition: all 0.3s ease;
}

.isms-step-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ff9933, #138808);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.isms-step-card:hover .isms-step-title {
  color: #ff9933;
}

.isms-step-card:hover .isms-step-title::after {
  width: 80px;
}

/* Step Description */
.isms-step-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  text-align: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.isms-step-card:hover .isms-step-desc {
  color: #333;
}

/* Step Duration Badge */
.isms-step-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #ff9933;
  background: rgba(255, 153, 51, 0.1);
  padding: 6px 15px;
  border-radius: 30px;
  width: fit-content;
  margin: 0 auto;
  transition: all 0.3s ease;
  animation: ismsBadgePulse 2s ease-in-out infinite;
}

@keyframes ismsBadgePulse {
  0%,
  100% {
    background: rgba(255, 153, 51, 0.1);
  }
  50% {
    background: rgba(255, 153, 51, 0.2);
  }
}

.isms-step-card:hover .isms-step-badge {
  background: #ff9933;
  color: white;
  animation: none;
}

.isms-step-badge i {
  font-size: 12px;
}

/* Hover Ripple Effect */
.isms-step-card .isms-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 153, 51, 0.3), transparent);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
  z-index: -1;
}

.isms-step-card:hover .isms-ripple {
  width: 300px;
  height: 300px;
}

/* Bottom Button */
.isms-how-footer {
  text-align: center;
  margin-top: 70px;
  position: relative;
}

.isms-how-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 50px;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  border: none;
  border-radius: 60px;
  color: #0a2f44;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(255, 153, 51, 0.3);
  position: relative;
  overflow: hidden;
  animation: ismsBtnPulse 2s ease-in-out infinite;
}

@keyframes ismsBtnPulse {
  0%,
  100% {
    box-shadow: 0 20px 40px rgba(255, 153, 51, 0.3);
  }
  50% {
    box-shadow: 0 25px 50px rgba(255, 153, 51, 0.5);
  }
}

.isms-how-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transition: left 0.5s ease;
}

.isms-how-btn:hover::before {
  left: 100%;
}

.isms-how-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 30px 50px rgba(255, 153, 51, 0.4);
  color: #0a2f44;
  animation: none;
}

.isms-how-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.isms-how-btn:hover i {
  transform: translateX(8px) rotate(360deg);
}

/* Responsive */
@media (max-width: 1200px) {
  .isms-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .isms-steps-grid::before {
    display: none;
  }

  .isms-how-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .isms-how-section {
    padding: 60px 0;
  }

  .isms-how-title {
    font-size: 36px;
  }

  .isms-steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .isms-step-card {
    padding: 35px 20px 25px;
  }

  .isms-step-icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }

  .isms-step-title {
    font-size: 20px;
  }

  .isms-how-btn {
    padding: 15px 40px;
    font-size: 14px;
  }
}

/* ===== JOB OPENING SECTION ===== */
.isms-job-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0a2f44 0%, #124b6e 100%);
  overflow: hidden;
}

/* Background Pattern */
.isms-job-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(255, 153, 51, 0.1) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(19, 136, 8, 0.1) 0%,
      transparent 30%
    );
  z-index: 0;
}

/* Animated Lines */
.isms-job-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(255, 255, 255, 0.02) 30px,
    rgba(255, 255, 255, 0.02) 60px
  );
  pointer-events: none;
}

.isms-job-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.isms-job-header {
  text-align: center;
  margin-bottom: 60px;
}

.isms-job-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffb800;
  margin-bottom: 20px;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 184, 0, 0.3);
}

.isms-job-tag i {
  color: #ff9933;
  font-size: 18px;
}

.isms-job-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

.isms-job-title span {
  display: block;
}

.isms-title-orange {
  color: #ff9933;
}

.isms-title-white {
  color: white;
}

.isms-job-desc {
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== JOB CARDS GRID ===== */
.isms-job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

/* Job Card */
.isms-job-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: 25px;
  padding: 30px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  cursor: pointer;
}

.isms-job-card:hover {
  transform: translateY(-10px);
  border-color: #ffb800;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

/* Card Shine Effect */
.isms-job-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.isms-job-card:hover::before {
  left: 100%;
}

/* Job Badge - New/Hot */
.isms-job-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 30px;
  z-index: 2;
}

.isms-badge-new {
  background: #ff9933;
  color: #0a2f44;
}

.isms-badge-hot {
  background: #138808;
  color: white;
}

.isms-badge-urgent {
  background: #ffb800;
  color: #0a2f44;
}

/* Job Icon */
.isms-job-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.2),
    rgba(19, 136, 8, 0.2)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 32px;
  color: #ffb800;
  transition: all 0.4s ease;
  border: 2px dashed rgba(255, 184, 0, 0.3);
}

.isms-job-card:hover .isms-job-icon {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  color: #0a2f44;
  transform: scale(1.1) rotate(5deg);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(255, 153, 51, 0.3);
}

/* Job Title */
.isms-job-position {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.isms-job-card:hover .isms-job-position {
  color: #ffb800;
}

/* Job Location */
.isms-job-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.isms-job-location i {
  color: #ff9933;
  font-size: 14px;
}

/* Job Type & Salary Row */
.isms-job-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.isms-job-type {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 153, 51, 0.2);
  padding: 5px 12px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.isms-job-salary {
  font-size: 13px;
  color: #ffb800;
  background: rgba(255, 184, 0, 0.1);
  padding: 5px 12px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Job Description */
.isms-job-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Requirements List */
.isms-job-requirements {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.isms-job-requirements li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.isms-job-requirements li i {
  color: #138808;
  font-size: 12px;
}

/* Apply Button */
.isms-job-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  border: none;
  border-radius: 50px;
  color: #0a2f44;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.isms-job-apply::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.isms-job-apply:hover::before {
  left: 100%;
}

.isms-job-apply:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 153, 51, 0.3);
  color: #0a2f44;
  background: linear-gradient(135deg, #ffb800, #ff9933);
}

.isms-job-apply i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.isms-job-apply:hover i {
  transform: translateX(5px);
}

/* View All Button */
.isms-job-footer {
  text-align: center;
  margin-top: 60px;
}

.isms-job-viewall {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 50px;
  background: transparent;
  border: 2px solid #ffb800;
  border-radius: 60px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.isms-job-viewall::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  transition: width 0.4s ease;
  z-index: -1;
}

.isms-job-viewall:hover::before {
  width: 100%;
}

.isms-job-viewall:hover {
  border-color: transparent;
  color: #0a2f44;
}

.isms-job-viewall i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.isms-job-viewall:hover i {
  transform: translateX(8px);
}

/* Responsive */
@media (max-width: 1200px) {
  .isms-job-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .isms-job-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .isms-job-section {
    padding: 60px 0;
  }

  .isms-job-title {
    font-size: 36px;
  }

  .isms-job-grid {
    grid-template-columns: 1fr;
  }

  .isms-job-card {
    padding: 25px;
  }

  .isms-job-position {
    font-size: 20px;
  }

  .isms-job-viewall {
    padding: 15px 40px;
    font-size: 14px;
  }
}

/* ===== TESTIMONIALS SECTION - UNIQUE CLASSES ===== */
.isms-testi-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  overflow: hidden;
}

/* Background Decorations */
.isms-testi-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 153, 51, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.isms-testi-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(19, 136, 8, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.isms-testi-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.isms-testi-header {
  text-align: center;
  margin-bottom: 60px;
}

.isms-testi-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff9933;
  margin-bottom: 20px;
  padding: 10px 30px;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 40px;
}

.isms-testi-tag i {
  color: #138808;
  font-size: 18px;
}

.isms-testi-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0a2f44;
}

.isms-testi-title span {
  display: block;
}

.isms-title-orange {
  color: #ff9933;
}

.isms-title-green {
  color: #138808;
}

.isms-testi-desc {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

/* ===== SWIPER SLIDER CUSTOMIZATION ===== */
.isms-testi-swiper {
  padding: 20px 10px 60px;
  margin: 0 -10px;
}

.isms-testi-swiper .swiper-wrapper {
  padding: 20px 0;
}

/* Testimonial Card */
.isms-testi-card {
  background: white;
  border-radius: 30px;
  padding: 35px 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 153, 51, 0.1);
  height: 100%;
  cursor: pointer;
}

.isms-testi-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(255, 153, 51, 0.15);
  border-color: #ff9933;
}

/* Card Gradient Border */
.isms-testi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff9933, #ffb800, #138808);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.isms-testi-card:hover::before {
  opacity: 1;
}

/* Quote Icon */
.isms-testi-quote {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 60px;
  color: rgba(255, 153, 51, 0.1);
  transition: all 0.4s ease;
}

.isms-testi-card:hover .isms-testi-quote {
  color: rgba(255, 153, 51, 0.2);
  transform: scale(1.2);
}

/* Client Image */
.isms-testi-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid transparent;
  background: linear-gradient(135deg, #ff9933, #138808);
  padding: 3px;
  transition: all 0.4s ease;
}

.isms-testi-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
  transition: all 0.4s ease;
}

.isms-testi-card:hover .isms-testi-image {
  transform: scale(1.05);
  border-color: #ff9933;
}

/* Rating Stars */
.isms-testi-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 15px;
}

.isms-testi-rating i {
  color: #ffb800;
  font-size: 16px;
  transition: all 0.3s ease;
}

.isms-testi-card:hover .isms-testi-rating i {
  transform: scale(1.2);
  color: #ff9933;
}

/* Client Name */
.isms-testi-name {
  font-size: 20px;
  font-weight: 700;
  color: #0a2f44;
  text-align: center;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.isms-testi-card:hover .isms-testi-name {
  color: #ff9933;
}

/* Client Position */
.isms-testi-position {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px dashed rgba(255, 153, 51, 0.2);
}

/* Testimonial Text */
.isms-testi-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  text-align: center;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.isms-testi-text::before {
  content: '"';
  font-size: 40px;
  color: #ff9933;
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -5px;
}

/* Client Location */
.isms-testi-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #138808;
  font-weight: 500;
}

.isms-testi-location i {
  color: #ff9933;
}

/* ===== CENTERED NAVIGATION BUTTONS (NO DOTS) ===== */
.isms-swiper-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

.isms-swiper-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  border: 2px solid #ff9933;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9933;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(255, 153, 51, 0.1);
}

.isms-swiper-btn:hover {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  border-color: transparent;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(255, 153, 51, 0.3);
}

/* Hide Swiper Pagination completely */
.swiper-pagination {
  display: none !important;
}

/* Responsive */
@media (max-width: 1200px) {
  .isms-testi-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .isms-testi-section {
    padding: 60px 0;
  }

  .isms-testi-title {
    font-size: 36px;
  }

  .isms-testi-card {
    padding: 25px 20px;
  }

  .isms-testi-image {
    width: 80px;
    height: 80px;
  }

  .isms-testi-name {
    font-size: 18px;
  }

  .isms-swiper-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .isms-swiper-nav {
    gap: 20px;
  }
}

/* ===== NEWS & ENQUIRY SECTION - UNIQUE CLASSES ===== */
.isms-news-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  overflow: hidden;
}

/* Background Decoration */
.isms-news-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 153, 51, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.isms-news-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(19, 136, 8, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.isms-news-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.isms-news-header {
  text-align: center;
  margin-bottom: 60px;
}

.isms-news-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff9933;
  margin-bottom: 20px;
  padding: 10px 30px;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 40px;
}

.isms-news-tag i {
  color: #138808;
  font-size: 18px;
}

.isms-news-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #0a2f44;
}

.isms-news-title span {
  color: #138808;
}

/* ===== TWO COLUMN LAYOUT - SAME HEIGHT ===== */
.isms-news-row {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* Left Column - News */
.isms-news-left {
  flex: 1;
  min-width: 350px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 153, 51, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 650px; /* Increased height */
  display: flex;
  flex-direction: column;
}

.isms-news-left:hover {
  box-shadow: 0 30px 60px rgba(255, 153, 51, 0.15);
  border-color: #ff9933;
  transform: translateY(-5px);
}

/* Right Column - Enquiry Form */
.isms-news-right {
  flex: 1;
  min-width: 350px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 153, 51, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 650px; /* Increased height - same for both */
  display: flex;
  flex-direction: column;
}

.isms-news-right:hover {
  box-shadow: 0 30px 60px rgba(255, 153, 51, 0.15);
  border-color: #ff9933;
  transform: translateY(-5px);
}

/* ===== LEFT SIDE - NEWS SECTION ===== */
.isms-news-header-box {
  padding: 20px 25px; /* Reduced padding */
  background: linear-gradient(135deg, #0a2f44, #124b6e);
  position: relative;
  overflow: hidden;
  flex-shrink: 0; /* Prevent shrinking */
}

.isms-news-header-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
}

.isms-news-header-box h3 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.isms-news-header-box h3 i {
  color: #ffb800;
  font-size: 28px;
}

.isms-news-header-box p {
  color: rgba(255, 255, 255, 0.7);
  margin: 5px 0 0 40px;
  font-size: 14px;
}

/* News Marquee Container */
.isms-news-marquee-container {
  flex: 1;
  padding: 15px;
  background: #f9f9f9;
  overflow: hidden;
  position: relative;
  min-height: 0; /* Important for flex child */
}

/* Custom Marquee - Up Scrolling */
.isms-news-marquee {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.isms-news-marquee-content {
  animation: ismsScrollUp 25s linear infinite;
}

.isms-news-marquee:hover .isms-news-marquee-content {
  animation-play-state: paused;
}

@keyframes ismsScrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* News Item */
.isms-news-item {
  background: white;
  border-radius: 15px;
  padding: 15px; /* Reduced padding */
  margin-bottom: 12px; /* Reduced margin */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border-left: 4px solid #ff9933;
  transition: all 0.3s ease;
  cursor: pointer;
}

.isms-news-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(255, 153, 51, 0.1);
  border-left-color: #138808;
}

.isms-news-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px; /* Smaller font */
  color: #ff9933;
  margin-bottom: 5px;
}

.isms-news-date i {
  font-size: 11px;
}

.isms-news-item h4 {
  font-size: 15px; /* Smaller font */
  font-weight: 600;
  color: #0a2f44;
  margin-bottom: 5px;
  line-height: 1.3;
}

.isms-news-item p {
  font-size: 12px; /* Smaller font */
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.isms-news-tag {
  display: inline-block;
  font-size: 10px; /* Smaller font */
  padding: 2px 8px;
  background: rgba(255, 153, 51, 0.1);
  color: #ff9933;
  border-radius: 20px;
  margin-top: 5px;
}

/* News Footer */
.isms-news-footer {
  padding: 12px 25px; /* Reduced padding */
  background: #f0f0f0;
  border-top: 1px solid rgba(255, 153, 51, 0.2);
  text-align: right;
  flex-shrink: 0; /* Prevent shrinking */
}

.isms-news-viewall {
  color: #0a2f44;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.isms-news-viewall:hover {
  color: #ff9933;
  gap: 12px;
}

/* ===== RIGHT SIDE - ENQUIRY FORM ===== */
.isms-form-header {
  padding: 20px 25px; /* Reduced padding */
  background: linear-gradient(135deg, #ff9933, #ffb800);
  position: relative;
  overflow: hidden;
  flex-shrink: 0; /* Prevent shrinking */
}

.isms-form-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.1) 10px,
    rgba(255, 255, 255, 0.1) 20px
  );
}

.isms-form-header h3 {
  color: #0a2f44;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.isms-form-header h3 i {
  color: white;
  font-size: 28px;
}

.isms-form-header p {
  color: rgba(10, 47, 68, 0.8);
  margin: 5px 0 0 40px;
  font-size: 14px;
  font-weight: 500;
}

/* Form Container */
.isms-form-container {
  flex: 1;
  padding: 20px 25px; /* Reduced padding */
  background: white;
  overflow-y: auto; /* Add scroll if needed */
  min-height: 0; /* Important for flex child */
}

/* Custom scrollbar for form */
.isms-form-container::-webkit-scrollbar {
  width: 5px;
}

.isms-form-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.isms-form-container::-webkit-scrollbar-thumb {
  background: #ff9933;
  border-radius: 10px;
}

.isms-form-container::-webkit-scrollbar-thumb:hover {
  background: #138808;
}

/* Form Group */
.isms-form-group {
  margin-bottom: 12px; /* Reduced margin */
  position: relative;
}

.isms-form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px; /* Smaller font */
  font-weight: 500;
  color: #0a2f44;
  margin-bottom: 4px; /* Reduced margin */
}

.isms-form-label i {
  color: #ff9933;
  font-size: 13px;
  width: 18px;
}

/* Form Inputs */
.isms-form-control {
  width: 100%;
  padding: 10px 15px; /* Reduced padding */
  font-size: 13px; /* Smaller font */
  color: #333;
  background: #f8f9fa;
  border: 2px solid #eef2f6;
  border-radius: 12px; /* Slightly smaller radius */
  transition: all 0.3s ease;
}

.isms-form-control:focus {
  outline: none;
  border-color: #ff9933;
  background: white;
  box-shadow: 0 5px 20px rgba(255, 153, 51, 0.1);
}

.isms-form-control::placeholder {
  color: #aaa;
  font-size: 12px;
}

/* Select Input */
select.isms-form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FF9933' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 14px;
}

/* Textarea */
textarea.isms-form-control {
  resize: none;
  height: 70px; /* Reduced height */
}

/* Submit Button */
.isms-form-submit {
  width: 100%;
  padding: 12px 25px; /* Reduced padding */
  background: linear-gradient(135deg, #0a2f44, #124b6e);
  border: none;
  border-radius: 40px; /* Slightly smaller radius */
  color: white;
  font-weight: 600;
  font-size: 15px; /* Smaller font */
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 5px; /* Reduced margin */
}

.isms-form-submit::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 ease;
}

.isms-form-submit:hover::before {
  left: 100%;
}

.isms-form-submit:hover {
  background: linear-gradient(135deg, #124b6e, #0a2f44);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(10, 47, 68, 0.3);
}

.isms-form-submit i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.isms-form-submit:hover i {
  transform: translateX(5px);
}

/* Form Footer */
.isms-form-footer {
  padding: 12px 25px; /* Reduced padding */
  background: #f8f9fa;
  border-top: 1px solid rgba(255, 153, 51, 0.2);
  text-align: center;
  flex-shrink: 0; /* Prevent shrinking */
}

.isms-form-footer p {
  margin: 0;
  font-size: 12px; /* Smaller font */
  color: #666;
}

.isms-form-footer i {
  color: #ff9933;
  margin: 0 3px;
}

/* Responsive */
@media (max-width: 992px) {
  .isms-news-left,
  .isms-news-right {
    height: auto;
    min-height: 600px;
  }

  .isms-news-title {
    font-size: 42px;
  }

  .isms-form-container {
    overflow-y: visible;
  }
}

@media (max-width: 768px) {
  .isms-news-section {
    padding: 60px 0;
  }

  .isms-news-title {
    font-size: 36px;
  }

  .isms-news-left,
  .isms-news-right {
    min-width: 100%;
    height: auto;
  }

  .isms-news-header-box h3,
  .isms-form-header h3 {
    font-size: 22px;
  }

  .isms-form-container {
    padding: 20px;
  }
}

/* ===== FOOTER SECTION - TRICOLOR + GLASSMORPHISM ===== */
.isms-footer-glass {
  position: relative;
  /* min-height: 500px; */
  color: white;
  overflow: hidden;
  isolation: isolate;
}

/* ===== TRICOLOR BACKGROUND USING BEFORE/AFTER ===== */
.isms-footer-glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    125deg,
    #ff9933 0%,
    #ff9933 20%,
    #ffffff 20%,
    #ffffff 60%,
    #138808 60%,
    #138808 100%
  ); */
  /* background: black; */
  background: linear-gradient(135deg, #0a2f44 0%, #083244 100%);

  opacity: 0.9;
  z-index: -2;
  animation: ismsGradientShift 15s ease-in-out infinite alternate;
}

.isms-footer-glass::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(10, 47, 68, 0.4) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(10, 47, 68, 0.4) 0%,
      transparent 50%
    );
  z-index: -1;
  backdrop-filter: blur(2px);
}

@keyframes ismsGradientShift {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.05) rotate(1deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* ===== ANIMATED SHAPES ===== */
.isms-shape-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

/* Floating Circles */
.isms-shape-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: ismsFloat 20s infinite ease-in-out;
}

.isms-shape-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  background: rgba(255, 153, 51, 0.2);
  animation-duration: 18s;
}

.isms-shape-circle:nth-child(2) {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -100px;
  background: rgba(19, 136, 8, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
  animation-duration: 22s;
  animation-delay: -3s;
}

.isms-shape-circle:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 15%;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 184, 0, 0.3);
  animation-duration: 15s;
  animation-delay: -5s;
}

/* Floating Squares */
.isms-shape-square {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  animation: ismsRotate 25s infinite linear;
}

.isms-shape-square:nth-child(4) {
  width: 150px;
  height: 150px;
  top: 15%;
  left: 10%;
  background: rgba(255, 153, 51, 0.15);
  animation-duration: 30s;
}

.isms-shape-square:nth-child(5) {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 20%;
  background: rgba(19, 136, 8, 0.15);
  animation-duration: 20s;
  animation-delay: -5s;
}

/* Floating Triangles */
.isms-shape-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  opacity: 0.3;
  animation: ismsFloatTriangle 18s infinite alternate;
}

.isms-shape-triangle:nth-child(6) {
  top: 60%;
  left: 5%;
  transform: rotate(15deg);
  border-bottom-color: rgba(255, 153, 51, 0.2);
  animation-duration: 16s;
}

.isms-shape-triangle:nth-child(7) {
  top: 10%;
  right: 5%;
  transform: rotate(-10deg);
  border-bottom-color: rgba(19, 136, 8, 0.2);
  animation-duration: 20s;
  animation-delay: -2s;
}

/* Animations */
@keyframes ismsFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(40px, 20px) scale(1.1);
  }
  50% {
    transform: translate(60px, -30px) scale(0.9);
  }
  75% {
    transform: translate(-20px, 40px) scale(1.05);
  }
}

@keyframes ismsRotate {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(360deg) scale(1.2);
  }
}

@keyframes ismsFloatTriangle {
  0% {
    transform: translateY(0) rotate(15deg) scale(1);
  }
  100% {
    transform: translateY(-50px) rotate(45deg) scale(1.2);
  }
}

/* Container */
.isms-footer-glass-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 20px 30px;
  position: relative;
  z-index: 10;
}

/* ===== MAIN FOOTER CONTENT - GLASSMORPHISM ===== */
.isms-footer-glass-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 50px;
}

/* Glass Card Effect */
.isms-footer-glass-col {
  background: rgba(10, 47, 68, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 30px 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.isms-footer-glass-col:hover {
  background: rgba(10, 47, 68, 0.35);
  border-color: rgba(255, 184, 0, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

/* Column 1 - Company Info with Logo Image */
.isms-footer-glass-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.isms-footer-glass-logo-img {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 184, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s ease;
}

.isms-footer-glass-logo-img:hover {
  transform: scale(1.08) rotate(-3deg);
  border-color: #ff9933;
}

.isms-footer-glass-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.isms-footer-glass-logo-text h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: white;
  margin-bottom: 5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.isms-footer-glass-logo-text span {
  color: #ffb800;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  background: rgba(10, 47, 68, 0.5);
  backdrop-filter: blur(5px);
  padding: 4px 12px;
  border-radius: 30px;
  border: 1px solid rgba(255, 184, 0, 0.3);
}

.isms-footer-glass-about {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 25px;
  padding-right: 10px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Social Icons - Glass Design */
.isms-footer-glass-social {
  display: flex;
  gap: 12px;
}

.isms-footer-glass-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb800;
  font-size: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
}

.isms-footer-glass-social a:hover {
  background: #ff9933;
  color: #0a2f44;
  transform: translateY(-8px) rotate(360deg);
  border-color: transparent;
  box-shadow: 0 15px 30px rgba(255, 153, 51, 0.4);
}

/* Column Headings - Glass Design */
.isms-footer-glass-heading {
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 25px;
  padding-bottom: 12px;
  position: relative;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.isms-footer-glass-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff9933, #ffb800, #138808);
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(255, 153, 51, 0.5);
}

/* Footer Links - Glass Design */
.isms-footer-glass-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.isms-footer-glass-links li {
  margin-bottom: 14px;
}

.isms-footer-glass-links a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.isms-footer-glass-links a i {
  color: #ff9933;
  font-size: 14px;
  transition: all 0.3s ease;
}

.isms-footer-glass-links a:hover {
  color: #ffb800;
  transform: translateX(12px);
  text-shadow: 0 0 15px rgba(255, 184, 0, 0.5);
}

.isms-footer-glass-links a:hover i {
  color: #138808;
  transform: scale(1.3) rotate(360deg);
}

/* Contact Info - Glass Design */
.isms-footer-glass-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.isms-footer-glass-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  line-height: 1.7;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}

.isms-footer-glass-contact li i {
  width: 36px;
  height: 36px;
  background: rgba(255, 153, 51, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9933;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 153, 51, 0.3);
}

.isms-footer-glass-contact li:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.isms-footer-glass-contact li:hover i {
  background: #ff9933;
  color: #0a2f44;
  transform: scale(1.1) rotate(360deg);
  border-color: transparent;
}

/* Registration Badges - Glass Design */
.isms-footer-glass-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.isms-footer-glass-badge {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #ffb800;
  border: 1px solid rgba(255, 184, 0, 0.25);
  transition: all 0.4s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.isms-footer-glass-badge:hover {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  color: #0a2f44;
  transform: translateY(-5px) scale(1.05);
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(255, 153, 51, 0.4);
}

/* ===== FOOTER BOTTOM - GLASS DESIGN ===== */
.isms-footer-glass-bottom {
  padding: 30px 25px;
  background: rgba(10, 47, 68, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.isms-footer-glass-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.isms-footer-glass-copyright i {
  color: #ff9933;
  margin: 0 3px;
  animation: ismsPulse 2s infinite;
}

@keyframes ismsPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
    color: #ffb800;
  }
}

.isms-footer-glass-copyright a {
  color: #ffb800;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.isms-footer-glass-copyright a:hover {
  color: white;
  text-decoration: underline;
  text-shadow: 0 0 15px rgba(255, 184, 0, 0.5);
}

/* Design by NVW India - Glass Link */
.isms-footer-glass-design {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: 40px;
  border: 1px solid rgba(255, 184, 0, 0.3);
  transition: all 0.4s ease;
  text-decoration: none;
}

.isms-footer-glass-design i {
  color: #ff9933;
  font-size: 16px;
  animation: ismsHeartBeat 1.5s ease-in-out infinite;
}

@keyframes ismsHeartBeat {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
    color: #ffb800;
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.2);
    color: #138808;
  }
}

.isms-footer-glass-design span {
  color: #ffb800;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.isms-footer-glass-design:hover {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  transform: translateY(-5px) scale(1.02);
  border-color: transparent;
  box-shadow: 0 15px 35px rgba(255, 153, 51, 0.4);
}

.isms-footer-glass-design:hover i {
  color: #0a2f44;
  animation: none;
  transform: scale(1.2);
}

.isms-footer-glass-design:hover span {
  color: #0a2f44;
}

.isms-footer-glass-links-bottom {
  display: flex;
  gap: 25px;
}

.isms-footer-glass-links-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.isms-footer-glass-links-bottom a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9933, #ffb800);
  transition: width 0.3s ease;
}

.isms-footer-glass-links-bottom a:hover::after {
  width: 100%;
}

.isms-footer-glass-links-bottom a:hover {
  color: #ffb800;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
  .isms-footer-glass-main {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .isms-footer-glass-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .isms-shape-circle:nth-child(3) {
    display: none;
  }
}

@media (max-width: 768px) {
  .isms-footer-glass-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .isms-footer-glass-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    border-radius: 30px;
  }

  .isms-footer-glass-links-bottom {
    justify-content: center;
    flex-wrap: wrap;
  }

  .isms-footer-glass-logo {
    justify-content: center;
  }

  .isms-footer-glass-about {
    text-align: center;
    padding-right: 0;
  }

  .isms-footer-glass-social {
    justify-content: center;
  }

  .isms-shape-square,
  .isms-shape-triangle {
    display: none;
  }
}
/* ===== QUICK HIGHLIGHTS SECTION ===== */
.isms-highlight-section {
  position: relative;
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  overflow: hidden;
}

.isms-highlight-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.isms-highlight-header {
  text-align: center;
  margin-bottom: 40px;
}

.isms-highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff9933;
  margin-bottom: 15px;
  padding: 8px 25px;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 40px;
}

.isms-highlight-tag i {
  color: #138808;
  font-size: 16px;
}

.isms-highlight-title {
  font-size: 36px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 10px;
}

.isms-highlight-title span {
  color: #138808;
}

.isms-highlight-desc {
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  color: #666;
}

/* ===== HIGHLIGHTS GRID ===== */
.isms-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

/* Highlight Card */
.isms-highlight-card {
  background: white;
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 153, 51, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 15px;
}

.isms-highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 153, 51, 0.15);
  border-color: #ff9933;
}

/* Card Icon */
.isms-highlight-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.1),
    rgba(19, 136, 8, 0.1)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ff9933;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.isms-highlight-card:hover .isms-highlight-icon {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  color: white;
  transform: scale(1.05) rotate(5deg);
}

/* Card Content */
.isms-highlight-content {
  flex: 1;
}

.isms-highlight-number {
  font-size: 12px;
  font-weight: 600;
  color: #ff9933;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.isms-highlight-number i {
  font-size: 10px;
  color: #138808;
}

.isms-highlight-text {
  font-size: 15px;
  font-weight: 600;
  color: #0a2f44;
  line-height: 1.4;
  margin-bottom: 5px;
}

.isms-highlight-small {
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.isms-highlight-small i {
  color: #138808;
  font-size: 10px;
}

/* Government Badge */
.isms-govt-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  background: rgba(255, 153, 51, 0.1);
  color: #ff9933;
  border-radius: 20px;
  border: 1px solid rgba(255, 153, 51, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
  .isms-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .isms-highlight-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .isms-highlight-section {
    padding: 40px 0 60px;
  }

  .isms-highlight-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .isms-highlight-title {
    font-size: 28px;
  }

  .isms-highlight-card {
    padding: 20px;
  }
}

/*================================OTHER PAGE STYLING START=====================================*/
/*===============================ABOUT US PAGE STYLING===========================================*/
/* ===== ABOUT PAGE UNIQUE CLASSES ===== */
.abt-page-wrapper {
  overflow-x: hidden;
}

/* ===== PREMIUM COVER SECTION ===== */
.abt-cover-premium {
  position: relative;
  min-height: 500px;
  background-image: url("../image/cover_img/cv1.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Premium Overlay with Gradient */
.abt-cover-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 47, 68, 0.97) 0%,
    rgba(255, 153, 51, 0.4) 50%,
    rgba(19, 136, 8, 0.3) 100%
  );
  z-index: 1;
}

/* Animated Particles */
.abt-cover-premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    );
  background-size:
    50px 50px,
    80px 80px;
  animation: abtParticlesMove 30s linear infinite;
  z-index: 2;
  opacity: 0.5;
}

@keyframes abtParticlesMove {
  0% {
    background-position:
      0 0,
      0 0;
  }
  100% {
    background-position:
      100px 100px,
      -100px -100px;
  }
}

/* Floating Shapes */
.abt-cover-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.abt-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 184, 0, 0.2);
  animation: abtShapeFloat 20s infinite ease-in-out;
}

.abt-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  background: rgba(255, 153, 51, 0.1);
  animation-duration: 25s;
}

.abt-shape:nth-child(2) {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -100px;
  background: rgba(19, 136, 8, 0.1);
  animation-duration: 30s;
  animation-delay: -5s;
}

.abt-shape:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 15%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 184, 0, 0.3);
  animation-duration: 18s;
  animation-delay: -2s;
}

.abt-shape:nth-child(4) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  background: rgba(255, 153, 51, 0.08);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-duration: 22s;
}

@keyframes abtShapeFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(30px, -30px) rotate(5deg) scale(1.1);
  }
  50% {
    transform: translate(-20px, 40px) rotate(-5deg) scale(0.9);
  }
  75% {
    transform: translate(40px, 20px) rotate(3deg) scale(1.05);
  }
}

.abt-cover-container {
  max-width: 1300px;
  margin: 20px auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
  width: 100%;
}

/* Premium Breadcrumb */
.abt-premium-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 12px 30px;
  border-radius: 60px;
  border: 1px solid rgba(255, 184, 0, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  animation: abtSlideDown 0.8s ease;
}

@keyframes abtSlideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.abt-premium-breadcrumb a {
  color: #ffb800;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.abt-premium-breadcrumb a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff9933;
  transition: width 0.3s ease;
}

.abt-premium-breadcrumb a:hover::after {
  width: 100%;
}

.abt-premium-breadcrumb i {
  color: #ff9933;
  font-size: 12px;
}

.abt-premium-breadcrumb span {
  color: white;
  font-size: 14px;
  font-weight: 600;
}

/* Premium Tagline */
.abt-premium-tagline {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffb800;
  margin-bottom: 25px;
  padding: 12px 30px;
  background: rgba(10, 47, 68, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 60px;
  border: 1px solid rgba(255, 184, 0, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  animation: abtSlideDown 0.8s ease 0.2s both;
}

.abt-premium-tagline i {
  color: #ff9933;
  font-size: 20px;
  animation: abtRotate 6s linear infinite;
}

.abt-premium-tagline .abt-star {
  color: #138808;
  animation: abtPulse 2s ease-in-out infinite;
}

@keyframes abtRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes abtPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Premium Heading */
.abt-premium-heading {
  font-size: 40px;
  font-weight: 800;
  color: white;
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  animation: abtSlideUp 0.8s ease 0.4s both;
}

@keyframes abtSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.abt-premium-heading span {
  color: #ff9933;
  position: relative;
  display: inline-block;
}

.abt-premium-heading span::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 20px;
  background: rgba(255, 153, 51, 0.2);
  border-radius: 10px;
  z-index: -1;
  animation: abtWidthExpand 1s ease 0.8s both;
}

@keyframes abtWidthExpand {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Premium Description */
.abt-premium-desc {
  max-width: 700px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  animation: abtSlideUp 0.8s ease 0.6s both;
}

/* Premium Stats Row */
.abt-premium-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  animation: abtSlideUp 0.8s ease 0.8s both;
}

.abt-stat-item {
  display: flex;
  flex-direction: column;
}

.abt-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #ffb800;
  line-height: 1;
  margin-bottom: 5px;
}

.abt-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Premium Scroll Button */
.abt-premium-scroll {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.4s ease;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 15px 35px;
  border-radius: 60px;
  border: 1px solid rgba(255, 184, 0, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  animation: abtSlideUp 0.8s ease 1s both;
  position: relative;
  overflow: hidden;
}

.abt-premium-scroll::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 ease;
}

.abt-premium-scroll:hover::before {
  left: 100%;
}

.abt-premium-scroll i {
  width: 45px;
  height: 45px;
  background: rgba(255, 153, 51, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb800;
  font-size: 20px;
  transition: all 0.4s ease;
  animation: abtBounceArrow 2s ease-in-out infinite;
}

@keyframes abtBounceArrow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.abt-premium-scroll:hover {
  background: #ff9933;
  border-color: transparent;
  color: #0a2f44;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 153, 51, 0.4);
}

.abt-premium-scroll:hover i {
  background: white;
  color: #ff9933;
  animation: none;
}

.abt-premium-scroll span {
  position: relative;
}

.abt-premium-scroll span::after {
  content: "→";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.abt-premium-scroll:hover span::after {
  opacity: 1;
  right: -30px;
}

/* ===== ABOUT CONTENT SECTION ===== */
.abt-content-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.abt-content-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.abt-content-row {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Left - Stylish Image */
.abt-image-col {
  flex: 1;
  min-width: 350px;
  position: relative;
}

.abt-image-stack {
  position: relative;
  height: 550px;
}

.abt-main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 380px;
  height: 480px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border: 5px solid white;
  z-index: 3;
}

.abt-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.abt-main-img:hover img {
  transform: scale(1.1);
}

.abt-second-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 380px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border: 5px solid white;
  z-index: 4;
  animation: abtFloat 6s ease-in-out infinite;
}

.abt-second-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abt-exp-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  padding: 25px;
  border-radius: 30px;
  color: #0a2f44;
  text-align: center;
  box-shadow: 0 20px 40px rgba(255, 153, 51, 0.4);
  z-index: 5;
  border: 4px solid white;
  animation: abtPulse 3s ease-in-out infinite;
}

@keyframes abtPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.abt-exp-years {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.abt-exp-text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

@keyframes abtFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Right - Content */
.abt-content-col {
  flex: 1;
  min-width: 350px;
}

.abt-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff9933;
  margin-bottom: 20px;
  padding: 10px 25px;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 40px;
}

.abt-subtitle i {
  color: #138808;
  font-size: 16px;
}

.abt-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #0a2f44;
}

.abt-title span {
  color: #138808;
  position: relative;
}

.abt-title span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(19, 136, 8, 0.2);
  border-radius: 4px;
  z-index: -1;
}

.abt-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
}

.abt-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.abt-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #333;
  background: white;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(255, 153, 51, 0.1);
  transition: all 0.3s ease;
}

.abt-feature-item:hover {
  transform: translateX(5px);
  border-color: #ff9933;
  box-shadow: 0 10px 25px rgba(255, 153, 51, 0.1);
}

.abt-feature-item i {
  width: 35px;
  height: 35px;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9933;
  font-size: 16px;
  transition: all 0.3s ease;
}

.abt-feature-item:hover i {
  background: #ff9933;
  color: white;
  transform: rotate(360deg);
}

.abt-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  border: none;
  border-radius: 50px;
  color: #0a2f44;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 153, 51, 0.2);
}

.abt-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(255, 153, 51, 0.3);
}

.abt-btn i {
  transition: transform 0.3s ease;
}

.abt-btn:hover i {
  transform: translateX(5px);
}

/* ===== MISSION VISION VALUES SECTION ===== */
.abt-mvv-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.abt-mvv-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.abt-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* White Cards */
.abt-mvv-card {
  background: white;
  border-radius: 30px;
  padding: 50px 30px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 153, 51, 0.1);
}

/* Card Hover Animation */
.abt-mvv-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(255, 153, 51, 0.2);
  border-color: #ff9933;
}

/* Card Number Background */
.abt-mvv-card::before {
  content: attr(data-number);
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 80px;
  font-weight: 800;
  color: rgba(255, 153, 51, 0.05);
  line-height: 1;
  transition: all 0.4s ease;
}

.abt-mvv-card:hover::before {
  transform: scale(1.2);
  color: rgba(255, 153, 51, 0.1);
}

/* Card Icon */
.abt-mvv-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.1),
    rgba(19, 136, 8, 0.1)
  );
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 48px;
  color: #ff9933;
  transition: all 0.5s ease;
  border: 2px dashed rgba(255, 153, 51, 0.3);
}

.abt-mvv-card:hover .abt-mvv-icon {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  color: white;
  transform: scale(1.1) rotate(10deg);
  border-color: transparent;
  box-shadow: 0 20px 30px rgba(255, 153, 51, 0.3);
}

/* Card Title */
.abt-mvv-title {
  font-size: 28px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.abt-mvv-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff9933, #138808);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.abt-mvv-card:hover .abt-mvv-title::after {
  width: 100px;
}

/* Card Description */
.abt-mvv-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

/* ===== MEET OUR TEAM SECTION ===== */
.abt-team-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a2f44 0%, #124b6e 100%);
}

.abt-team-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.abt-team-header {
  text-align: center;
  margin-bottom: 60px;
}

.abt-team-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffb800;
  margin-bottom: 20px;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  border: 1px solid rgba(255, 184, 0, 0.3);
}

.abt-team-tag i {
  color: #ff9933;
}

.abt-team-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.abt-team-title span {
  color: #ff9933;
}

/* Team Slider */
.abt-team-swiper {
  padding: 20px 10px 60px;
  margin: 0 -10px;
}

/* Team Card - Modern Design */
.abt-team-card {
  background: white;
  border-radius: 30px;
  padding: 40px 25px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 153, 51, 0.2);
}

.abt-team-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(255, 153, 51, 0.3);
  border-color: #ff9933;
}

/* Card Gradient Border */
.abt-team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff9933, #ffb800, #138808);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.abt-team-card:hover::before {
  opacity: 1;
}

/* Social Links Container */
.abt-team-social {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.abt-team-card:hover .abt-team-social {
  opacity: 1;
  transform: translateX(0);
}

.abt-team-social a {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a2f44;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 153, 51, 0.2);
}

.abt-team-social a:hover {
  background: #ff9933;
  color: white;
  transform: scale(1.1) rotate(360deg);
  border-color: transparent;
}

/* Team Image */
.abt-team-img {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffb800;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.abt-team-card:hover .abt-team-img {
  border-color: #ff9933;
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 153, 51, 0.3);
}

.abt-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Team Name */
.abt-team-name {
  font-size: 22px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.abt-team-card:hover .abt-team-name {
  color: #ff9933;
}

/* Team Role */
.abt-team-role {
  font-size: 15px;
  color: #138808;
  margin-bottom: 15px;
  font-weight: 500;
  padding-bottom: 15px;
  border-bottom: 2px dashed rgba(255, 153, 51, 0.2);
}

/* Team Description */
.abt-team-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 15px;
  padding: 0 5px;
}

/* Team Navigation */
.abt-team-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.abt-team-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid #ffb800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb800;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.abt-team-btn:hover {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  border-color: transparent;
  color: #0a2f44;
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(255, 153, 51, 0.4);
}

/* Hide Swiper Pagination */
.swiper-pagination {
  display: none !important;
}

/* Responsive */
@media (max-width: 1200px) {
  .abt-premium-heading {
    font-size: 64px;
  }

  .abt-title {
    font-size: 42px;
  }

  .abt-team-title {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .abt-mvv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .abt-content-row {
    flex-direction: column;
  }

  .abt-premium-heading {
    font-size: 54px;
  }

  .abt-premium-stats {
    gap: 30px;
  }

  .abt-stat-number {
    font-size: 20px;
  }
  .abt-stat-label {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .abt-premium-heading {
    font-size: 42px;
  }

  .abt-premium-desc {
    font-size: 12px;
  }

  .abt-premium-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .abt-mvv-grid {
    grid-template-columns: 1fr;
  }

  .abt-features {
    grid-template-columns: 1fr;
  }

  .abt-title {
    font-size: 32px;
  }

  .abt-team-title {
    font-size: 32px;
  }

  .abt-image-stack {
    height: 450px;
  }

  .abt-main-img {
    width: 280px;
    height: 380px;
  }

  .abt-second-img {
    width: 200px;
    height: 280px;
  }

  .abt-exp-badge {
    padding: 15px;
  }

  .abt-exp-years {
    font-size: 32px;
  }
}

/*=======================OUR SERVICES PAGES STLING====================================*/
/* ===== IMAGE WITH INTRODUCTION SECTION ===== */
.srv-intro-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.srv-intro-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.srv-intro-row {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.srv-intro-image-col {
  flex: 1;
  max-width: 450px;
  position: relative;
}

.srv-intro-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border: 5px solid white;
}

.srv-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.srv-intro-image:hover img {
  transform: scale(1.1);
}

.srv-intro-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  padding: 20px 25px;
  border-radius: 30px;
  color: #0a2f44;
  text-align: center;
  box-shadow: 0 20px 40px rgba(255, 153, 51, 0.4);
  border: 4px solid white;
  animation: srvPulse 3s ease-in-out infinite;
}

@keyframes srvPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.srv-intro-badge .years {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.srv-intro-badge .text {
  font-size: 14px;
  font-weight: 600;
}

.srv-intro-content-col {
  flex: 1;
  min-width: 350px;
}

.srv-intro-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff9933;
  margin-bottom: 20px;
  padding: 10px 25px;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 40px;
}

.srv-intro-subtitle i {
  color: #138808;
}

.srv-intro-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #0a2f44;
}

.srv-intro-title span {
  color: #138808;
}

.srv-intro-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
}

.srv-intro-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.srv-intro-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #333;
  background: white;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(255, 153, 51, 0.1);
}

.srv-intro-feature i {
  color: #ff9933;
}

/* ===== SERVICES CATEGORIES GRID ===== */
.srv-categories-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.srv-categories-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.srv-categories-header {
  text-align: center;
  margin-bottom: 60px;
}

.srv-categories-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff9933;
  margin-bottom: 20px;
  padding: 10px 30px;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 40px;
}

.srv-categories-title {
  font-size: 48px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 15px;
}

.srv-categories-title span {
  color: #138808;
}

/* Categories Grid */
.srv-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Category Card */
.srv-category-card {
  background: white;
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 153, 51, 0.1);
  position: relative;
  overflow: hidden;
}

.srv-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 153, 51, 0.2);
  border-color: #ff9933;
}

.srv-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff9933, #ffb800, #138808);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.srv-category-card:hover::before {
  opacity: 1;
}

.srv-category-img {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffb800;
  transition: all 0.4s ease;
}

.srv-category-card:hover .srv-category-img {
  border-color: #ff9933;
  transform: scale(1.05);
}

.srv-category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.srv-category-title {
  font-size: 20px;
  font-weight: 700;
  color: #0a2f44;
  text-align: center;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.srv-category-card:hover .srv-category-title {
  color: #ff9933;
}

.srv-category-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}

.srv-category-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  border: none;
  border-radius: 50px;
  color: #0a2f44;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.srv-category-card:hover .srv-category-btn {
  opacity: 1;
  transform: translateY(0);
}

.srv-category-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 20px rgba(255, 153, 51, 0.3);
}

/* ===== WHY CHOOSE OUR SECURITY SERVICES ===== */
.srv-why-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a2f44 0%, #124b6e 100%);
}

.srv-why-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.srv-why-header {
  text-align: center;
  margin-bottom: 60px;
}

.srv-why-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffb800;
  margin-bottom: 20px;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  border: 1px solid rgba(255, 184, 0, 0.3);
}

.srv-why-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.srv-why-title span {
  color: #ff9933;
}

/* Why Cards Grid */
.srv-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.srv-why-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: 30px;
  padding: 35px 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.srv-why-card:hover {
  transform: translateY(-15px);
  border-color: #ffb800;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
}

.srv-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff9933, #ffb800, #138808);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.srv-why-card:hover::before {
  transform: scaleX(1);
}

.srv-why-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 153, 51, 0.2);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: #ffb800;
  transition: all 0.4s ease;
}

.srv-why-card:hover .srv-why-icon {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  color: #0a2f44;
  transform: scale(1.1) rotate(10deg);
}

.srv-why-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.srv-why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ===== INDUSTRIES WE SERVE ===== */
.srv-industries-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.srv-industries-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.srv-industries-header {
  text-align: center;
  margin-bottom: 60px;
}

.srv-industries-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff9933;
  margin-bottom: 20px;
  padding: 10px 30px;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 40px;
}

.srv-industries-title {
  font-size: 48px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 15px;
}

.srv-industries-title span {
  color: #138808;
}

/* Industries Grid */
.srv-industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.srv-industry-card {
  background: white;
  border-radius: 20px;
  padding: 25px 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 153, 51, 0.1);
  text-align: center;
  cursor: pointer;
}

.srv-industry-card:hover {
  transform: translateY(-8px);
  border-color: #ff9933;
  box-shadow: 0 20px 35px rgba(255, 153, 51, 0.15);
}

.srv-industry-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.1),
    rgba(19, 136, 8, 0.1)
  );
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 28px;
  color: #ff9933;
  transition: all 0.4s ease;
}

.srv-industry-card:hover .srv-industry-icon {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.srv-industry-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0a2f44;
  margin: 0;
  transition: all 0.3s ease;
}

.srv-industry-card:hover h4 {
  color: #ff9933;
}

/* ===== FINAL CTA BANNER ===== */
.srv-cta-section {
  position: relative;
  padding: 80px 0;
  background-image: url("https://images.unsplash.com/photo-1557597774-9d2736059fa4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.srv-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 47, 68, 0.95) 0%,
    rgba(255, 153, 51, 0.9) 100%
  );
  z-index: 1;
}

.srv-cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.05) 20px,
    rgba(255, 255, 255, 0.05) 40px
  );
  pointer-events: none;
  z-index: 2;
}

.srv-cta-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
  text-align: center;
}

.srv-cta-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffb800;
  margin-bottom: 25px;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  border: 1px solid rgba(255, 184, 0, 0.4);
}

.srv-cta-tagline i {
  color: #ff9933;
}

.srv-cta-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.3;
}

.srv-cta-title span {
  color: #ff9933;
}

.srv-cta-desc {
  max-width: 700px;
  margin: 0 auto 35px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.srv-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.srv-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  border: none;
  border-radius: 60px;
  color: #0a2f44;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.srv-cta-btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 153, 51, 0.4);
}

.srv-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: transparent;
  border: 2px solid white;
  border-radius: 60px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
}

.srv-cta-btn-secondary:hover {
  background: white;
  color: #0a2f44;
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1200px) {
  .srv-categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .srv-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .srv-industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .srv-cover-heading,
  .srv-intro-title,
  .srv-categories-title,
  .srv-why-title,
  .srv-industries-title,
  .srv-cta-title {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .srv-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .srv-intro-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .srv-categories-grid,
  .srv-why-grid,
  .srv-industries-grid {
    grid-template-columns: 1fr;
  }

  .srv-cover-heading,
  .srv-intro-title,
  .srv-categories-title,
  .srv-why-title,
  .srv-industries-title,
  .srv-cta-title {
    font-size: 36px;
  }

  .srv-intro-features {
    grid-template-columns: 1fr;
  }

  .srv-cta-buttons {
    flex-direction: column;
  }

  .srv-intro-badge {
    right: 10px;
    padding: 15px;
  }

  .srv-intro-badge .years {
    font-size: 28px;
  }
}

/*=======================OUR SERVICES (ARMED GURADS   )PAGES STLING====================================*/

/* ===== INTRODUCTION SECTION ===== */
.arm-intro-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.arm-intro-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.arm-intro-row {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.arm-intro-image-col {
  flex: 1;
  min-width: 350px;
  position: relative;
}

.arm-intro-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border: 5px solid white;
}

.arm-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.arm-intro-image:hover img {
  transform: scale(1.1);
}

.arm-intro-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  padding: 25px;
  border-radius: 30px;
  color: #0a2f44;
  text-align: center;
  box-shadow: 0 20px 40px rgba(255, 153, 51, 0.4);
  border: 4px solid white;
  animation: armPulse 3s ease-in-out infinite;
}

@keyframes armPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.arm-intro-badge i {
  font-size: 48px;
  margin-bottom: 10px;
  display: block;
}

.arm-intro-badge span {
  font-size: 18px;
  font-weight: 700;
  display: block;
}

.arm-intro-content-col {
  flex: 1;
  min-width: 350px;
}

.arm-intro-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff9933;
  margin-bottom: 20px;
  padding: 10px 25px;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 40px;
}

.arm-intro-subtitle i {
  color: #138808;
}

.arm-intro-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #0a2f44;
}

.arm-intro-title span {
  color: #138808;
}

.arm-intro-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.arm-intro-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.arm-intro-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
  padding: 10px 15px;
  background: white;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(255, 153, 51, 0.1);
}

.arm-intro-list li i {
  width: 30px;
  height: 30px;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9933;
  transition: all 0.3s ease;
}

.arm-intro-list li:hover i {
  background: #ff9933;
  color: white;
  transform: scale(1.1);
}

/* ===== KEY FEATURES SECTION ===== */
.arm-features-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a2f44 0%, #124b6e 100%);
}

.arm-features-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.arm-features-header {
  text-align: center;
  margin-bottom: 60px;
}

.arm-features-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffb800;
  margin-bottom: 20px;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  border: 1px solid rgba(255, 184, 0, 0.3);
}

.arm-features-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.arm-features-title span {
  color: #ff9933;
}

.arm-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.arm-feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: 30px;
  padding: 35px 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.arm-feature-card:hover {
  transform: translateY(-15px);
  border-color: #ffb800;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
}

.arm-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff9933, #ffb800, #138808);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.arm-feature-card:hover::before {
  transform: scaleX(1);
}

.arm-feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 153, 51, 0.2);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: #ffb800;
  transition: all 0.4s ease;
}

.arm-feature-card:hover .arm-feature-icon {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  color: #0a2f44;
  transform: scale(1.1) rotate(10deg);
}

.arm-feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.arm-feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ===== DUTIES & RESPONSIBILITIES SECTION ===== */
.arm-duties-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.arm-duties-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.arm-duties-header {
  text-align: center;
  margin-bottom: 60px;
}

.arm-duties-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff9933;
  margin-bottom: 20px;
  padding: 10px 30px;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 40px;
}

.arm-duties-title {
  font-size: 48px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 15px;
}

.arm-duties-title span {
  color: #138808;
}

.arm-duties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.arm-duty-card {
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 153, 51, 0.1);
  position: relative;
  overflow: hidden;
}

.arm-duty-card:hover {
  transform: translateY(-10px);
  border-color: #ff9933;
  box-shadow: 0 25px 50px rgba(255, 153, 51, 0.15);
}

.arm-duty-number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 60px;
  font-weight: 800;
  color: rgba(255, 153, 51, 0.1);
  line-height: 1;
  transition: all 0.4s ease;
}

.arm-duty-card:hover .arm-duty-number {
  transform: scale(1.2);
  color: rgba(255, 153, 51, 0.2);
}

.arm-duty-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.1),
    rgba(19, 136, 8, 0.1)
  );
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: #ff9933;
  transition: all 0.4s ease;
}

.arm-duty-card:hover .arm-duty-icon {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.arm-duty-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.arm-duty-card:hover h3 {
  color: #ff9933;
}

.arm-duty-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ===== WHERE USED SECTION ===== */
.arm-used-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.arm-used-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.arm-used-header {
  text-align: center;
  margin-bottom: 60px;
}

.arm-used-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff9933;
  margin-bottom: 20px;
  padding: 10px 30px;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 40px;
}

.arm-used-title {
  font-size: 48px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 15px;
}

.arm-used-title span {
  color: #138808;
}

.arm-used-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.arm-used-card {
  background: white;
  border-radius: 20px;
  padding: 25px 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 153, 51, 0.1);
  text-align: center;
  cursor: pointer;
}

.arm-used-card:hover {
  transform: translateY(-8px);
  border-color: #ff9933;
  box-shadow: 0 20px 35px rgba(255, 153, 51, 0.15);
}

.arm-used-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.1),
    rgba(19, 136, 8, 0.1)
  );
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 28px;
  color: #ff9933;
  transition: all 0.4s ease;
}

.arm-used-card:hover .arm-used-icon {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.arm-used-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0a2f44;
  margin: 0;
  transition: all 0.3s ease;
}

.arm-used-card:hover h4 {
  color: #ff9933;
}

/* ===== FINAL CTA BANNER ===== */
.arm-cta-section {
  position: relative;
  padding: 80px 0;
  background-image: url("https://images.unsplash.com/photo-1557597774-9d2736059fa4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.arm-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 47, 68, 0.95) 0%,
    rgba(255, 153, 51, 0.9) 100%
  );
  z-index: 1;
}

.arm-cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.05) 20px,
    rgba(255, 255, 255, 0.05) 40px
  );
  pointer-events: none;
  z-index: 2;
}

.arm-cta-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
  text-align: center;
}

.arm-cta-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffb800;
  margin-bottom: 25px;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  border: 1px solid rgba(255, 184, 0, 0.4);
}

.arm-cta-tagline i {
  color: #ff9933;
}

.arm-cta-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.3;
}

.arm-cta-title span {
  color: #ff9933;
}

.arm-cta-desc {
  max-width: 700px;
  margin: 0 auto 35px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.arm-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.arm-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  border: none;
  border-radius: 60px;
  color: #0a2f44;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.arm-cta-btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 153, 51, 0.4);
}

.arm-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: transparent;
  border: 2px solid white;
  border-radius: 60px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
}

.arm-cta-btn-secondary:hover {
  background: white;
  color: #0a2f44;
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1200px) {
  .arm-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .arm-duties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .arm-used-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .arm-cover-heading,
  .arm-intro-title,
  .arm-features-title,
  .arm-duties-title,
  .arm-used-title,
  .arm-cta-title {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .arm-intro-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .arm-features-grid,
  .arm-duties-grid,
  .arm-used-grid {
    grid-template-columns: 1fr;
  }

  .arm-cover-heading,
  .arm-intro-title,
  .arm-features-title,
  .arm-duties-title,
  .arm-used-title,
  .arm-cta-title {
    font-size: 36px;
  }

  .arm-cta-buttons {
    flex-direction: column;
  }

  .arm-intro-badge {
    right: 10px;
    padding: 20px;
  }

  .arm-intro-badge i {
    font-size: 36px;
  }

  .arm-intro-badge span {
    font-size: 16px;
  }
}
/*============================LATEST JOBS PAGES STYLING====================================*/
/* ===== JOBS CARDS SECTION ===== */
.job-cards-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.job-cards-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.job-cards-header {
  text-align: center;
  margin-bottom: 60px;
}

.job-cards-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff9933;
  margin-bottom: 20px;
  padding: 10px 30px;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 40px;
}

.job-cards-title {
  font-size: 48px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 15px;
}

.job-cards-title span {
  color: #138808;
}

/* Jobs Grid - 3 Cards per row */
.job-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Job Card */
.job-card {
  background: white;
  border-radius: 30px;
  padding: 30px 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 153, 51, 0.1);
  position: relative;
  overflow: hidden;
}

.job-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(255, 153, 51, 0.15);
  border-color: #ff9933;
}

.job-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff9933, #ffb800, #138808);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.job-card:hover::before {
  opacity: 1;
}

/* Job Header with Logo Image */
.job-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.job-logo {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.1),
    rgba(19, 136, 8, 0.1)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border: 2px dashed rgba(255, 153, 51, 0.3);
  overflow: hidden;
  padding: 5px;
}

.job-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}

.job-card:hover .job-logo {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  border-color: transparent;
  transform: scale(1.05) rotate(5deg);
}

.job-card:hover .job-logo img {
  filter: brightness(0) invert(1);
}

.job-title h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.job-card:hover .job-title h3 {
  color: #ff9933;
}

.job-company {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-company i {
  color: #138808;
  font-size: 12px;
}

/* Job Description */
.job-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px dashed rgba(255, 153, 51, 0.2);
}

/* Job Info Grid - Two Column */
.job-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.job-info-item {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.job-card:hover .job-info-item {
  background: rgba(255, 153, 51, 0.05);
}

.job-info-item i {
  color: #ff9933;
  font-size: 16px;
  margin-bottom: 5px;
  display: block;
}

.job-info-item .label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 2px;
}

.job-info-item .value {
  font-size: 14px;
  font-weight: 600;
  color: #0a2f44;
}

.job-card:hover .job-info-item .value {
  color: #ff9933;
}

/* Apply Button */
.job-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  border: none;
  border-radius: 50px;
  color: #0a2f44;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.job-apply-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.job-apply-btn:hover::before {
  left: 100%;
}

.job-apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 153, 51, 0.3);
}

.job-apply-btn i {
  transition: transform 0.3s ease;
}

.job-apply-btn:hover i {
  transform: translateX(5px);
}

/* ===== APPLICATION PROCESS SECTION ===== */
.job-process-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a2f44 0%, #124b6e 100%);
}

.job-process-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.job-process-header {
  text-align: center;
  margin-bottom: 60px;
}

.job-process-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffb800;
  margin-bottom: 20px;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  border: 1px solid rgba(255, 184, 0, 0.3);
}

.job-process-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.job-process-title span {
  color: #ff9933;
}

.job-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.job-process-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: 30px;
  padding: 40px 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.job-process-card:hover {
  transform: translateY(-15px);
  border-color: #ffb800;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
}

.job-process-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 60px;
  font-weight: 800;
  color: rgba(255, 153, 51, 0.2);
  line-height: 1;
  transition: all 0.4s ease;
}

.job-process-card:hover .job-process-number {
  transform: scale(1.2);
  color: rgba(255, 153, 51, 0.3);
}

.job-process-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 153, 51, 0.2);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: #ffb800;
  transition: all 0.4s ease;
}

.job-process-card:hover .job-process-icon {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  color: #0a2f44;
  transform: scale(1.1) rotate(10deg);
}

.job-process-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.job-process-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ===== WHY WORK WITH US SECTION ===== */
.job-why-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.job-why-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.job-why-header {
  text-align: center;
  margin-bottom: 60px;
}

.job-why-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff9933;
  margin-bottom: 20px;
  padding: 10px 30px;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 40px;
}

.job-why-title {
  font-size: 48px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 15px;
}

.job-why-title span {
  color: #138808;
}

.job-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.job-why-card {
  background: white;
  border-radius: 30px;
  padding: 35px 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 153, 51, 0.1);
}

.job-why-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(255, 153, 51, 0.15);
  border-color: #ff9933;
}

.job-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff9933, #ffb800, #138808);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.job-why-card:hover::before {
  opacity: 1;
}

.job-why-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.1),
    rgba(19, 136, 8, 0.1)
  );
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  color: #ff9933;
  transition: all 0.4s ease;
}

.job-why-card:hover .job-why-icon {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  color: white;
  transform: scale(1.1) rotate(10deg);
}

.job-why-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.job-why-card:hover h3 {
  color: #ff9933;
}

.job-why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* ===== QUICK APPLY CTA SECTION ===== */
.job-quick-cta {
  position: relative;
  padding: 80px 0;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.job-quick-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 47, 68, 0.95) 0%,
    rgba(255, 153, 51, 0.9) 100%
  );
  z-index: 1;
}

.job-quick-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.05) 20px,
    rgba(255, 255, 255, 0.05) 40px
  );
  pointer-events: none;
  z-index: 2;
}

.job-quick-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
  text-align: center;
}

.job-quick-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffb800;
  margin-bottom: 25px;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  border: 1px solid rgba(255, 184, 0, 0.4);
}

.job-quick-tagline i {
  color: #ff9933;
}

.job-quick-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.3;
}

.job-quick-title span {
  color: #ff9933;
}

.job-quick-desc {
  max-width: 700px;
  margin: 0 auto 35px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.job-quick-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(255, 184, 0, 0.3);
}

.job-quick-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.job-quick-input {
  flex: 1;
  min-width: 200px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: 50px;
  color: white;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.job-quick-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.job-quick-input:focus {
  border-color: #ff9933;
  background: rgba(255, 255, 255, 0.2);
}

.job-quick-submit {
  padding: 15px 35px;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  border: none;
  border-radius: 50px;
  color: #0a2f44;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.job-quick-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 153, 51, 0.4);
}

.job-quick-submit i {
  transition: transform 0.3s ease;
}

.job-quick-submit:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1200px) {
  .job-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .job-process-grid,
  .job-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .job-cover-heading,
  .job-cards-title,
  .job-process-title,
  .job-why-title,
  .job-quick-title {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .job-process-grid,
  .job-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .job-cards-grid,
  .job-process-grid,
  .job-why-grid {
    grid-template-columns: 1fr;
  }

  .job-cover-heading,
  .job-cards-title,
  .job-process-title,
  .job-why-title,
  .job-quick-title {
    font-size: 36px;
  }

  .job-quick-row {
    flex-direction: column;
  }

  .job-quick-form {
    padding: 30px 20px;
  }
}
/*==========================APPLY FOR JOBS PAGE STYLING=================================*/

/* ===== JOB SUMMARY SECTION ===== */
.apply-summary-section {
  padding: 60px 0 30px;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.apply-summary-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.apply-summary-card {
  background: white;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 153, 51, 0.2);
  position: relative;
  overflow: hidden;
}

.apply-summary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff9933, #ffb800, #138808);
}

.apply-summary-title {
  font-size: 28px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.apply-summary-title i {
  color: #ff9933;
  font-size: 32px;
}

.apply-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.apply-summary-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.apply-summary-item:hover {
  background: rgba(255, 153, 51, 0.1);
  transform: translateY(-3px);
}

.apply-summary-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.1),
    rgba(19, 136, 8, 0.1)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ff9933;
}

.apply-summary-content h4 {
  font-size: 14px;
  color: #666;
  margin-bottom: 3px;
}

.apply-summary-content p {
  font-size: 16px;
  font-weight: 600;
  color: #0a2f44;
  margin: 0;
}

/* ===== APPLICATION FORM SECTION ===== */
.apply-form-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.apply-form-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.apply-form-card {
  background: white;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 153, 51, 0.2);
  position: relative;
}

.apply-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px dashed rgba(255, 153, 51, 0.3);
}

.apply-form-header-left h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 5px;
}

.apply-form-header-left p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.apply-form-header-right {
  display: flex;
  gap: 15px;
}

.apply-print-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #0a2f44, #124b6e);
  border: none;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 184, 0, 0.3);
}

.apply-print-btn:hover {
  background: #ff9933;
  color: #0a2f44;
  transform: translateY(-3px);
}

.apply-print-btn i {
  font-size: 16px;
}

/* Form Styles */
.apply-form {
  margin-top: 20px;
}

.apply-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.apply-form-group {
  margin-bottom: 15px;
}

.apply-form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0a2f44;
  margin-bottom: 8px;
}

.apply-form-label i {
  color: #ff9933;
  font-size: 14px;
  width: 18px;
}

.apply-form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 14px;
  color: #333;
  background: #f8f9fa;
  border: 2px solid #eef2f6;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.apply-form-control:focus {
  outline: none;
  border-color: #ff9933;
  background: white;
  box-shadow: 0 5px 20px rgba(255, 153, 51, 0.1);
}

.apply-form-control::placeholder {
  color: #aaa;
  font-size: 13px;
}

textarea.apply-form-control {
  resize: vertical;
  min-height: 80px;
}

/* Photo Box */
.apply-photo-box {
  background: #f8f9fa;
  border: 2px dashed #ff9933;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.apply-photo-box i {
  font-size: 48px;
  color: #ff9933;
  margin-bottom: 10px;
}

.apply-photo-box p {
  font-size: 14px;
  color: #666;
  margin: 0;
  font-weight: 500;
}

.apply-photo-box span {
  font-size: 12px;
  color: #999;
}

/* Signature Box */
.apply-signature-box {
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 15px;
  padding: 20px;
  min-height: 100px;
  position: relative;
  margin-top: 20px;
}

.apply-signature-box::before {
  content: "हस्ताक्षर";
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 14px;
  color: #999;
  font-style: italic;
}

/* Attachments Section */
.apply-attachments {
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
}

.apply-attachments-title {
  font-size: 18px;
  font-weight: 600;
  color: #0a2f44;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.apply-attachments-title i {
  color: #ff9933;
}

.apply-attachment-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.apply-attachment-item input {
  flex: 1;
  padding: 10px;
  border: 2px solid #eef2f6;
  border-radius: 10px;
  font-size: 14px;
}

/* Form Footer */
.apply-form-footer {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.apply-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  border: none;
  border-radius: 50px;
  color: #0a2f44;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(255, 153, 51, 0.3);
}

.apply-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 153, 51, 0.4);
}

.apply-submit-btn i {
  transition: transform 0.3s ease;
}

.apply-submit-btn:hover i {
  transform: translateX(5px);
}

.apply-reset-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: transparent;
  border: 2px solid #0a2f44;
  border-radius: 50px;
  color: #0a2f44;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-reset-btn:hover {
  background: #0a2f44;
  color: white;
}

/* ===== ELIGIBILITY SECTION ===== */
.apply-eligibility-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}

.apply-eligibility-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.apply-eligibility-header {
  text-align: center;
  margin-bottom: 40px;
}

.apply-eligibility-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ff9933;
  margin-bottom: 15px;
  padding: 8px 25px;
  background: rgba(255, 153, 51, 0.1);
  border-radius: 40px;
}

.apply-eligibility-title {
  font-size: 36px;
  font-weight: 700;
  color: #0a2f44;
}

.apply-eligibility-title span {
  color: #138808;
}

.apply-eligibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.apply-eligibility-card {
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 153, 51, 0.1);
  text-align: center;
}

.apply-eligibility-card:hover {
  transform: translateY(-8px);
  border-color: #ff9933;
  box-shadow: 0 20px 40px rgba(255, 153, 51, 0.1);
}

.apply-eligibility-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.1),
    rgba(19, 136, 8, 0.1)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: #ff9933;
  transition: all 0.3s ease;
}

.apply-eligibility-card:hover .apply-eligibility-icon {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.apply-eligibility-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0a2f44;
  margin-bottom: 10px;
}

.apply-eligibility-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ===== BENEFITS SECTION ===== */
.apply-benefits-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #0a2f44 0%, #124b6e 100%);
}

.apply-benefits-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.apply-benefits-header {
  text-align: center;
  margin-bottom: 40px;
}

.apply-benefits-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffb800;
  margin-bottom: 15px;
  padding: 8px 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  border: 1px solid rgba(255, 184, 0, 0.3);
}

.apply-benefits-title {
  font-size: 36px;
  font-weight: 700;
  color: white;
}

.apply-benefits-title span {
  color: #ff9933;
}

.apply-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.apply-benefits-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.apply-benefits-card:hover {
  transform: translateY(-8px);
  border-color: #ffb800;
  background: rgba(255, 255, 255, 0.1);
}

.apply-benefits-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 153, 51, 0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 28px;
  color: #ffb800;
  transition: all 0.3s ease;
}

.apply-benefits-card:hover .apply-benefits-icon {
  background: linear-gradient(135deg, #ff9933, #ffb800);
  color: #0a2f44;
  transform: scale(1.1) rotate(5deg);
}

.apply-benefits-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.apply-benefits-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

/* ===== FINAL CTA BANNER ===== */
.apply-cta-section {
  position: relative;
  padding: 60px 0;
  background-image: url("https://images.unsplash.com/photo-1557597774-9d2736059fa4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.apply-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 47, 68, 0.95) 0%,
    rgba(255, 153, 51, 0.9) 100%
  );
  z-index: 1;
}

.apply-cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.05) 20px,
    rgba(255, 255, 255, 0.05) 40px
  );
  pointer-events: none;
  z-index: 2;
}

.apply-cta-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
  text-align: center;
}

.apply-cta-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffb800;
  margin-bottom: 20px;
  padding: 8px 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  border: 1px solid rgba(255, 184, 0, 0.4);
}

.apply-cta-title {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.apply-cta-title span {
  color: #ff9933;
}

.apply-cta-desc {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.apply-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 40px;
  background: linear-gradient(135deg, #ff9933, #ffb800);
  border: none;
  border-radius: 50px;
  color: #0a2f44;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.apply-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 153, 51, 0.4);
}

/* Print Styles */
@media print {
  .apply-cover-section,
  .apply-eligibility-section,
  .apply-benefits-section,
  .apply-cta-section,
  .apply-form-header-right,
  .apply-form-footer,
  footer,
  nav {
    display: none !important;
  }

  .apply-form-card {
    box-shadow: none;
    border: 1px solid #ddd;
    padding: 20px;
  }

  .apply-form-control {
    border: 1px solid #ddd;
    background: none;
  }

  .apply-photo-box {
    border: 1px solid #ddd;
  }

  body {
    background: white;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .apply-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .apply-eligibility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .apply-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .apply-cover-heading {
    font-size: 48px;
  }
}

@media (max-width: 992px) {
  .apply-form-row {
    grid-template-columns: 1fr;
  }

  .apply-summary-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .apply-cover-heading {
    font-size: 36px;
  }

  .apply-summary-grid,
  .apply-eligibility-grid,
  .apply-benefits-grid {
    grid-template-columns: 1fr;
  }

  .apply-form-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .apply-form-footer {
    flex-direction: column;
  }

  .apply-submit-btn,
  .apply-reset-btn {
    width: 100%;
    justify-content: center;
  }

  .apply-cta-title {
    font-size: 28px;
  }
}
