/* Custom Styles for Professional Society Menu */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Noto+Sans+Devanagari:wght@100..900&display=swap');


:root {
  /* --primary-color: #2c5aa0;
  --secondary-color: #f8f9fa;
  --accent-color: #17a2b8;
  --text-dark: #333;
  --text-light: #666; */

  --primary-color: #1c4375; 
   --secondary-color: #072f63; 
    --accent-color: #5385c5; 
    --text-dark: #2c3e50; 
    --text-light: #6c757d;
    --bg-light: #f8f9fa;

      --primary: #ddcebb;
  --secondary: #f68817;
  --white: #ffffff;
  --light-text: #ccc;
  --dark-color: #262B3E;
  --light-text-v2: #F9F9F9;
}
body{
    overflow-x: hidden;
    /*font-family: 'Poppins', sans-serif;*/
    font-family:  Geist,Geist Fallback !important;
}


a
{
    text-decoration: none;
}
.navbar-nav {
    padding-top: 1rem;
    justify-content: space-between;
    width: 100%;
  }
/* Top Header Styles */
.top-header {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
  font-size: 0.875rem;
}

.top-header a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.top-header a:hover {
  opacity: 0.8;
}

/* Navbar Styles */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
}

.top-header a i {
    font-size: 19px;
}
.top-header small {
    font-size: 16px;
}
.navbar-brand i {
  color: var(--accent-color);
}

/* Navigation Links */
.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 10px 11px!important;
  transition: all 0.3s ease;
  border-radius: 0.375rem;
  /* margin: 0 0.25rem; */
  font-size: 14px;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  background-color: rgba(44, 90, 160, 0.1);
}

.nav-link.active {
  color: var(--primary-color) !important;
  background-color: rgba(44, 90, 160, 0.1);
}

/* Dropdown Styles */
.dropdown-menu {
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 250px;
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s ease;
  font-size: 14px;
}

.dropdown-item:hover {
  background-color: rgba(44, 90, 160, 0.1);
  color: var(--primary-color);
  transform: translateX(5px);
}

.dropdown-item i {
  color: var(--accent-color);
  width: 20px;
}

.dropdown-divider {
  margin: 0.5rem 0;
  border-color: rgba(44, 90, 160, 0.2);
}

/* Login Button Special Styling */
.navbar .nav-item:last-child .nav-link {
  border: 2px solid var(--primary-color);
  color: var(--primary-color) !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar .nav-item:last-child .nav-link:hover {
  background-color: var(--primary-color);
  color: white !important;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
  .top-header .col-md-6:last-child {
    text-align: left !important;
    margin-top: 0.5rem;
  }

  .navbar-nav {
    padding-top: 1rem;
  }

  .nav-link {
    margin: 0.25rem 0;
  }

  .dropdown-menu {
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 0;
  }

  .dropdown-item:hover {
    transform: none;
  }
}

/* Sticky Navbar Effect */
.navbar.sticky-top {
  transition: all 0.3s ease;
}

.navbar.sticky-top.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

/* Demo Content Styling */
.jumbotron {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef) !important;
  border: 1px solid rgba(44, 90, 160, 0.1);
}

/* Animation for Dropdown */
.dropdown-menu {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  display: block;
  visibility: hidden;
}

.dropdown:hover .dropdown-menu,
.dropdown.show .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Hover effect for main nav items */
.nav-item:hover .nav-link {
  transform: translateY(-2px);
}

/* Custom scrollbar for dropdown if needed */
.dropdown-menu::-webkit-scrollbar {
  width: 4px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 2px;
}

