/* buttons */

 .blueGradientBtn {
        display: inline-block;
        margin-top: 15px;
        padding: 12px 28px;
        font-size: 16px;
        color: #fff;
        text-decoration: none;
        border-radius: 8px;
        background: linear-gradient(to right, #0066ff, #00b7ff);
        transition: 0.3s;
        box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    }

    .blueGradientBtn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 123, 255, 0.45);
        background: linear-gradient(to right, #0050d4, #0094d9);
        color: #fff;
    }

/* buttons */

/* Gloabls starts */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

.mapContact{
  width: 100%;
  height: 350px;
  border:1px solid #ffffff;
  border-radius: 10px;
  padding-top: 20px;
}

.contactStong{
  font-size: 16px;
  font-weight: 700;
  color: #003366;
  margin: 0;
  padding: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  letter-spacing: 0px;
  color: #1e1e2e;
  line-height: 1.7;
  text-align: justify;
  background-color: #fff;
  padding: 0px;
}

.whiteColor{
  color: #FFFFFF;
}


a:hover {
  text-decoration: none;
}

.textCenter{
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 0 5%;
  font-size: 18px;
}

.textcolor{
  color:#10b981;
  font-size: 22px;
  font-weight: 700;
}

.violet {
  background: linear-gradient(135deg, #5e35b1, #7e57c2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

p {
  font-size: 16px;
  text-align: left;
  color: #444;
  max-width: 100%;
  margin: 0px;
  font-weight: 400;
  opacity: 0.88;
  line-height: 1.9;
  text-align: justify;
}

.spanP {
  font-size: 16px;
  color: #444;
  max-width: 100%;
  margin: 0px;
  font-weight: 400;
  opacity: 0.88;
  line-height: 0;
  text-align: justify;
}

.wrapperCenter{
  width: 100%;
  display: inline-block;
  text-align: center;
}

.press-capitals {
    padding: 12px 28px;
    background: transparent;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
   
    border: 3px solid transparent;
    background-image: linear-gradient(#000, #000), 
                      linear-gradient(90deg, #ff7b00, #ff00c8, #7700ff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
 
}



.textcenter {
  text-align: center;
}

.clrBoth {
  clear: both;
}

.marginTop10{
  margin-top: 10px;
}

.marginTop20{
  margin-top: 20px;
}

.displayBlock{
  display: block;
}

.marginTop60 {
  margin-top: 60px;
}

.marginBottom20 {
  margin-bottom: 20px;
}

.marginRight40 {
  margin-right: 40px;
}

.marqueeUp {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  animation: scroll-up 20s linear infinite;
}

@keyframes scroll-up {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

.marqueeLeft {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  animation: scroll 10s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* Smaller floating theme button */
.theme-btn {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #333;
  border: none;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  transition: 0.25s;
}
.theme-btn:hover {
  background: #555;
  transform: scale(1.07);
}

/* Smaller modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  z-index: 9998;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  width: 240px;          /* smaller box */
  padding: 16px;
  border-radius: 10px;
  position: relative;
  animation: fadeIn 0.25s ease-in-out;
}

.close-btn {
  position: absolute;
  right: 10px;
  top: 6px;
  font-size: 20px;       /* smaller X */
  cursor: pointer;
  user-select: none;
}

/* Smaller theme list */
.theme-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.theme-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;     /* smaller button */
  background: #f5f5f5;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;       /* smaller text */
  transition: 0.2s;
}

.theme-option:hover {
  background: #e8e8e8;
}

/* Smaller theme color circles */
.theme-option .color {
  width: 14px;           /* smaller circle */
  height: 14px;
  border-radius: 50%;
  border: 1px solid #fff;
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
}

/* subtle fade */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.objectPdf{
   width:100%;
   height: 600px;
}

.objectImg{
   width:100%;
   border-radius: 10px;
   height: auto;
}

.pagination{
  width: 100%;
  display: inline-block;
  text-align: center;
 
}

.page-btn {
    padding: 6px 12px;
    margin: 3px;
    text-decoration: none;
    background: #ddd;
    border-radius: 4px;
    color: #333;
}

.page-btn:hover {
    background: #bbb;
}

.page-btn.current {
    background: #333;
    color: #fff;
}


/* Gloabls ends */

/* pdf modal starts */

 .popup-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.75);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            backdrop-filter: blur(5px);
        }

        .popup-box {
            width: 94vw;
            height: 92vh;
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
            display: flex;
            flex-direction: column;
        }

        .url-bar-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #e3f2fd;
            padding: 14px 20px;
            border-bottom: 1px solid #bbdefb;
        }

        .url-bar {
            font-size: 15px;
            font-weight: 500;
            color: #003d80;
            word-break: break-all;
            flex: 1;
            margin-right: 15px;
        }

        .pdf-viewer {
            width: 100%;
            flex-grow: 1;
            border: none;
        }

        .closeModalButton {
    background: #d32f2f;
    width: 26px;
    height: 26px;
    border: none;
    padding: 4px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    float: right;
}

.closeModalButton:hover {
    background: #b71c1c;
    transform: rotate(180deg);
}

.closeModalButton svg {
    display: block;
}
   

/* pdf modal ends */

/* page Starts */
.pageTitleH3{
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
  color: #003366;
  font-size: 2rem;
  font-weight: 700;
  padding-left: 18px;
  margin-bottom: 28px;
  margin-top: 20px;
  position: relative;
}

.pageWithBgDiv{
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
  width: 100%;
  height: auto;
  display: inline-block;
}

.pageContainer{
  box-shadow: 0 25px 70px rgba(0, 80, 150, 0.18);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  width: 100%;
  display: inline-block;
  padding:20px 40px;
}

.pageContainer h2 {
            color: #003b8e;
            font-size: 28px;
            margin-bottom: 20px;
        }

    
     .pageContainer   .quote-box {
            background: #eef5ff;
            border-left: 6px solid #003b8e;
            padding: 25px;
            margin-top: 30px;
            border-radius: 8px;
            font-style: italic;
            font-size: 20px;
            color: #003b8e;
        }

     .pageContainer   .author {
            text-align: right;
            margin-top: 10px;
            font-weight: bold;
            color: #555;
        }

        .pageContainer h2 {
    color: #003366;
    font-size: 1.5rem;
    font-weight: 700;
    border-left: 7px solid #0055a5;
    padding-left: 18px;
    margin-bottom: 28px;
    position: relative;
}


 .pageContainer .link-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 14px;
        margin-bottom: 10px;
        background: #ffffff;
        border-radius: 10px;
        cursor: pointer;
        text-decoration: none;
        transition: 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        max-width: 600px;
    }

    .pageContainer .link-row:hover {
        transform: translateY(-4px);
        box-shadow: 0 0 12px rgba(0, 90, 200, 0.5), 
                    0 0 22px rgba(0, 90, 200, 0.3);
    }

    .pageContainer .link-title {
        font-size: 16px;
       
        color: #003d80;
        display: flex;
        align-items: center;
        gap: 10px;
        width:90%;
    }

    .pageContainer .icon-left {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .pageContainer .icon-right {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        transition: transform 0.35s ease;
    }

    .pageContainer .link-row:hover .icon-right {
        transform: translateX(8px);
    }

    .pageContainer p{
      margin-bottom: 12px;
    }



#aboutUsTextContainerSmall {
  width: 100%;
  display: block;
}

