   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
            min-height: 100vh;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
        
        .header-container {
            width: 100%;
            background: #fff;
            color: #2563eb;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 32px;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
            max-width: 1400px;
            margin: 20px auto;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-icon {
            width: 60px;
            height: 60px;
            background-image: url('imgs/logo.jpg');
            background-size: cover;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
        }
        
        .logo-icon i {
            font-size: 28px;
            color: white;
        }
        
        .head-arge h2 {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .head-arge p {
            font-size: 1rem;
            font-weight: 500;
            margin-top: 2px;
            color: #64748b;
        }
        
        .header-nav ul {
            display: flex;
            gap: 8px;
            list-style: none;
            transition: all 0.3s;
        }
        
        .header-nav ul li a {
            color: #2563eb;
            text-decoration: none;
            font-weight: 500;
            padding: 10px 18px;
            border-radius: 12px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }
        
        .header-nav ul li a:hover {
            background: #eff6ff;
            color: #1d4ed8;
        }
        
        .header-nav ul li a:hover i {
            transform: scale(1.1);
            color: #1d4ed8;
        }
        
        .header-nav ul li a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: #2563eb;
            border-radius: 3px;
            transition: width 0.3s;
        }
        
        .header-nav ul li a:hover::after {
            width: 70%;
        }
        
        .header-nav i {
            font-size: 1.1rem;
            color: #38bdf8;
            transition: all 0.3s;
        }
        
        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 48px;
            height: 48px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 6px;
            position: relative;
            z-index: 1001;
            border-radius: 12px;
            transition: background 0.3s;
        }
        
        .hamburger:hover {
            background: #eff6ff;
        }
        
        .hamburger span {
            display: block;
            height: 3px;
            width: 28px;
            background: #2563eb;
            border-radius: 3px;
            transition: all 0.3s;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: translateY(10px) rotate(45deg);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: translateY(-10px) rotate(-45deg);
        }
        
        .container-home {
            position: relative;
            height: 81.8vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
           background-color:#0046FF;
            background-size: cover;
            background-attachment: fixed;
            color: white;
            padding: 20px;
            box-sizing: border-box;
            overflow: hidden;
            margin-top: 9%;
            animation: fadeIn 1.0s ease-out forwards;
        }
        
        .body-home {
            max-width: 1200px;
            width: 100%;
            padding: 0 20px;
            text-align: left;
            z-index: 2;
            position: relative;
        }
        
        .body-home h1 {
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin: 0;
            letter-spacing: -1px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .body-home h1:nth-child(2) {
            background: linear-gradient(90deg, #38bdf8, #60a5fa);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 30px;
        }
        
        .body-home p {
            font-size: 1.3rem;
            line-height: 1.7;
            max-width: 700px;
            margin-bottom: 40px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
        }
        
        .body-home button {
            padding: 16px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-right: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .body-home button:first-child {
            background: #2563eb;
            color: white;
        }
        
        .body-home button:first-child:hover {
            background: #1d4ed8;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
        
        .body-home button:last-child {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .body-home button:last-child:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
        
        .body-home button a {
            color: inherit;
            text-decoration: none;
            display: block;
            height: 100%;
            width: 100%;
        }
        
        .stats-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .stats-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #38bdf8, #60a5fa);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }
        
        .stats-subtitle {
            font-size: 1.2rem;
            color: #cbd5e1;
            max-width: 700px;
            margin: 0 auto 60px auto;
            line-height: 1.6;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 40px 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(2, 8, 20, 0.3);
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            background: rgba(56, 189, 248, 0.1);
            border-color: rgba(56, 189, 248, 0.3);
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: #38bdf8;
            display: block;
            transition: all 0.3s;
        }
        
        .stat-card:hover .stat-number {
            color: white;
            transform: scale(1.1);
        }
        
        .stat-label {
            font-size: 1.2rem;
            color: #cbd5e1;
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        
        .plus-sign {
            font-size: 2rem;
            vertical-align: super;
            margin-left: 5px;
            color: #38bdf8;
        }
        
        .stat-card::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, #38bdf8, #60a5fa);
            transition: width 0.5s ease;
            border-radius: 0 0 0 16px;
        }
        
        .stat-card:hover::before {
            width: 100%;
        }
        
        .stats-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.1) 0%, transparent 40%);
            z-index: 1;
        }
        
        @media (max-width: 1100px) {
            .header-container {
                padding: 16px 24px;
            }
            
            .header-nav ul {
                gap: 6px;
            }
            
            .header-nav ul li a {
                padding: 10px 14px;
                font-size: 0.95rem;
            }
        }
        
        @media (max-width: 1000px) {
            .header-nav ul {
                flex-direction: column;
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: #fff;
                box-shadow: -5px 0 25px rgba(37, 99, 235, 0.15);
                padding: 100px 30px 30px 30px;
                gap: 20px;
                z-index: 1000;
                transition: right 0.4s ease;
            }
            
            .header-nav ul.active {
                right: 0;
            }
            
            .header-nav ul li a {
                padding: 16px 20px;
                border-radius: 12px;
                background: #f0f9ff;
                font-size: 1.1rem;
                box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
            }
            
            .hamburger {
                display: flex;
            }
            
            .body-home h1 {
                font-size: 3.5rem;
            }
            
            .body-home p {
                font-size: 1.1rem;
                max-width: 100%;
            }
            
            .body-home button {
                padding: 14px 30px;
                font-size: 1rem;
                margin-bottom: 15px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stat-number {
                font-size: 3rem;
            }
            
            .stats-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: row;
                padding: 12px 20px;
            }
            
            .head-arge h2 {
                font-size: 1.5rem;
            }
            
            .container-home {
                margin-top: 90px;
            }
        }
        
        @media (max-width: 600px) {
            .body-home h1 {
                font-size: 2.8rem;
            }
            
            .body-home p {
                font-size: 1rem;
            }
            
            .body-home button {
                display: block;
                width: 100%;
                max-width: 300px;
                margin-bottom: 20px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
            
            .stats-title {
                font-size: 2rem;
            }
            
            .stats-subtitle {
                font-size: 1rem;
            }
            
            .head-arge h2 {
                font-size: 1.3rem;
            }
            
            .head-arge p {
                font-size: 0.9rem;
            }
            
            .logo-icon {
                width: 50px;
                height: 50px;
            }
            
            .hamburger {
                width: 42px;
                height: 42px;
            }
            
            .hamburger span {
                width: 24px;
            }
            
            .header-nav ul {
                width: 85%;
                padding: 90px 20px 20px 20px;
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .header-container, .container-home, .stats-section {
            animation: fadeIn 0.8s ease-out forwards;
        }
        
        .container-home {
            animation-delay: 0.2s;
        }
        
        .stats-section {
            animation-delay: 0.4s;
        }
        
        .clear {
            clear: both;
        }
        @media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        margin: 0 auto;
        gap: 12px;
    }

    .stat-card {
        padding: 18px 8px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .stat-number {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 0.95rem;
    }
}

.head-cards-container {
    width:100%;
    height:auto;
    display: block;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: 5%;
}
.head-cards p {
    font: 15pt;
}
.features-section {
    animation: fadeIn 1.0s ease-out forwards;
    margin: 48px 0;
    padding: 0 16px;
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 32px;
}

.features-header h2 {
    font-size: 2.2rem;
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 10px;
}

.features-header p {
    font-size: 1.3rem;
    color: #1f2937;
    padding-top:1%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top:10%;
}

.feature-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.07);
    padding: 32px 22px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(37,99,235,0.13);
}

.feature-icon {
    font-size: 2.5rem;
    color: #38bdf8;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 18px;
}

.feature-link {
    display: inline-block;
    padding: 10px 28px;
    background: #ffd600;
    color: #2563eb;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    font-size: 1rem;
}

.feature-link:hover {
    background: #ffe066;
    color: #1f2937;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
    .feature-card {
        padding: 24px 10px;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .feature-card {
        padding: 18px 6px;
        font-size: 0.95rem;
    }
    .feature-icon {
        font-size: 2rem;
    }
    .feature-card h3 {
        font-size: 1.1rem;
    }
}.news-section {
  margin: 60px auto;
  max-width: 800px; 
  width: 80%; 
  padding: 0 16px;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.news-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
}

.news-header a {
  color: #2563eb;
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.news-card-large {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; 
}

.news-card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.news-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover; 
}

.news-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px; 
    overflow: hidden;
    animation: fadeIn 1.2s ease-out forwards;
}

.news-card-large:hover .news-card-image {
    transform: scale(1.05);
}

.news-card-large .view-details-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.7); 
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card-large:hover .view-details-overlay {
    opacity: 1;
}

.news-card-large .view-details-overlay span {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-card-large .view-details-overlay i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.news-card-large:hover .view-details-overlay i {
    transform: translateX(5px);
}

.news-card-content-large {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-date-large {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 8px;
}

.news-title-large {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.news-desc-large {
  font-size: 1rem;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 15px;
}

.news-link-large {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  align-self: flex-start;
  transition: color 0.2s;
}

.news-link-large:hover {
  color: #1d4ed8;
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  .news-title-large {
    font-size: 1.2rem;
  }
  .news-desc-large {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .news-card-image {
    height: 180px;
  }
  .news-card-content-large {
    padding: 15px;
  }
  .news-title-large {
    font-size: 1.1rem;
  }
  .news-date-large {
    font-size: 0.85rem;
  }
}

.footer {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  padding: 60px 0 30px 0;
  margin-top: 80px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-map {
  margin-top: 6.5%;
  border-radius: 12px;
  overflow: hidden;
}

.footer-map iframe {
  border-radius: 12px;
  width: 100%;
  height: 300px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 16px;
}

.footer-links ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  padding: 8px 0;
  position: relative;
}

.footer-links ul li a:hover {
  color: #38bdf8;
  transform: translateX(8px);
}

.footer-links ul li a::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #38bdf8;
  transition: width 0.3s ease;
}

.footer-links ul li a:hover::before {
  width: 8px;
}

.footer-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #38bdf8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  background: linear-gradient(90deg, #38bdf8, #60a5fa);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.submit-btn:hover {
  background: linear-gradient(90deg, #0ea5e9, #3b82f6);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.3);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
}

.social-media {
  display: flex;
  gap: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: #38bdf8;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.3);
}

.copyright {
  color: #94a3b8;
  font-size: 0.95rem;
}

@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-map iframe {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 0 20px 0;
  }
  
  .footer-container {
    padding: 0 16px;
    gap: 24px;
  }
  
  .footer-form h3 {
    font-size: 1.3rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .submit-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}
.about-section,
.mission-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}.about-section {
    margin-top: 200px;
  }
  
  @media (max-width: 900px) {
    .about-section {
      margin-top: 130px;
    }
  }
  
  @media (max-width: 600px) {
    .about-section {
      margin-top: 110px;
    }
  }
.about-container,
.mission-container {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.about-title,
.mission-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 18px;
}

.about-description,
.mission-description {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 18px;
    line-height: 1.7;
}
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    margin-top: 50px;
  }
  
  .team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .team-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 50px;
    position: relative;
  }
  
  .team-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
  }
  
  .team-card {
    cursor: pointer;
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 320px;
    position: relative;
    overflow: hidden;
  }
  
  .team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .team-card:hover::before {
    transform: scaleX(1);
  }
  
  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 50%; 
  }
  
  .team-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
  }
  
  .team-role {
    font-size: 1rem;
    font-weight: 500;
    color: #3b82f6;
    margin-bottom: 5px;
  }
  
  .team-department {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 400;
  }
  
  @media (max-width: 1200px) {
    .team-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }
  }
  
  @media (max-width: 900px) {
    .team-grid {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }
    
    .team-title {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .team-section {
      padding: 60px 0;
    }
    
    .team-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
    }
    
    .team-card {
      padding: 20px;
      max-width: 280px;
    }
    
    .team-photo {
      width: 70px;
      height: 70px;
    }
    
    .team-name {
      font-size: 1.1rem;
    }
    
    .team-role {
      font-size: 0.9rem;
    }
    
    .team-department {
      font-size: 0.8rem;
    }
  }
  
  @media (max-width: 600px) {
    .team-grid {
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 15px;
    }
    
    .team-card {
      padding: 15px;
      max-width: 250px;
    }
    
    .team-photo {
      width: 60px;
      height: 60px;
    }
    
    .team-title {
      font-size: 1.8rem;
      margin-bottom: 40px;
    }
  }
  
  @media (max-width: 480px) {
    .team-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .team-card {
      max-width: 300px;
    }
    
    .team-container {
      padding: 0 15px;
    }
  }