/* Focus states for accessibility */
.nav-link:focus,
.dropdown-item:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* home page css */
 body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .search-box {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50px;
            padding: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .search-box input {
            border: none;
            background: transparent;
            padding: 12px 20px;
        }

        .search-box input:focus {
            outline: none;
            box-shadow: none;
        }

        .search-btn {
            background: var(--primary-color);
            border: none;
            border-radius: 50px;
            padding: 12px 25px;
            color: white;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: none;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 24px;
        }

        .news-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }

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

        .news-image {
            /*height: 300px;*/
            background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
            position: relative;
            overflow: hidden;
        }
        .news-image img {
            height: auto;
            width: 100%;
        }

        .news-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            border-radius: 2px;
        }

        .stats-section {
            background: var(--bg-light);
            padding: 60px 0;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
        }

        .stat-label {
            color: var(--text-light);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .publication-item {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            border-left: 4px solid var(--accent-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .publication-item:hover {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transform: translateX(5px);
        }

        .event-date {
            background: var(--primary-color);
            color: white;
            border-radius: 8px;
            padding: 10px 15px;
            text-align: center;
            min-width: 80px;
        }

        .event-item {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .event-item:hover {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .footer {
            background: var(--primary-color);
            color: white;
            padding: 50px 0 30px;
        }

        .footer-section h5 {
            color: var(--accent-color);
            margin-bottom: 20px;
        }

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

        .footer-section ul li {
            margin-bottom: 8px;
        }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--accent-color);
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 50px 0;
            }
            
            .feature-card {
                margin-bottom: 30px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
















         .keep-exploring-section {
            background: linear-gradient(135deg, #459085 0%, #2c5f5d 50%, #306761 100%);
            position: relative;
            padding: 100px 0;
            overflow: hidden;
            color: white;
        }

        .network-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 50px 50px, 80px 80px, 60px 60px;
            animation: networkMove 20s linear infinite;
        }

        .network-pattern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.02) 50%, transparent 60%),
                linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.02) 50%, transparent 60%);
            background-size: 100px 100px;
            animation: patternShift 15s ease-in-out infinite;
        }

        @keyframes networkMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-50px, -50px); }
        }

        @keyframes patternShift {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.7; }
        }

        .exploring-content {
            position: relative;
            z-index: 2;
        }

        .exploring-title {
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 60px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .explore-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .explore-item {
            margin-bottom: 25px;
            transform: translateX(50px);
            opacity: 0;
            animation: slideInRight 0.8s ease forwards;
        }

        .explore-item:nth-child(1) { animation-delay: 0.2s; }
        .explore-item:nth-child(2) { animation-delay: 0.4s; }
        .explore-item:nth-child(3) { animation-delay: 0.6s; }
        .explore-item:nth-child(4) { animation-delay: 0.8s; }

        @keyframes slideInRight {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .explore-link {
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 400;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
        }

        .explore-link::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #4ade80, #22d3ee);
            transition: width 0.4s ease;
        }

        .explore-link:hover {
            color: #4ade80;
            transform: translateX(15px);
            text-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
        }

        .explore-link:hover::before {
            width: 100%;
        }

        .explore-icon {
            margin-right: 20px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            width: 20px;
        }

        .explore-link:hover .explore-icon {
            transform: scale(1.2) rotate(5deg);
            color: #22d3ee;
        }

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: floatShape 8s ease-in-out infinite;
        }

        .shape-1 {
            top: 10%;
            left: 10%;
            width: 60px;
            height: 60px;
            background: #4ade80;
            border-radius: 50%;
            animation-delay: 0s;
        }

        .shape-2 {
            top: 70%;
            left: 15%;
            width: 40px;
            height: 40px;
            background: #22d3ee;
            transform: rotate(45deg);
            animation-delay: 2s;
        }

        .shape-3 {
            top: 30%;
            right: 20%;
            width: 80px;
            height: 80px;
            background: #a78bfa;
            border-radius: 20px;
            animation-delay: 4s;
        }

        .shape-4 {
            bottom: 20%;
            right: 10%;
            width: 50px;
            height: 50px;
            background: #fb7185;
            border-radius: 50%;
            animation-delay: 6s;
        }

        @keyframes floatShape {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.1;
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
                opacity: 0.3;
            }
        }

        .section-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
        }

        @media (max-width: 768px) {
            .keep-exploring-section {
                padding: 60px 0;
            }
            
            .exploring-title {
                font-size: 2.5rem;
                margin-bottom: 40px;
            }
            
            .explore-link {
                font-size: 1.1rem;
                padding: 15px 0;
            }
            
            .explore-link:hover {
                transform: translateX(10px);
            }
        }

         .social-impact-section {
            padding: 80px 0;
            background: #f8f9fa;
            position: relative;
            overflow: hidden;
        }

        .impact-content {
            position: relative;
            z-index: 2;
        }

        .impact-title {
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #6c757d;
            margin-bottom: 20px;
        }

        .impact-heading {
            font-size: 2.5rem;
            font-weight: 300;
            color: #2c3e50;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .impact-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #495057;
            margin-bottom: 40px;
        }

        .impact-btn {
            background: transparent;
            border: 2px solid #2c5f5d;
            color: #2c5f5d;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .impact-btn:hover {
            background: #2c5f5d;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(44, 95, 93, 0.3);
        }

        .device-mockup {
            background: linear-gradient(135deg, #326c68 0%, #479488 100%);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .device-frame {
            background: #1f2937;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .device-screen {
            background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
            border-radius: 10px;
            aspect-ratio: 3/4;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 30px;
        }

        .report-year {
            font-size: 1.2rem;
            font-weight: 300;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .report-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .report-subtitle {
            font-size: 1rem;
            opacity: 0.8;
            margin-bottom: 30px;
        }

        .report-logo {
            position: absolute;
            bottom: 20px;
            right: 20px;
            font-size: 1.2rem;
            font-weight: 700;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(44, 95, 93, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        .floating-circle:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-circle:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }

        .floating-circle:nth-child(3) {
            width: 80px;
            height: 80px;
            top: 80%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
                opacity: 1;
            }
        }

        .section-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(135deg, transparent 0%, rgba(44, 95, 93, 0.05) 100%);
        }

        @media (max-width: 768px) {
            .social-impact-section {
                padding: 60px 0;
            }
            
            .impact-heading {
                font-size: 2rem;
            }
            
            .device-mockup {
                margin-top: 40px;
                padding: 20px;
            }
            
            .report-title {
                font-size: 1.4rem;
            }
        }

.btn-primary, .bg-primary{
  background: var(--secondary) !important;
  border-color: var(--secondary) !important;
}

.btn-primary:hover
{
  background: #333 !important;
  border-color: #333 !important;
}
.text-primary{
  color: var(--secondary) !important;
}
.hover-bg-dark
{
  cursor: pointer;
}
.hover-bg-dark:hover
{
  background: #333 !important;
  transition: 0.3s;
  transform: scale3d(1.1, 1.1, 1.1);
}




.services-section
{
  background: var(--primary);
}
.services-infobox
{
  background: var(--white);
  border-top:8px solid #ff9b05;
  transition: 0.3s;
  cursor: pointer;
}


.services-infobox ul
{
  padding: 0px;
  list-style: none;
}
.services-infobox ul li 
{
  padding: 10px 5px;
  font-size: 20px;
}
.services-infobox:hover
{
  background: #ff9b05;
  color: #fff;
}




.software-development-section
{
  background-image: url('https://theamse.org/t2.jpg');
  color: var(--white);
  background-repeat: no-repeat;
  background-size: cover;
}


/*About Content*/

.about-content ul li 
{
  color: var(--primary);
  font-size: 16px;
}
.about-content ul li  a
{
  color: #333;
  font-size: 15px;
}


/*Action Banner*/

.overlay {
    background-color: rgb(38 43 62 / 0.5);
}