#aboutUsTextContainerSmall h2 {
  color: #003366;
  font-size: 2rem;
  font-weight: 700;
  border-left: 7px solid #0055a5;
  padding-left: 18px;
  margin-bottom: 28px;
  position: relative;
}

#aboutUsTextContainerSmall p {
  color: #2c3e50;
  line-height: 1.95;
  font-size: 1.06rem;
  text-align: justify;
  margin-bottom: 22px;
  padding-left: 0px;
  position: relative;
}

/* page ends */


/* about us / Snes Starts */

.header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            padding: 20px;
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }
        
         .header-content {
            display: flex;
            align-items: center;
            gap: 40px;
            position: relative;
            z-index: 1;
        }
         .profile-img-wrapper {
            position: relative;
            flex-shrink: 0;
        }
       .profile-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            overflow: hidden; /* IMPORTANT: clips gradient to circle */
            background:  #F17909;
            border: 5px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .profile-img img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }

        
        .status-badge {
            position: absolute;
            bottom: 5px;
            right: 5px;
            width: 30px;
            height: 30px;
            background: #10b981;
            border-radius: 50%;
            border: 4px solid #1e3c72;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

         .profile-info h1 {
            color: white;
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
          .highlight {
            background: linear-gradient(120deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
        }
        
        .profile-info .credentials {
            display: flex;
            gap: 15px;
            align-items: center;
            margin-bottom: 12px;
        }

        .profile-info .title {
            color: rgba(255, 255, 255, 0.95);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 18px;
            letter-spacing: 0.3px;
        }
        
        .profile-info .bio {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            line-height: 1.7;
            text-align: justify;
            font-weight: 300;
        }

         .badge {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

         .section {
            margin-bottom: 40px;
        }
        
        .section:last-child {
            margin-bottom: 0;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            gap: 0px;
            margin-bottom: 0px;
        }
        
  
        
        .section h2 {
            color: #1e3c72;
            font-size: 24px;
            font-weight: 700;
            letter-spacing: -0.5px;
            flex: 1;
            width: 100%;
            text-align: center;
            margin-top: 30px;
        }
        
        .section-content {
            background: #f8fafc;
            padding: 30px;
            border-radius: 20px;
            border-left: 4px solid #667eea;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .section-content p {
            color: #475569;
            font-size: 15px;
            line-height: 1.8;
            text-align: justify;
            margin-bottom: 18px;
            font-weight: 400;
        }
        
        .section-content p:last-child {
            margin-bottom: 0;
        }

        .decorative-line {
        height: 3px;
        background: linear-gradient(90deg, transparent, #667eea, transparent);
        margin: 40px 0;
        border-radius: 2px;
        }

         .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .stat-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
        }
        
        .stat-label {
            color: #64748b;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

/* about us / Snes Ends */



/* Qiscet Nav gradient STRATS */
#titleBarLogo{
  float: left;
}

#titleBarMiddle{
  float: left;
}

.nav-gradient {
    width: 100%;
    height: 28px;
    background: linear-gradient(90deg, rgba(58,236,212,1) 0%, rgba(137,104,247,1) 100%);
    color: #fff;
    padding: 0 20px;
    font-size: 14px;
    line-height: 28px;
    overflow: hidden;
}

.left-section {
    float: left;
}

.college-name {
    border-right: 1px solid #fff;
    padding-right: 10px;
    margin-right: 10px;
    white-space: nowrap;
}

.counselling-code {
    white-space: nowrap;
}

.right-icons {
    float: right;
}

.right-icons a {
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
}

.icon1 {
    vertical-align: middle;
    display: inline-block;
}

.right-icons a:hover .icon1 {
    fill:  #1da1f2;
}

/* Qiscet Nav gradient ENDS */

/* Qiscet title STRATS */

#titleBarQiscet{
  width: 100%;
  height: auto;
  display: block;
  margin-top: 16px;
  margin-bottom: 0px;
  padding: 0;
}

.Line1{
	margin: -20px 0px 0px 0px !important;
	padding:0px !important;
	  font-family: "Poppins", sans-serif;
	color: #951313;
	display: block;
	width: 100%;
  font-weight: 700;
}

.Line2{
	margin-top:-24px;
	margin-bottom: 2px;
	padding:0px !important;
	 font-family: "Poppins", sans-serif;
	color: #951313;
	display: block;
	width: 100%;
	height: 34px;
	line-height: 34px;
  font-weight: 400;
}

.Line3{
	margin:0px 0px 0px !important;
	padding:0px !important;
	 font-family: "Poppins", sans-serif;
	color: #2f4867;
	display: block;
	width: 100%;
  height: 20px;
}

#accrideted{
  float: right;
}

/* Qiscet title ENDS */

/* Qiscet main menu STRATS */

  .navbar { background:#1a3b5d; }
  .nav-container { width:100%; position:relative; }

  #menu-toggle { display:none; }
  .hamburger { 
    display:none;
    cursor:pointer;
    position:absolute;
    top:12px;
    left:15px;
    z-index:2001;
    font-size:1.8rem;
    color:#fff;
  }

  .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 0;
  }

  .nav-item { display:inline-block; font-size:0.80rem; text-align:center; position:relative; vertical-align:top; padding:0;margin:0; }
  .nav-link { display:inline-block; color:#fff; text-decoration:none; font-weight:500; white-space:nowrap; transition:all 0.25s ease;  padding:2px;margin:0;}
  .nav-link svg { margin-left:5px; font-size:0.7rem; transition:transform 0.3s ease; }
  .nav-item:hover > .nav-link svg { transform:rotate(180deg); }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
   padding-left: 0 !important;
  margin-left: 0 !important;
  background: #2c5282;
  min-width: 180px;
  border-radius: 8px;
  margin-top: 0;
  z-index: 100;
  list-style: none; 
}

.dropdown li {
  list-style: none; 
   padding-left: 0 !important;
  margin-left: 0 !important;
  border-bottom: 1px dashed #ccc;
}

.dropdown li:last-child {
  border-bottom: none !important;
}

  .nav-item:hover .dropdown { display:block; }
  .dropdown .nav-link { display:block; padding:4px 4px; text-align:left; }
  .dropdown .nav-link:hover { background:transparent;  }

  @media (max-width: 992px) {
    .hamburger { display:block; }
    .nav-menu {
      display:block;
      position:fixed;
      top:50px;
      left:-100%;
      width:100%;
      height:calc(100vh - 50px);
      background:#1a3b5d;
      text-align:left;
      overflow-y:auto;
      transition:left 0.35s ease;
      z-index:1500;
    }
    #menu-toggle:checked ~ .nav-menu { left:0; }
    .nav-item { display:block; width:100%; }
    .nav-link { padding:0.9rem 1.2rem; border-bottom:1px solid rgba(255,255,255,0.08); }
    .dropdown { position:static; display:none; background:#0f2a44; border-radius:0; }
    .nav-item:hover .dropdown, .nav-item.open .dropdown { display:block; }
  }

/* Qiscet main menu ENDS */

/* Qiscet slider STRATS */

#mainPageHscroll{
  width: 100%;
  overflow: hidden;
  height: 40px;
  display: block;
  border:1px solid #EA5105;
}

.mainPageHscrollTitle{
  width: 140PX;
  height: 100%;
 background-color: #EA5105;
 color:#F5F5F5;
  display: inline-block;
  text-align: center;
 line-height: 40px;
 
}

#mainPageHscrollText{
   height: 40px;
  line-height: 40px;
  width: calc(100% - 140px);
  float: right;
  overflow: hidden;
}