.fullscreen-hamburger {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2001;
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(37,99,235,0.13);
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}
.fullscreen-hamburger:hover {
  background: #e0f2fe;
  box-shadow: 0 4px 16px rgba(37,99,235,0.18);
}
.fullscreen-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #2563eb;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(.68,-0.55,.27,1.55);
}
.fullscreen-hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.fullscreen-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.fullscreen-hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.fullscreen-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #2563eb 60%, #38bdf8 100%);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(.68,-0.55,.27,1.55);
}
.fullscreen-menu.active {
  opacity: 1;
  pointer-events: auto;
}
.fullscreen-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  align-items: center;
}
.fullscreen-menu ul li a {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.18s, background 0.18s, transform 0.18s;
  padding: 0.4em 1.2em;
  border-radius: 10px;
  background: none;
  box-shadow: none;
  opacity: 0.92;
}
.fullscreen-menu ul li a:hover {
  color: #38bdf8;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px) scale(1.04);
  opacity: 1;
}
@media (max-width: 600px) {
  .fullscreen-hamburger {
    width: 40px;
    height: 40px;
    top: 14px;
    right: 14px;
  }
  .fullscreen-hamburger span {
    width: 20px;
    height: 2.5px;
  }
  .fullscreen-menu ul li a {
    font-size: 1.2rem;
    padding: 0.4em 0.8em;
  }
  .fullscreen-menu ul {
    gap: 2rem;
  }
}

