
.stats-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 25px;
  justify-content: space-between;
}

.stat-box {
  flex: 1;
  background: #ffffff;
  border-radius: 14px;
  padding: 35px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(142, 56, 137, 0.25);
}

.stat-box i {
  font-size: 40px;
  color: #8E3889;
  margin-bottom: 15px;
}

.stat-box h2 {
  font-size: 42px;
  color: #333;
  margin: 0;
  font-weight: 700;
}

.stat-box p {
  margin-top: 8px;
  font-size: 16px;
  color: #666;
  letter-spacing: 0.4px;
}

/* Gradient icon effect */
.gradient-icon {
  font-size: 44px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #8E3889, #ff7ac8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Hover glow for icon */
.stat-box:hover .gradient-icon {
  background: linear-gradient(135deg, #ff7ac8, #8E3889);
}

/* (Rest of your previous CSS stays same) */
.stats-section {
  background: #f8f9fc;
  padding: 50px 20px;
}

.stats-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 25px;
}

.stat-box {
  flex: 1;
  background: #ffffff;
  border-radius: 14px;
  padding: 35px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(142, 56, 137, 0.25);
}

.stat-box h2 {
  font-size: 42px;
  color: #333;
  margin: 0;
  font-weight: 700;
}

.stat-box p {
  margin-top: 8px;
  font-size: 16px;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
  }
}


 .table-container {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
        }
      
    
 .table thead {
            background-color: #2c3e50;
            color: white;
        }
  .table-hover tbody tr:hover {
            background-color: #c8fac0;
            transition: 0.3s;
        }
  .activity-badge {
            font-size: 0.85rem;
            font-weight: 500;
        }
  .table a{
    color: #8E3889;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .table a:hover{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: red;
  }

  /*---------------------------team members -----------------------*/

    /* General Section Styling */
.team-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.team-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

/* The Grid Container */
.team-grid {
  display: grid;
  /* This creates 4 equal columns */
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px;
}

/* Individual Card Styling */
.team-card {
 background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.team-card:hover {
  transform: translateY(-10px);
}

.member-info h3 {
  margin: 0 0 10px 0;
  color: #4f18f5;
  font-size: 1.25rem;
}

.designation {
  color: #666;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.email {
  color: #007bff;
  text-decoration: none;
  font-size: 0.9rem;
}

.email:hover {
  text-decoration: underline;
}

/* Responsive Design: Stack cards on smaller screens */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr; /* 1 per row on phones */
  }
}


.team-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}