.hero-slider {
background-image: linear-gradient(-225deg, #8472F5 0%, #B8DCFF 48%, #8472F5 100%);
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.hero-slider .uk-slider-items img {
    width: 80%;
    max-width: 1200px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 0px;
    box-shadow: 5px;
}

/* Qiscet slider ENDS */

/* Qiscet Bigmenu STRATS */

#bigmenuContainer{
    background-color: #cbd3ec;
    padding-top: 20px; 
    padding-bottom: 20px
}

#bigMenuleft {
  width: 100%;
  max-width: 230px;
  box-shadow: 0 6px 20px rgba(7, 23, 68, 0.12);
  height: 300px;
  background-color: #fff;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 10px;
}

#bigMenuleft ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#bigMenuleft ul li {
  position: relative; 
  font-size: 13px;
  padding: 12px 18px;
  border-bottom: 1px dashed #e0e7ff;
  cursor: pointer;
  color: #1e293b;
  background: linear-gradient(to right, #f8fafc 0%, transparent 100%);
  overflow: hidden; 
  transition: all 0.25s ease;
}

#bigMenuleft ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #3b82f6;
  opacity: 0.15;
  transition: width 0.35s ease;
  z-index: 0;
}

#bigMenuleft ul li:hover {
  background: linear-gradient(90deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e3a8a;
  padding-left: 22px;
  font-weight: 700;
  border-left: 3px solid #3b82f6;
  box-shadow: inset 0 0 8px rgba(59, 130, 246, 0.1);
  z-index: 1;
}