.fullscreen-hamburger,
.fullscreen-menu {
  display: none;
}

@media (max-width: 1000px) {
  .fullscreen-hamburger {
    display: flex;
  }
  .fullscreen-menu {
    display: flex;
  }
  .header-nav {
    display: none !important;
  }
}

@media (min-width: 1000px) {
  .fullscreen-hamburger,
  .fullscreen-menu {
    display: none !important;
  }
  .header-nav {
    display: flex !important;
  }
}
.popup {
    display: none; 
    position: fixed;
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: #fefefe;
    margin: auto; 
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    transform: translateY(20px); 
    transition: transform 0.3s ease;
}

.popup.active .popup-content {
    transform: translateY(0); 
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover,
.close-btn:focus {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

.popup.success .popup-content {
    border: 2px solid #28a745;
}

.popup.error .popup-content {
    border: 2px solid #dc3545;
}

.popup-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.popup.success h3 {
    color: #28a745;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.popup.error p {
    color: #dc3545;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.popup.success p {
    color: #333;
    font-size: 1.1rem;
}

.popup.news-detail-popup .popup-content {
    max-width: 900px; 
    width: 80%;
    height: auto; 
    padding: 30px;
    background-color: #fff; 
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    text-align: center; 
}

.news-popup-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
    text-align: center; 
}

.news-popup-image {
    width: 100%; 
    aspect-ratio: 16 / 9; 
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 30px auto;
    border-radius: 8px;
    object-fit: cover;
}

.news-popup-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    text-align: center; 
    max-width: 90%; 
    margin: 0 auto; 
}