.team-card button {
    margin-top: 15px;
    padding: 8px 18px;
    border: none;
    background: linear-gradient(45deg, #00C3FF, #007BFF);
    color: white;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.team-card button:hover {
    opacity: 0.8;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
}

.modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 30px;
    width: 50%;
    border-radius: 15px;
    text-align: left;
    animation: fadeIn 0.4s;
}


.modern-modal {
  width: 55%;
  border-radius: 20px;
  padding: 30px;
  background: linear-gradient(145deg, #ffffff, #f0f4ff);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: popUp 0.4s ease;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.modal-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #00C3FF;
}

.role {
  color: #007BFF;
  font-weight: 600;
}

.tags {
  margin: 10px 0 20px;
}

.tag {
  display: inline-block;
  background: linear-gradient(45deg, #00C3FF, #007BFF);
  color: #fff;
  padding: 6px 12px;
  border-radius: 15px;
  margin: 5px;
  font-size: 12px;
}

@keyframes popUp {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  background: #f1f3f9;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: #ff4d4d;
  color: white;
  transform: rotate(90deg) scale(1.1);
}

.modal-content {
  position: relative;
}

@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
}
/*-------------------down laod button ------------------------*/

.button-container {
  text-align: center;
  margin-top: 50px;
  padding-bottom: 40px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  
  /* Gradient matching your team cards */
  background: linear-gradient(145deg, #ffffff, #e6e6e6);
  color: #333;
  
  /* Styling */
  text-decoration: none;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1rem;
  border-radius: 50px; /* Pill shape */
  border: 1px solid #ddd;
  
  /* Shadow and Transition */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: linear-gradient(145deg, #f0f0f0, #ffffff);
  border-color: #bbb;
  color: #007bff; /* Slight blue tint on hover */
}

.btn-download:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.icon {
  font-size: 1.2rem;
}


/*************** contact us page */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* ===== SECTION WITH WORLD MAP ===== */
.contact-section{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../img/wp1936868.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 20px;
}

/* ===== CONTAINER ===== */
.contact-container{
    width:100%;
    max-width:1100px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    color:rgb(11, 11, 11);
}

/* ===== CONTACT INFO ===== */
.contact-info h2{
    font-size:36px;
    margin-bottom:20px;
}

.contact-info p{
    line-height:1.6;
    margin-bottom:15px;
    color: white;
    
}

.info-box{
    margin-top:25px;

}

.info-box div{
    margin-bottom:15px;
    color:#2c3e50;
    font-weight:600;
    font-size:17px;
    padding:6px 12px;
    border-left:4px solid #ed400b;
    border-radius:4px;
}

/* ===== FORM STYLE ===== */
.contact-form{
    backdrop-filter:blur(12px);
    background:rgba(166, 164, 164, 0.08);
    padding:35px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.4);
}

.contact-form h3{
    margin-bottom:20px;
    font-size:24px;
}

.input-group{
    margin-bottom:18px;
}

.input-group input,
.input-group textarea{
    width:100%;
    padding:12px 14px;
    border:none;
    border-radius:8px;
    outline:none;
    font-size:15px;
    background:rgba(255,255,255,0.85);
}

.input-group textarea{
    resize:none;
    height:120px;
}

/* ===== BUTTON ===== */
.contact-form button{
    width:100%;
    padding:13px;
    border:none;
    border-radius:8px;
    background:#00c6ff;
    background:linear-gradient(to right,#0072ff,#00c6ff);
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    transform:scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .contact-container{
        grid-template-columns:1fr;
    }

    .contact-info{
        text-align:center;
    }
}


/*---------------------gallery */

.gallery-section{
padding:60px 5%;
}

.gallery-title{
text-align:center;
font-size:32px;
margin-bottom:35px;
font-weight:600;
letter-spacing:1px;
}

/* Slider Container */
.slider-container{
position:relative;
overflow:hidden;
}

/* Slider Track */
.slider{
display:flex;
gap:25px;
overflow-x:auto;
scroll-behavior:smooth;
padding:10px;
}

.slider::-webkit-scrollbar{
display:none;
}

/* Glass Card */
.slide{
min-width:300px;
height:190px;
border-radius:18px;
overflow:hidden;
backdrop-filter: blur(12px);
background: rgba(255,255,255,0.15);
border:1px solid rgba(255,255,255,0.3);
box-shadow:0 8px 32px rgba(0,0,0,0.3);
position:relative;
cursor:pointer;
transition:0.4s;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
transition:0.5s;
}

/* Hover Effect */
.slide:hover img{
transform:scale(1.15);
}

.slide::after{
/*content:"View Photo";*/
position:absolute;
bottom:0;
left:0;
width:100%;
background:rgba(0,0,0,0.5);
text-align:center;
padding:10px;
opacity:0;
transition:0.4s;
}

.slide:hover::after{
opacity:1;
}

/* Navigation Buttons */
.nav-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
background: rgba(255,255,255,0.2);
border:none;
color:white;
font-size:22px;
width:45px;
height:45px;
border-radius:50%;
backdrop-filter: blur(6px);
cursor:pointer;
transition:0.3s;
z-index:2;
}

.nav-btn:hover{
background:white;
color:black;
}

.prev{
left:-10px;
}

.next{
right:-10px;
}

.gallery-title{
font-size:24px;
letter-spacing: 2px; 
color: #2c3e50;
}

.slide{
min-width:260px;
height:160px;
}

.gallery{
display:flex;
gap:20px;
padding:40px;
}

.gallery-img{
width:400px;
height:170px;
object-fit:cover;
border-radius:18px;
cursor:pointer;
transition:.3s;
}

.gallery-img:hover{
transform:scale(1.05);
}

/* ===== Lightbox ===== */

.lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:none;
justify-content:center;
align-items:center;
z-index:999;
}

.lightbox img{
max-width:100%;
max-height:100%;
border-radius:12px;
animation:zoom .3s;
}

@keyframes zoom{
from{transform:scale(.7); opacity:0;}
to{transform:scale(1); opacity:1;}
}

.close{
position:absolute;
top:25px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}

/*----------------------know more button*/


.neon-btn{
    position:relative;
    display:inline-block;
    padding:14px 30px;
    font-size:16px;
    color:#070707;
    text-decoration:none;
    letter-spacing:2px;
    border:2px solid #0b0b0b;
    border-radius:40px;
    transition:0.3s;
    overflow:hidden;
}

.neon-btn:hover{
    color:#0f172a;
    background:#c6f6f4;
    box-shadow:
        0 0 10px #00f7ff,
        0 0 20px #00f7ff,
        0 0 40px #00f7ff,
        0 0 80px #00f7ff;
}

/* glowing animation */
.neon-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(156, 152, 152, 0.6),transparent);
    color: black;
    transition:0.5s;
}