#bigMenuleft ul li:hover::before {
  width: 100%;
}

#bigMenuleft ul li:active {
  background: #bfdbfe;
  transform: translateX(3px);
}

#bigMenuleft ul li:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#bigMenuleft ul li:last-child {
  border-bottom: none;
}

#bigMenuleft1 {
  width: 100%;
  box-shadow: 0 6px 20px rgba(7, 23, 68, 0.12);
  height: auto;
  background-color: #fff;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 10px;
}

#bigMenuleft1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#bigMenuleft1 ul li {
  position: relative;
  font-size: 13px;
  padding: 0; 
  border-bottom: 1px dashed #e0e7ff;
  background: linear-gradient(to right, #f8fafc 0%, transparent 100%);
  overflow: hidden;
  transition: all 0.25s ease;
}

#bigMenuleft1 ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #3b82f6;
  opacity: 0.15;
  transition: width 0.35s ease;
  z-index: 0;
}

#bigMenuleft1 ul li a {
  display: block;
  width: 100%;
  padding: 12px 18px;
  text-decoration: none;
  color: #1e293b;
  position: relative;
  z-index: 2; 
  transition: all 0.25s ease;
}

#bigMenuleft1 ul li:hover {
  background: linear-gradient(90deg, #dbeafe 0%, #bfdbfe 100%);
  border-left: 3px solid #3b82f6;
}