@media (max-width: 768px) {
    .popup.news-detail-popup .popup-content {
        width: 90%;
        max-width: 90%;
    }
    .news-popup-title {
        font-size: 2rem;
    }
    .news-popup-image {
        width: 90%;
        margin-bottom: 20px;
    }
    .news-popup-text {
        font-size: 1rem;
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .popup.news-detail-popup .popup-content {
        padding: 20px;
    }
    .news-popup-title {
        font-size: 1.5rem;
    }
    .news-popup-image {
        height: 150px;
    }
    .news-popup-text {
        font-size: 0.9rem;
    }
}

.popup.profile-popup .popup-content {
    background: linear-gradient(145deg, #e0f2fe, #f0f9ff);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
}

.profile-image-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 4px solid #38bdf8;
    box-shadow: 0 0 0 5px rgba(56, 189, 248, 0.2);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 8px;
}

.profile-title {
    font-size: 1.2rem;
    color: #3b82f6;
    margin-bottom: 25px;
}

.profile-contact-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.profile-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.linkedin-link {
    background: #0077B5;
    color: white;
}

.linkedin-link:hover {
    background: #005582;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 119, 181, 0.3);
}

.email-link {
    background: #ea4335;
    color: white;
}

.email-link:hover {
    background: #c5342c;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(234, 67, 53, 0.3);
}

.profile-contact-link i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .popup-content {
        padding: 20px;
    }
    .profile-image-container {
        width: 100px;
        height: 100px;
    }
    .profile-name {
        font-size: 1.6rem;
    }
    .profile-title {
        font-size: 1rem;
    }
    .profile-contact-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .news-detail-title {
        font-size: 1.6rem;
    }
    .news-detail-date {
        font-size: 0.9rem;
    }
    .news-detail-full-content {
        font-size: 1rem;
    }
}

