.company-logo {
  width: 180px;
  height: 60px;
  object-fit: contain;
  filter: grayscale(1);
  transition: all 0.3s ease;
  opacity: 0.6;
}

.w-slide {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.w-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
  max-width: 800px;
}

.slide-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-description {
  font-size: 24px;
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.apply-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: linear-gradient(135deg, #0099AC 0%, #24256A 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 153, 172, 0.2);
}

.apply-now-btn::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: 0.5s;
}

.apply-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 153, 172, 0.3);
  background: linear-gradient(135deg, #24256A 0%, #0099AC 100%);
}

.apply-now-btn:hover::before {
  left: 100%;
}

.apply-now-btn:active {
  transform: translateY(1px);
  box-shadow: 0 5px 15px rgba(0, 153, 172, 0.2);
}

.apply-now-btn .btn-icon {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.apply-now-btn:hover .btn-icon {
  transform: translateX(5px);
}

/* Add ripple effect */
.apply-now-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.apply-now-btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(100, 100);
    opacity: 0;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .apply-now-btn {
    padding: 14px 28px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .apply-now-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

.attached-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.attached-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.attached-heading {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.attached-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #2d3436;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.attached-heading h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  border-radius: 2px;
}

.attached-heading p {
  font-size: 18px;
  color: #636e72;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.attached-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
  perspective: 1000px;
}

.attached-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: translateZ(0);
}

.attached-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 191, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.attached-item:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.attached-item:hover::before {
  opacity: 1;
}

.attached-item h3 {
  font-size: 26px;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.attached-item p {
  font-size: 16px;
  color: #636e72;
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.attached-item a {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(135deg, #007bff 0%, #00bfff 100%);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.attached-item a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

.attached-item a:active {
  transform: translateY(0);
}

@media screen and (max-width: 1200px) {
  .attached-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media screen and (max-width: 991px) {
  .attached-section {
    padding: 80px 0;
  }
  
  .attached-heading h2 {
    font-size: 36px;
  }
  
  .attached-item {
    padding: 30px 25px;
  }
}

@media screen and (max-width: 767px) {
  .attached-section {
    padding: 60px 0;
  }
  
  .attached-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .attached-heading h2 {
    font-size: 32px;
  }
  
  .attached-item {
    padding: 25px 20px;
  }
  
  .attached-item h3 {
    font-size: 22px;
  }
}

.contact-image-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background: linear-gradient(135deg, #24256A 0%, #0099AC 100%);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-image-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-illustration {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-circle {
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-circle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.contact-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s ease;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.contact-circle:hover .contact-icon svg {
  transform: scale(1.1) rotate(-10deg);
}

.contact-rings {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.ring {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring1 {
  width: 200px;
  height: 200px;
  animation: pulse 3s infinite;
}

.ring2 {
  width: 240px;
  height: 240px;
  animation: pulse 3s infinite 1s;
}

.ring3 {
  width: 280px;
  height: 280px;
  animation: pulse 3s infinite 2s;
}

.contact-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  backdrop-filter: blur(2px);
}

.particle1 {
  width: 6px;
  height: 6px;
  top: 20%;
  left: 20%;
  animation: float 6s infinite;
}

.particle2 {
  width: 8px;
  height: 8px;
  top: 70%;
  left: 30%;
  animation: float 6s infinite 1.2s;
}

.particle3 {
  width: 4px;
  height: 4px;
  top: 40%;
  right: 25%;
  animation: float 6s infinite 2.4s;
}

.particle4 {
  width: 6px;
  height: 6px;
  top: 60%;
  right: 15%;
  animation: float 6s infinite 3.6s;
}

.particle5 {
  width: 8px;
  height: 8px;
  top: 30%;
  left: 40%;
  animation: float 6s infinite 4.8s;
}

.contact-connection {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.connection-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  height: 2px;
}

.line1 {
  width: 280px;
  top: 50%;
  left: -140px;
  transform: rotate(45deg);
  animation: slideIn 4s infinite;
}

.line2 {
  width: 280px;
  top: 50%;
  right: -140px;
  transform: rotate(-45deg);
  animation: slideIn 4s infinite 1.3s;
}

.line3 {
  width: 280px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  animation: slideIn 4s infinite 2.6s;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
}

@keyframes slideIn {
  0% {
    transform: translateX(-100%) rotate(45deg);
    opacity: 0;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    transform: translateX(100%) rotate(45deg);
    opacity: 0;
  }
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-10px, -15px);
  }
  50% {
    transform: translate(-20px, 0);
  }
  75% {
    transform: translate(-10px, 15px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@media (max-width: 768px) {
  .contact-illustration {
    width: 280px;
    height: 280px;
  }
  
  .contact-circle {
    width: 140px;
    height: 140px;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
  }
  
  .ring1 { width: 180px; height: 180px; }
  .ring2 { width: 220px; height: 220px; }
  .ring3 { width: 260px; height: 260px; }
  
  .connection-line {
    width: 240px;
  }
}

@media (max-width: 480px) {
  .contact-illustration {
    width: 240px;
    height: 240px;
  }
  
  .contact-circle {
    width: 120px;
    height: 120px;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
  }
  
  .ring1 { width: 160px; height: 160px; }
  .ring2 { width: 200px; height: 200px; }
  .ring3 { width: 240px; height: 240px; }
  
  .connection-line {
    width: 200px;
  }
}

.container-one-11 {
  padding: clamp(40px, 5vw, 80px) 0;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
  width: 100%;
  overflow-x: hidden;
}

.new-section-wrap-3 {
  max-width: min(1200px, 95%);
  margin: 0 auto;
  padding: 0 clamp(15px, 3vw, 20px);
}

.section-header-2 {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.section-title-wrapper {
  max-width: min(800px, 90%);
  margin: 0 auto;
}

.section-title-text-8 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #24256A;
  margin-bottom: clamp(15px, 2vw, 20px);
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.section-title-text-8::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(60px, 8vw, 80px);
  height: 4px;
  background: linear-gradient(90deg, #0099AC, #24256A);
  border-radius: 2px;
}

.section-title-descriptions-2 {
  font-size: clamp(16px, 2vw, 18px);
  color: #666;
  line-height: 1.6;
  margin-top: clamp(15px, 2vw, 20px);
  padding: 0 clamp(10px, 2vw, 20px);
}

.news-wrapper {
  max-width: min(1200px, 95%);
  margin: 0 auto;
  padding: 0 clamp(15px, 3vw, 20px);
}

.blogs-area-wrap {
  margin-top: clamp(30px, 4vw, 40px);
}

.blogs-collection-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(20px, 3vw, 30px);
  margin-top: clamp(30px, 4vw, 40px);
  padding: 0 clamp(10px, 2vw, 0);
}

.blog-single-item {
  background: #ffffff;
  border-radius: clamp(12px, 2vw, 16px);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-single-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.news-item {
  height: 100%;
}

.blog-details-wrap {
  padding: clamp(20px, 3vw, 30px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-details {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: clamp(15px, 2vw, 25px);
}

.news-category-and-date {
  margin-bottom: clamp(15px, 2vw, 25px);
}

.news-title-wrap {
  text-decoration: none;
  margin-bottom: clamp(10px, 1.5vw, 15px);
  display: block;
}

.news-title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
  color: #24256A;
  margin: 0;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.news-title-wrap:hover .news-title {
  color: #0099AC;
}

.news-category-wrap,
.news-date-wrap {
  display: flex;
  align-items: center;
  margin-bottom: clamp(8px, 1vw, 10px);
  color: #666;
  font-size: clamp(13px, 1.5vw, 14px);
}

.bookmark-icon,
.calender-icon {
  margin-right: 8px;
  color: #0099AC;
  font-size: clamp(14px, 1.5vw, 16px);
}

.all-news-button {
  margin-top: auto;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: clamp(10px, 1.5vw, 12px) clamp(25px, 3vw, 30px);
  background: linear-gradient(135deg, #0099AC 0%, #24256A 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(13px, 1.5vw, 14px);
  transition: all 0.3s ease;
  overflow: hidden;
  width: fit-content;
  text-align: center;
}

.all-news-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.all-news-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 153, 172, 0.2);
}

.all-news-button:hover::before {
  left: 100%;
}

.all-news-button:active {
  transform: translateY(1px);
}

.all-news-button-text {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #24256A 0%, #0099AC 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.all-news-button:hover .layer {
  opacity: 1;
}

/* Touch Device Optimizations */
@media (hover: none) {
  .blog-single-item:hover {
    transform: none;
  }
  
  .all-news-button:hover {
    transform: none;
  }
  
  .all-news-button:active {
    transform: scale(0.98);
  }
}

/* Tablet Optimizations */
@media (min-width: 768px) and (max-width: 1024px) {
  .blogs-collection-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Optimizations */
@media (max-width: 767px) {
  .blogs-collection-list {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
  
  .blog-single-item {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .all-news-button {
    width: 100%;
    text-align: center;
  }
}

/* Small Mobile Optimizations */
@media (max-width: 480px) {
  .section-title-text-8::after {
    width: 50px;
  }
  
  .news-category-wrap,
  .news-date-wrap {
    flex-wrap: wrap;
  }
  
  .blog-details-wrap {
    padding: 15px;
  }
}

/* Landscape Mode Optimizations */
@media (max-height: 500px) and (orientation: landscape) {
  .container-one-11 {
    padding: 30px 0;
  }
  
  .section-header-2 {
    margin-bottom: 30px;
  }
  
  .blogs-collection-list {
    grid-template-columns: repeat(2, 1fr);
  }
} 