#bigMenuleft1 ul li:hover::before {
  width: 100%;
}

#bigMenuleft1 ul li:hover a {
  color: #1e3a8a;
  padding-left: 24px;
  font-weight: 700;
}

#bigMenuleft1 ul li a.LeftSidebarMenuItemColor {
  background: #dbeafe;
  color: #1e3a8a;
  font-weight: 700;
  border-left: 3px solid #3b82f6;
}

#bigMenuleft1 ul li:active {
  transform: translateX(3px);
}

#bigMenuleft1 ul li:first-child a {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#bigMenuleft1 ul li:last-child {
  border-bottom: none;
}

#centeredMenUkContainer{
  background-color: #fff; padding-right: 14px; border-radius: 10px; box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
}

#bigMenuNews {
  width: 100%;
  max-width: 240px;
  box-shadow: 0 6px 20px rgba(7, 23, 68, 0.12);
  height: 300px;
  background-color: #fff;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  float: right;
}

.news {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
  border-top: 1px solid #e0e7ff;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.news-header {
  background: transparent;
  color: #1e3a8a;
  padding: 12px 10px;
  font-weight: 700;
  font-size: 14.5px;
  text-align: center;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-bottom: 1px solid #e0e7ff;
  position: relative;
}
.news-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 40px;
  height: 2px;
  background: #1e3a8a;
  transform: translateX(-50%);
  border-radius: 1px;
}

#marqueeContainer {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.news-list {
  padding: 12px;
  position: relative;
  background-color: #fff;
}

.news-item {
  background: #f8fafc;
  padding: 8px 10px;
  border-radius: 6px;
  border-left: 3px solid #3b82f6;
  transition: all 0.25s ease;
  cursor: pointer;
  margin-top: 10px;
}
.news-item:hover {
  background: white;
  border-left-color: #1e3a8a;
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.12);
  background-color: rgb(227, 235, 250);
}
.news-item:active {
  transform: scale(0.99);
}
.date {
  font-size: 8.5px;
  color: #1e3a8a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.n-title {
  font-size: 12px;
  font-weight: 700;
  margin: 2px 0;
}
.desc {
  font-size: 10.5px;
  color: #64748b;
}

#centeredMenu {
  box-shadow: 0 6px 20px rgba(7, 23, 68, 0.12);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 10px;
}

 #centeredMenu .card {
  border-radius: 14px;
  text-decoration: none;
  color: #343333;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  display: inline-block;
  cursor: pointer;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.95);
  height: 100px; 
  width: 100%;
  overflow: hidden;
  text-align: center;
  vertical-align: middle;
  position: relative;
  font-size: 12px;
  font-weight: 600;
}

.icon {
        width: 46px;
        height: 46px;
        margin: 0 auto 4px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
        color: #1e3a8a;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        position: relative;
        z-index: 1;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      }

#centeredMenu .card .content {
  display: table;
  height: 100%;
  width: 100%;
}

#centeredMenu .card .content-inner {
  display: table-cell;
  vertical-align: middle;
}

#centeredMenu .card .content-inner .title{
 margin-top:10px;

}

#centeredMenu .card:hover {
        transform: translateY(-8px) scale(1.05);
        z-index: 10;
      }

#centeredMenu .card:hover .icon {
        background: linear-gradient(135deg, #1e3a8a, #3b82f6);
        color: white;
      }

#centeredMenu .card:hover .title {
        color: #1e3a8a;
        font-weight: 800;
      }

/* Qiscet Bigmenu ENDS */

/* About Qiscet, Qiscet Address STRATS */

#aboutUsContainer {
  box-shadow: 0 25px 70px rgba(0, 80, 150, 0.18);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}

#aboutUsTextContainer {
  width: 92%;
  display: block;
}