.neon-btn:hover::before{
    left:100%;
    color: black;
}


.modal{
  display:none;
  position:fixed;
  z-index:9999;
  left:0;
  top:0;
  width:100%;
  height:100%;
  backdrop-filter: blur(6px);
  background:rgba(0,0,0,0.4);

  justify-content:center;
  align-items:center;
}

.modal-content{
  background:white;
  width:65%;
  max-width:850px;
  padding:40px;
  border-radius:15px;
  animation:popup 0.4s ease;
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
}

.modal-content h2{
  font-size:38px;
  margin-bottom:20px;
}

.modal-content ul{
  font-size:18px;
  line-height:1.8;
}

.close-btn{
  position:absolute;
  right:30px;
  top:20px;
  font-size:28px;
  cursor:pointer;
}

@keyframes popup{
  from{
    transform:scale(0.8);
    opacity:0;
  }
  to{
    transform:scale(1);
    opacity:1;
  }
}

@media (max-width:768px){
  .modal-content{
    width:90%;
    padding:25px;
  }
}


.modal-overlay{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100vw;
  height:100vh;

  background:rgba(0,0,0,0.6);
  z-index:999999;

  display:flex;
  justify-content:center;
  align-items:center;
}

.modal-box{
  background:#fff;
  width:70%;
  max-width:900px;
  padding:40px;
  border-radius:12px;
  max-height:85vh;
  overflow-y:auto;
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
}

.modal-box h2{
  font-size:40px;
  margin-bottom:20px;
}

.modal-box ul{
  font-size:18px;
  line-height:1.8;
}

.close-btn{
  position:absolute;
  right:40px;
  top:20px;
  font-size:30px;
  cursor:pointer;
}

/*----logo */
/* Container */

/* Container */
.logo-container{
    display:flex;
    align-items:center;
    gap:15px;
    perspective:1000px;
}

/* GLOW BORDER WRAPPER */
.logo-glow{
    position:relative;
    border-radius:22px;
    padding:2px; /* border thickness */
}


/* GLASS CARD */

/* IMAGE */
.logo-img{
    height:100px;
    display:block;
    filter: drop-shadow(5px 10px 15px rgba(0,0,0,0.4));
}

/* TEXT */
.logo-text{
    font-size:40px;
    font-weight:800;
    color: #00C3FF;

    text-shadow:
      1px 1px 0 #0a58ca,
        2px 2px 0 #0a58ca,
        3px 3px 0 #084298,
        4px 4px 0 #052c65,
        5px 5px 0 #031633,
        6px 6px 15px rgba(0,0,0,0.4);
}

/* HOVER */
.logo-container:hover .logo-glass{
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}

/* ANIMATION */
@keyframes glowMove{
    0%{ background-position: 0% 50%; }
    50%{ background-position: 100% 50%; }
    100%{ background-position: 0% 50%; }
}








/*-----------------------*/


.sitename{
    font-size:40px;
    font-weight:700;
    color:white;
}

/*---ends */

/*--about us */



.vm-container{
    display:flex;
    gap:40px;
    flex-wrap:wrap;

    background:#f4f7fb;
    padding:60px 10%;
    font-family:Arial, Helvetica, sans-serif;
}

.vm-card{
    flex:1;
    min-width:320px;
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:0.3s;
    text-align: justify;
}

.vm-card:hover{
    transform:translateY(-5px);
}

.vm-card h2{
    color:#0b3d91;
    margin-bottom:15px;
    border-left:5px solid #0b3d91;
    padding-left:10px;
}

.vm-card p{
    line-height:1.7;
    text-align:justify;
}

.vm-card ul{
    padding-left:20px;
}

.vm-card li{
    margin-bottom:10px;
    line-height:1.6;
}
/* ends */

.expertise-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.expertise-item {
    display: inline-block;
    background: linear-gradient(135deg, #00C3FF, #0a58ca);
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 20px;   /* Bigger font */
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.expertise-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1a2b4c;
}

.profile-text {
    text-align: justify !important;
    font-size: 15px;
    color: #333;
    width: 100%;
}