.page-hero {
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: white;
    padding: 100px 20px 60px 20px;
    text-align: center;
    margin-top: 140px; 
    margin-bottom:70px;
  
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.news-announcements-page {
    margin-top: 120px; 
}

@media (max-width: 1000px) {
    .page-hero {
        padding-top: 80px;
        margin-top: 90px; 
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding-top: 60px;
        font-size: 0.9rem;
    }
    .page-hero h1 {
        font-size: 2.2rem;
    }
    .page-hero p {
        font-size: 1rem;
    }
    .news-announcements-page {
        margin-top: 100px;
    }
}

@media (max-width: 600px) {
    .page-hero {
        padding-top: 50px;
        margin-top: 80px;
    }
    .page-hero h1 {
        font-size: 1.8rem;
    }
    .page-hero p {
        font-size: 0.9rem;
    }
    .news-announcements-page {
        margin-top: 90px;
    }
}

.sponsors-section {
    position: relative; 
    overflow: hidden; 
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    text-align: center;
}

.sponsors-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px; 
    height: 1000px; 
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0) 60%); 
    border-radius: 50%;
    transform: translate(-50%, -50%); 
    animation: floatingShape 15s infinite alternate ease-in-out; 
    z-index: 1; 
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.sponsor-card {
    position: relative; 
    z-index: 2; 
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 150px; 
    animation: fadeIn 1.2s ease-out forwards;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sponsor-logo {
    max-width: 100%;
    max-height: 100px; 
    object-fit: contain; 
    filter: grayscale(100%); 
    opacity: 0.7;
    transition: all 0.3s ease;
}

.sponsor-card:hover .sponsor-logo {
    filter: grayscale(0%); 
    opacity: 1;
}

@media (max-width: 900px) {
    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    .sponsor-card {
        height: 120px;
    }
    .sponsor-logo {
        max-height: 80px;
    }
}

@media (max-width: 600px) {
    .sponsors-section {
        padding: 40px 15px;
    }
    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .sponsor-card {
        height: 100px;
    }
    .sponsor-logo {
        max-height: 70px;
    }
}

@keyframes floatingShape {
    0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.9; }
    50% { transform: translate(-48%, -52%) scale(1.05); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.9; }
}

