html {font-size: 14px;}
body {
    font-weight: 400;
    font-size: 1rem;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #555;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-feature-settings: "liga", "kern";
    text-rendering: optimizelegibility;
    background-color: #fff;
}
.bg-light{
    background: rgb(237 233 233) !important;
}
/* Navbar Background */
.custom-navbar {
    /*background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);*/
    padding: 15px 0;
    transition: all 0.3s ease;
}
.navbar .dropdown-toggle::after {
    display: none !important;
}
.dropdown-arrow {
    font-size: 10px; 
    margin-top: 0px;
    margin-left:3px; 
    transition: 0.3s ease;
}
/* Rotate on open */
.dropdown.show .dropdown-arrow {
    transform: rotate(180deg);
}
/* Brand */
.custom-navbar .navbar-brand {
    color: #fff;
    font-size: 22px;
    letter-spacing: 1px;
}

/* Nav Links */
.custom-navbar .nav-link {
    color: #fff;
    margin: 0 12px;
    position: relative;
    font-weight: 500;
    transition: 0.3s;
}

/* Underline Hover Effect */
.custom-navbar .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -5px;
    background-color: #00d4ff;
    transition: 0.3s ease;
}
.custom-navbar .nav-link:hover::after {
    width: 100%;
}
.custom-navbar .nav-link:hover {
    color: #00d4ff;
}
/* Dropdown */
.custom-navbar .dropdown-menu {
    border: none;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

/* Dropdown item */
.custom-navbar .dropdown-item {
    padding: 10px 20px;
    transition: 0.3s;
}

.custom-navbar .dropdown-item:hover {
    background: #f1f5f9;
    padding-left: 25px;
    color: #0d6efd;
}

/* Open dropdown on hover (desktop only) */
@media (min-width: 992px) {
    .custom-navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.mega-dropdown .dropdown-menu {
    width: auto;
    left: 25%;
    right: 0;
    top: 100%;
    border-radius: 15px;
}

/* Title */
.mega-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: #0d6efd;
}

/* Mega items */
.mega-item {
    display: flex;
    gap: 12px;
    padding: 2px;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease;
    color: #333;
    align-items: center;
}

.mega-item i {
    font-size: 20px;
    color: #0d6efd;
}

.mega-item small {
    display: block;
    font-size: 12px;
    color: #777;
}

.mega-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

/* Open on hover (desktop only) */
@media (min-width: 992px) {
    .mega-dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Hero Image Hover Effect */
.bg-gradiant{
    background: linear-gradient(91.03deg, #566b8b 31.18%, rgb(255 32 32 / 0%) 98.97%);
}
.hero-img {
    transition: 0.4s;
}

.hero-img:hover {
    transform: scale(1.05);
}

/* Particle background */
#particles-js {
    z-index: 0;
}


.hover-scale:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}
.transition {
    transition: all 0.3s ease-in-out;
}
/* Counter style */
.js-counter {
    color: #fff;
}
.logo-carousel .logo-hover {
    max-width: 120px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(50%);
}
.logo-carousel .logo-hover:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}
/* Slick carousel spacing */
.logo-carousel .slick-slide {
    display: flex !important;
    justify-content: center;
    align-items: center;
}
/* Optional: hide dots/arrows for clean look */
.logo-carousel .slick-dots,
.logo-carousel .slick-arrow {
    display: none !important;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}
.blog-img {
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.1);
}

.blog-card {
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Section Background */
.also-section {
    background: linear-gradient(135deg, #f8f9fa, #eef2ff);
}

/* Gradient Heading */
.gradient-text {
    background: linear-gradient(90deg, #0d6efd, #6f42c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card Design */
.service-card {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    /*margin: 0 auto;*/
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.icon-box i {
    font-size: 28px;
    color: #fff;
    transition: 0.4s;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px
}

 /* Links */
  .footer-links li a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    margin-bottom: 8px;
  }
  .footer-links li a:hover {
    color: #fff;
    transform: translateX(5px);
  }

  /* Cards hover */
  .hover-shadow:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.4) !important;
    transform: translateY(-2px);
    transition: 0.3s;
  }

  /* Social icons */
  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
  }
  .social-icon:hover {
    background: #fff;
    color: #0d6efd;
    transform: translateY(-2px);
  }

  /* Input hover */
  form input:focus {
    box-shadow: 0 0 8px rgba(255,255,255,0.5);
    border-color: #fff;
  }
.branch-section {
    background: linear-gradient(135deg,#0f0c29,#302b63,#24243e);
    position: relative;
    overflow: hidden;
}

.title-line {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg,#00c6ff,#0072ff);
    border-radius: 20px;
}

.branch-card {
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    transition: 0.4s ease;
}

.branch-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(0,198,255,0.6);
}

.country-badge {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg,#00c6ff,#0072ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: -45px auto 20px auto;
    box-shadow: 0 10px 25px rgba(0,198,255,0.6);
}
#cureer-section .value-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: 0.4s ease;
  color: #fff;
}
#cureer-section .value-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.25);
}
.job-section .job-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.4s, box-shadow 0.4s;
}
.job-section .job-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}
.job-section .card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,#0d6efd,#6f42c1);
    opacity: 0.1;
    z-index: 1;
}
.job-section .card-content {
    position: relative;
    z-index: 2;
}
.job-section .btn-glass {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
}

.canada-section .process-card {
    border-radius: 15px;
    transition: 0.3s ease-in-out;
}
.canada-section .process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.canada-section .process-icon {
    width:70px;
    height:70px;
    line-height:70px;
    margin:auto;
    border-radius:50%;
    background: linear-gradient(45deg,#00c6ff,#0072ff);
    color:#fff;
    font-size:28px;
}
.why-card {
    transition: 0.4s;
    backdrop-filter: blur(8px);
}

.why-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255,255,255,0.2) !important;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transform: translateX(-50%);
}

.process-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    transition: 0.4s;
    backdrop-filter: blur(8px);
}

.process-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background: #0d6efd;
    color: #fff;
    font-weight: bold;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(13,110,253,0.7);
    font-size: 14px;
}
.tool-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
}
@media (max-width: 768px) {
    .timeline-line {
        display: none;
    }
}