#aboutUsTextContainer h2 {
  color: #003366;
  font-size: 2rem;
  font-weight: 700;
  border-left: 7px solid #0055a5;
  padding-left: 18px;
  margin-bottom: 28px;
  position: relative;
}

#aboutUsTextContainer p {
  color: #2c3e50;
  line-height: 1.95;
  font-size: 1.06rem;
  text-align: justify;
  margin-bottom: 22px;
  padding-left: 18px;
  position: relative;
}

#aboutUsAddressContainter img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 80, 150, 0.25);
  transition: all 0.5s ease;
  border: 4px solid rgba(255, 255, 255, 0.9);
  animation: zoomIn 1.2s ease-out;
}

#aboutUsAddressContainter img:hover {
  transform: scale(1.06) translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 80, 150, 0.35);
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#aboutUsAddressContainter h2 {
  color: #003366;
  font-size: 20px;
  font-weight: 700;
  border-left: 5px solid #0055a5;
  padding-left: 14px;
  margin: 25px 0 18px;
}

#aboutUsAddressContainter .pageH2 {
  color: #003366;
  font-size: 20px;
  font-weight: 700;
  border-left: 5px solid #0055a5;
  padding:0px 0px 0px 14px;
}

#aboutUsAddressContainter p {
  font-size: 14.5px;
  line-height: 1.85;
  color: #34495e;
  margin-top: 12px;
  text-align: justify;
}

#aboutUsAddressContainter .address {
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
  padding: 10px 10px;
  border-radius: 14px;
  margin-top: 22px;
  color: #1a1a1a;
  font-size: 14.5px;
  box-shadow: 0 6px 22px rgba(0, 80, 150, 0.12);
  display: inline-block;
  width: 100%;
  box-shadow: 0 10px 28px rgba(0, 80, 150, 0.18);
}


#aboutUsAddressContainter .addressSvg {
  fill: #0055a5;
  width: 30px;
  height: 30px;
  float: left;
  margin-right: 8px;
}

.address strong {
  color: #003366;
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 500;
}
#addressDesc {
  float: left;
}

@media (min-width: 960px) {
  .uk-width-7-10\@m {
    width: 70%;
    float: left; 
  }
  .uk-width-3-10\@m {
    width: 30%;
    float: left; 
  }
}
/* About Qiscet, Qiscet Address Ends */

/*Qiscet management STARTS */
.team-img {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  overflow: hidden;
  margin: 35px auto 22px;
  box-shadow: 0 10px 30px rgba(63, 81, 181, 0.22);
  border: 7px solid #fff;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  background-color: #dee2e5;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.team-info {
  width: 100%;
  text-align: center;
  display: inline-block;
}

.team-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 14px 0 6px;
  color: #1e1e2e;
  letter-spacing: -0.3px;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}

.team-role {
  font-size: 0.95rem;
  color: #3f51b5;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}

.team-role::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 35px;
  height: 2.5px;
  background: #3f51b5;
  opacity: 0.35;
  border-radius: 2px;
  transition: width 0.5s ease;
}

.team-img img:hover {
  transform: scale(1.15);
}

.team-desc {
  font-size: 0.97rem;
  color: #555;
  line-height: 0.2;
  margin-bottom: 8px;
  opacity: 0.9;
  padding: 0px;
  text-align: center;
  width: 100%;
  margin: 10px auto 16px auto;
}

.desgHover:hover .team-role::before {
  width: 100%;
}

/*Qiscet management ENDS */

/* Qiscet Events and apps STARTS */

#eventsDiv {
  width: 100%;
  display: block;
  background-color: #6f35fc;
  padding-bottom: 30px;
  padding-top: 20px;
}

#eventsDiv h1 {
  text-align: center;
  color: #ffffff;
  font-size: 2.4em;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5),
    0 0 40px rgba(255, 255, 255, 0.3), 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
  width: 100%; text-align: center; font-weight: 700;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5),
      0 0 40px rgba(255, 255, 255, 0.3), 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  to {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8),
      0 0 60px rgba(255, 255, 255, 0.5), 0 5px 20px rgba(0, 0, 0, 0.4);
  }
}

#eventsDiv .subtitle {
  text-align: center;
  color: #e0e0e0;
  font-size: 1em;
  margin-bottom: 50px;
  opacity: 1;
}

.image-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.image-card::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;
  z-index: 2;
}

.image-card:hover::before {
  left: 100%;
}

.image-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
}