.project-portfolio {
  /*
    padding: 80px 20px;*/
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
 
}

.project-portfolio .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
}

.portfolio-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative; 
}
.portfolio-item :nth-child(1)
{
  
  animation: fadeIn 1.4s ease-out forwards;
}
.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px; 
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 1px solid #eee;
    transition: transform 0.3s ease; 
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.view-details-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.7); 
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .view-details-overlay {
    opacity: 1;
}

.view-details-overlay span {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-details-overlay i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .view-details-overlay i {
    transform: translateX(5px);
}

.portfolio-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 10px;
}

.portfolio-content p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.popup.project-detail-popup .popup-content {
    max-width: 900px;
    width: 80%;
    height: auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.popup.project-detail-popup .project-popup-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
    text-align: center;
}

.popup.project-detail-popup .project-popup-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 30px auto;
    border-radius: 8px;
    object-fit: cover;
}

.popup.project-detail-popup .project-popup-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .project-portfolio .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    .portfolio-image-wrapper {
        height: 180px;
    }
    .portfolio-content {
        padding: 20px;
    }
    .portfolio-content h3 {
        font-size: 1.2rem;
    }
    .portfolio-content p {
        font-size: 0.9rem;
    }
    .popup.project-detail-popup .project-popup-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .project-portfolio {
        padding: 40px 15px;
    }
    .project-portfolio .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .portfolio-image-wrapper {
        height: 160px;
    }
    .portfolio-content {
        padding: 15px;
    }
    .portfolio-content h3 {
        font-size: 1.1rem;
    }
    .portfolio-content p {
        font-size: 0.85rem;
    }
    .popup.project-detail-popup .project-popup-title {
        font-size: 1.5rem;
    }
} /* İLETİŞİM SAYFASI FORM STİLLERİ */
.iletisim-form-container {
  max-width: 800px;
  margin: 165px auto;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
  animation: fadeIn 0.8s ease-out;
}

.iletisim-form-container h3 {
  text-align: center;
  font-size: 1.8rem;
  color: #2563eb;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.iletisim-form-container h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #38bdf8, #60a5fa);
  border-radius: 2px;
}

.iletisimhtm-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.iletisimhtm-form .form-group {
  position: relative;
}

/* Çift sütunlu form için ayar */
.iletisimhtm-form .form-group:nth-child(5),
.iletisimhtm-form .form-group:nth-child(6) {
  grid-column: span 2;
}

.iletisimhtm-form input,
.iletisimhtm-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f8fafc;
}

.iletisimhtm-form input:focus,
.iletisimhtm-form textarea:focus {
  outline: none;
  border-color: #38bdf8;
  background-color: white;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}

.iletisimhtm-form input::placeholder,
.iletisimhtm-form textarea::placeholder {
  color: #94a3b8;
}

.iletisimhtm-form textarea {
  min-height: 150px;
  resize: vertical;
}

.iletisimhtm-form .submit-btn {
  grid-column: span 2;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.iletisimhtm-form .submit-btn:hover {
  background: linear-gradient(90deg, #1d4ed8, #0ea5e9);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
  .iletisimhtm-form {
    grid-template-columns: 1fr;
  }
  
  .iletisimhtm-form .form-group:nth-child(5),
  .iletisimhtm-form .form-group:nth-child(6),
  .iletisimhtm-form .submit-btn {
    grid-column: span 1;
  }
  
  .iletisim-form-container {
    padding: 20px;
    margin: 150px 15px;
  }
  
  .iletisim-form-container h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .iletisimhtm-form input,
  .iletisimhtm-form textarea {
    padding: 12px 16px;
  }
  
  .iletisimhtm-form .submit-btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
}