.image-card:hover .image-wrapper img {
  transform: scale(1.2) rotate(3deg);
  filter: brightness(1.1);
}

.image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: brightness(0.9);
}


.image-wrapperGallery {
    height: 180px;      /* thumbnail height */
    overflow: hidden;
}

.image-wrapperGallery img {
    width: 100%;
    height: 100%;
     object-fit: fill;  /* crop nicely like Instagram */
}


/* Qiscet Events and apps ENDS */

/* Qiscet recruiters STARTS */

.sponsor-btn {
  display: inline-block;
  position: relative;
  padding: 4px 20px;
  background: #ffffff;
  -moz-border-radius: 9999px;
  -webkit-border-radius: 9999px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: bold;
  color: #0a1d37;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 11px 0 rgba(1, 58, 55, 0.15);
  margin-top: 60px;
  margin-bottom: 20px;
}

.sponsor-btn .dot-left {
  position: absolute;
  left: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: #ff6200;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.sponsor-btn .dot-right {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: #ff6200;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.sponsor-btn span {
  display: inline-block;
  padding: 0 20px; 
  line-height: 1;
}

.recruitersCarousel {
  width: 100%;
  height: 100px;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 6px;
  margin: 10px 0;
  position: relative;
  background: #fff;
}

.recruitersCarousel-track {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  transition: none;
}

.recruitersCarousel img {
  width: 150px;
  height: 75px;
  margin-right: 80px;
  vertical-align: top;
  border: 0;
  display: inline-block;
}

/* Qiscet recruiters ENDS */

/* Qiscet Brochure and apps STARTS */

#brochureDiv {
  width: 100%;
  display: inline-block;
  text-align: center;
  background: #a0d8e8;
  padding-top: 30px;
  padding-bottom: 90px;
}

.main-title {
  font-size: 28px;
  color: #2c3e50;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.brochure-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 0 15px;
  animation: fadeInUp 1s ease;
}

.brochure-text {
  color: #2c3e50;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: center;
}

.download-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 10px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
}

.download-btn:hover {
  text-decoration: none;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.6);
}

#appcards {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 10px;
  margin-top: -80px;
}

.testimonial-card {
  width: 14%;
  background: white;
  border-radius: 10px;
  padding: 10px;
  position: relative;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.card-image {
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.testimonial-card:hover .card-image {
  transform: scale(1.05);
}

/* Qiscet Brochure and apps ENDS */

/* Qiscet Big Footer STARTS */
#bigFooter {
  background: rgba(10, 22, 40, 0.9);
  padding: 20px 20px;
}

.footer-container {
  background: linear-gradient(135deg, #0a1628 0%, #1a2f4d 100%);
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  padding: 20px 80px;
  color: #fff;
  position: relative;
}

.footer-column {
  float: left;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.footer-column h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0px;
  color: #8b95a5;
}

.footer-column ul {
  list-style: none;
  margin-left: 0px;
  padding-left: 0px;
  font-size: 15px;
}

.footer-column li {
  margin-bottom: 14px;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: #667eea;
  transform: translateX(5px);
}

.footerQiscetText {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0px;
  padding: 0px;
}

.footerQiscetTextDesc {
  color: #a8b2c1;
  font-size: 14px;
  text-align: left;
}

.footerQiscetTextDesc span {
  display: inline-block;
  width: 90%;
}

.social-icons {
  display: block;
  margin-bottom: 0px;
  padding-top: 8px;
}

.social-icons::after {
  content: "";
  display: table;
  clear: both;
}

.social-icon {
  width: 35px;
  height: 35px;
  background: #1e3a5f;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 10px;
  position: relative;
}

.social-icon:hover {
  background: #2d4f7f;
  transform: translateY(-3px);
}

.social-icon svg {
  width: 14px;
  height: 14px;
  fill: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 20px;
  display: block;
}

.footer-bottom::after {
  content: "";
  display: table;
  clear: both;
}

.copyright {
  color: #8b95a5;
  font-size: 14px;
  float: left;
}

.footer-links {
  float: right;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  margin-left: 30px;
  display: inline-block;
}

.footer-links a:hover {
  color: #667eea;
}

.footer-links a:first-child {
  margin-left: 0;
}

/* Qiscet Big Footer ENDS */


#aboutUsAddressContainter {
    container-type: inline-size; /* REQUIRED */
}


/* student verification starts */

.studentVerify-content-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        flex-wrap: wrap;
    }

.redText {
        margin: 0;
        color: #d92020;
        font-size: 18px;
        font-weight: 600;
    }

/* student verification ends */


/* careers starts */

.width80{
  width: 80%;
  margin-left: 10%;
}


 .intro {
            text-align: center;
            color: #5a4a8f;
            font-size: 1.4em;
            margin-bottom: 40px;
            /* text-transform: uppercase; */
            letter-spacing: 3px;
            border-bottom: 4px solid #667eea;
            padding-bottom: 20px;
            position: relative;
            width: 100%;
            text-align: center;
            display: inline-block;
            /* font-weight: 700; */
        }

        .intro::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #764ba2;
        }


 

.positions {
            margin: 30px 0;
        }

        .position-item {
            background: linear-gradient(135deg, #667eea 0%);
            color: white;
            padding: 8px 25px;
            margin: 15px 0;
            border-radius: 12px;
            font-size: 1.1em;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            position: relative;
            overflow: hidden;
            width: 60%;
            margin-left: 20%;
        }

        .position-item::before {
            content: '•';
            margin-right: 12px;
            font-size: 1.5em;
        }

        .position-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.4s ease;
        }

        .position-item:hover {
            transform: translateX(10px);
            box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
        }

        .position-item:hover::after {
            left: 100%;
        }


         .contact-section {
            margin-top: 40px;
            padding: 30px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 15px;
            text-align: center;
        }

        .contact-text {
            font-size: 1.0em;
            color: #333;
            margin-bottom: 15px;
            font-weight: 500;
            width: 100%;
            text-align: center;
        }

        .contact-number {
            font-size: 2em;
            color: #5a4a8f;
            font-weight: bold;
            letter-spacing: 2px;
            display: inline-block;
            padding: 15px 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .contact-number:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }


.profile-section {
            background: linear-gradient(to bottom, #f8f9ff 0%, white 100%);
            border-bottom: 1px solid #e0e7ff;
        }

        .profile-section {
            background: linear-gradient(to bottom, #f8f9ff 0%, white 100%);
            border-bottom: 1px solid #e0e7ff;
        }
        
        .profile-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
            border-left: 5px solid #667eea;
            /* transition: transform 0.3s ease; */
        }
        
        .name {
            font-size: 28px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 8px;
        }
        
        .title {
            font-size: 20px;
            color: #667eea;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .department {
            font-size: 18px;
            color: #718096;
            margin-bottom: 20px;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 12px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid #e0e7ff;
        }
        
        .contact-label {
            font-weight: 600;
            color: #667eea;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .contact-label::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #667eea;
            border-radius: 50%;
            display: inline-block;
        }
        
        .contact-value {
            color: #4a5568;
            line-height: 1.6;
        }

        .content-section {
            padding: 40px 0px;

        }

        .description {
            font-size: 18px;
            line-height: 1.8;
            color: #4a5568;
            margin-bottom: 35px;
            text-align: justify;
        }
        
        .objectives-title {
            font-size: 18px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 15px;
            padding-bottom: 0px;
            border-bottom: 3px solid #667eea;
            display: inline-block;
        }
        
        .objectives-list {
            list-style: none;
            padding: 0;
        }
        
        .objectives-list li {
            font-size: 17px;
            color: #4a5568;
            padding: 8px 25px;
            margin-bottom: 15px;
            /* background: linear-gradient(to right, #f8f9ff 0%, white 100%);
            border-radius: 10px;
            border-left: 4px solid #667eea; */
            transition: all 0.3s ease;
            position: relative;
            padding-left: 50px;
        }
        
        .objectives-list li::before {
            content: '✓';
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            background: #667eea;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
        }
        
        .objectives-list li:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
            background: linear-gradient(to right, #e0e7ff 0%, #f8f9ff 100%);
        }
        

/* careers ends */


/* contact page starts */

.pageContainer [uk-grid] {
    align-items: stretch;
}

.mapContact {
    width: 100%;
    height: 100%;     
    min-height: 300px; 
    border: none;
}

#aboutUsAddressContainter {
    height: 100%;
   
}

/* contact page ends */

@container (min-width: 100px) {
  .address {
    font-size: 14px !important;
    text-align: left !important;
  }

 /* #addressDesc strong {
    font-size: 10px !important;
    text-align: left !important;
} */
}