@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CSS Variables */
:root {
    --primary-color: #FFC107;
    --primary-dark: #FF8F00;
    --primary-light: #FFF9C4;
    --accent-color: #795548;
    --dark-color: #212121;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray: #757575;
    --gradient-1: linear-gradient(135deg, #FFC107 0%, #FF8F00 100%);
    --gradient-2: linear-gradient(135deg, #FF8F00 0%, #FFC107 100%);
    --shadow-light: 0 8px 25px rgba(255, 193, 7, 0.15);
    --shadow-medium: 0 15px 35px rgba(255, 193, 7, 0.2);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    top: 70%;
    left: 80%;
    width: 40px;
    height: 40px;
    background: var(--gradient-2);
    border-radius: 50%;
    animation-delay: -5s;
}

.shape-3 {
    top: 20%;
    left: 60%;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: -10s;
}

.shape-4 {
    top: 60%;
    left: 20%;
    width: 50px;
    height: 50px;
    background: var(--primary-dark);
    border-radius: 10px;
    animation-delay: -15s;
}

.shape-5 {
    top: 40%;
    left: 90%;
    width: 30px;
    height: 30px;
    background: var(--gradient-1);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: -7s;
}

.shape-6 {
    top: 80%;
    left: 50%;
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: -12s;
}

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 24%, rgba(255, 193, 7, 0.03) 25%, rgba(255, 193, 7, 0.03) 26%, transparent 27%, transparent 74%, rgba(255, 193, 7, 0.03) 75%, rgba(255, 193, 7, 0.03) 76%, transparent 77%, transparent),
        linear-gradient(0deg, transparent 24%, rgba(255, 193, 7, 0.03) 25%, rgba(255, 193, 7, 0.03) 26%, transparent 27%, transparent 74%, rgba(255, 193, 7, 0.03) 75%, rgba(255, 193, 7, 0.03) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
}

/* Navigation Bar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    transform:scale(4.18);
    margin-left:1.5em;
}

/* .logo:hover .logo-image {
    transform: scale(3.0);
} */

.logo-icon {
    font-size: 32px;
    animation: bounce 2s infinite;
}

.logo:hover {
    transform: scale(0.918);
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-links a:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-icon {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.dropdown:hover .dropdown-icon,
.dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(255, 193, 7, 0.1);
    z-index: 1001;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 10px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.15);
}

.dropdown-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: var(--primary-dark);
}

.dropdown-item span {
    font-size: 14px;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background: var(--gradient-1);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: var(--gradient-1);
    color: var(--dark-color);
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    animation: float 10s infinite linear;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 50%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    animation: fadeInUp 1s ease;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 50%;
}

.floating-elements {
    position: relative;
    width: 400px;
    height: 400px;
}

.float-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-color);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: floatElements 6s infinite ease-in-out;
}

.code-block {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
    flex-direction: column;
    gap: 5px;
}

.code-line {
    width: 100%;
    height: 4px;
    background: var(--dark-color);
    border-radius: 2px;
}

.code-line:nth-child(2) { width: 70%; }
.code-line:nth-child(3) { width: 90%; }

.brain-circuit {
    top: 50px;
    right: 0;
    width: 90px;
    height: 90px;
    animation-delay: -2s;
}

.book-stack {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 85px;
    animation-delay: -4s;
}

.algorithm-icon {
    top: 30px;
    left: 120px;
    width: 75px;
    height: 75px;
    animation-delay: -1s;
    font-size: 1.8rem;
}

.neural-network {
    top: 120px;
    right: 60px;
    width: 70px;
    height: 70px;
    animation-delay: -3s;
    font-size: 1.6rem;
}

.ml-icon {
    bottom: 30px;
    right: 30px;
    width: 85px;
    height: 85px;
    animation-delay: -5s;
    font-size: 1.9rem;
}

.physics-icon {
    bottom: 10px;
    left: 20px;
    width: 75px;
    height: 75px;
    animation-delay: -6s;
    font-size: 1.7rem;
}

.math-icon {
    top: 80px;
    left: 40px;
    width: 70px;
    height: 70px;
    animation-delay: -7s;
    font-size: 1.6rem;
}

.data-icon {
    top: 160px;
    left: 150px;
    width: 75px;
    height: 75px;
    animation-delay: -8s;
    font-size: 1.7rem;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--light-color);
    clip-path: polygon(0 50%, 100% 80%, 100% 100%, 0% 100%);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--white);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-size: 16px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

.explore-btn {
    font-size: 18px;
    padding: 18px 40px;
}

.academics-btn {
    background: var(--primary-dark);
    color: var(--white);
}

.academics-btn::before {
    background: var(--white);
}

.academics-btn:hover {
    color: var(--primary-dark);
}

.skills-btn {
    background: var(--primary-dark);
    color: var(--white);
    margin-bottom: 50px;
}

.skills-btn::before {
    background: var(--white);
}

.skills-btn:hover {
    color: var(--primary-dark);
}

/* Divider */
.divider {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
}

.divider-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--gradient-1);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.divider-content::before,
.divider-content::after {
    content: '';
    width: 100px;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 1px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 500;
}

/* Academics Section */
.academics {
    padding: 100px 0;
    background: var(--light-color);
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.text-content {
    flex: 1;
}

.text-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.text-content strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.visual-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.documents-animation {
    position: relative;
    width: 200px;
    height: 200px;
}

.doc {
    position: absolute;
    width: 60px;
    height: 80px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-light);
    animation: docFloat 3s infinite ease-in-out;
    transition: all 0.3s ease;
    cursor: pointer;
}

.doc:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-medium);
}

.doc-1 {
    top: 0;
    left: 0;
    color: #e74c3c;
    animation-delay: 0s;
}

.doc-2 {
    top: 20px;
    right: 0;
    color: #e74c3c;
    animation-delay: -1s;
}

.doc-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #2980b9;
    animation-delay: -2s;
}

/* Skills Section */
.skills {
    padding: 60px 0 100px 0;
    background: var(--white);
}

.skills-title {
    display: block;
}

.title-line {
    display: block;
    text-align: center;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    min-width: 200px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.2) rotate(5deg);
}

.stat-item h3 {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item p {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.stat-progress {
    height: 4px;
    background: var(--light-color);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 2px;
    width: 0;
    transition: width 2s ease;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: var(--light-color);
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
    cursor: pointer;
}

.feature:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature:hover .feature-glow {
    opacity: 1;
}

.feature-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.feature:hover .icon-bg {
    opacity: 0.2;
    transform: scale(1.2);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-dark);
    z-index: 2;
    transition: all 0.4s ease;
}

.feature:hover .feature-icon i {
    transform: scale(1.1) rotate(5deg);
}

.feature h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

.feature p {
    color: var(--gray);
    line-height: 1.7;
    text-align: center;
}

/* About Us Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.team {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.member {
    perspective: 1000px;
}

.member-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.4s ease;
    width: 280px;
    border: 2px solid transparent;
    position: relative;
    cursor: pointer;
}

.animated-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark), var(--primary-color), var(--primary-dark));
    background-size: 400% 400%;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientShift 3s ease infinite;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.member-card:hover .animated-border {
    opacity: 0;
}

.member-img {
    position: relative;
    height: 200px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.3);
    transform: scale(1.5);
}

.member-img:hover .member-photo {
    transform: scale(1.45);
    border-color: rgba(255, 255, 255, 0.6);
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

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

.member-img:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: var(--white);
}

.member-info {
    padding: 30px 25px;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.role {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.year {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.member-skills {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.skill-tag {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.feedback {
    max-width: 800px;
    margin: 0 auto 60px;
}

.feedback-card {
    background: var(--light-color);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--primary-light);
    transition: all 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.feedback-card h3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.feedback-card p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.connect {
    text-align: center;
}

.connect h3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.brand-logo-placeholder {
    width: 150px;
    height: 150px;
    margin: 30px auto;
    border-radius: 20px;
    border: 3px dashed var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.brand-logo-placeholder:hover {
    transform: scale(1.05);
    border-color: var(--primary-dark);
    border-style: solid;
}

.logo-animation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.logo-ring {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: logoSpin 4s infinite linear;
}

.logo-ring:nth-child(1) {
    width: 60px;
    height: 60px;
}

.logo-ring:nth-child(2) {
    width: 80px;
    height: 80px;
    animation-delay: -2s;
}

.connect p {
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.connect a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.connect a:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    transform: skewY(-2deg);
    transform-origin: top left;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about {
    flex: 1;
    min-width: 300px;
}

.footer-about h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.footer-about p {
    color: #bdc3c7;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-medium);
}

.quick-links, .connect-with-us {
    flex: 1;
    min-width: 200px;
}

.quick-links h3, .connect-with-us h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 600;
}

.quick-links ul, .connect-with-us ul {
    list-style: none;
}

.quick-links li, .connect-with-us li {
    margin-bottom: 12px;
}

.quick-links a, .connect-with-us a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.quick-links a:hover, .connect-with-us a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatElements {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes docFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes logoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }
    
    .hero .container {
        gap: 40px;
    }
    
    .floating-elements {
        width: 350px;
        height: 350px;
    }
    
    .features {
        gap: 30px;
    }
    
    .feature {
        min-width: 280px;
        max-width: 320px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: all 0.5s ease;
        z-index: 999;
        gap: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 18px;
        margin: 15px 0;
        padding: 15px 20px;
        width: 90%;
        text-align: center;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: var(--primary-light);
        color: var(--primary-dark);
        transform: translateY(0);
    }

    .dropdown {
        width: 90%;
    }
    
    .dropdown-toggle {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 18px;
        margin: 15px 0;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 10px;
        padding: 0;
        background: rgba(255, 193, 7, 0.1);
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 10px 0;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .dropdown-item {
        padding: 15px 25px;
        margin: 5px 15px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(255, 193, 7, 0.2);
    }
    
    .dropdown-item:hover {
        background: var(--white);
        transform: translateX(0);
        box-shadow: 0 2px 10px rgba(255, 193, 7, 0.2);
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero {
        padding: 150px 0 80px;
        min-height: auto;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 2;
        max-width: 100%;
    }

    .hero-visual {
        order: 1;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .floating-elements {
        width: 280px;
        height: 280px;
    }

    .float-item {
        font-size: 1.5rem;
        padding: 15px;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .visual-content {
        order: -1;
    }

    .text-content p {
        font-size: 1.1rem;
    }

    .stats {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .stat-item {
        width: 100%;
        max-width: 300px;
        min-width: auto;
        padding: 30px 25px;
    }

    .features {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .feature {
        min-width: auto;
        width: 100%;
        max-width: 400px;
        padding: 30px 25px;
    }

    .team {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .member-card {
        width: 100%;
        max-width: 280px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-about,
    .quick-links,
    .connect-with-us {
        min-width: auto;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }

    .navbar .container {
        padding: 15px 15px;
    }

    .logo {
        font-size: 24px;
    }

    .logo-icon {
        font-size: 28px;
    }

    .hero {
        padding: 130px 0 60px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .explore-btn {
        padding: 15px 30px;
        font-size: 16px;
    }

    .floating-elements {
        width: 240px;
        height: 240px;
    }

    .float-item {
        font-size: 1.2rem;
        padding: 12px;
    }

    .text-content p {
        font-size: 1rem;
    }

    .feature {
        padding: 25px 20px;
    }

    .feature h3 {
        font-size: 1.2rem;
    }

    .feature p {
        font-size: 0.95rem;
    }

    .stat-item {
        padding: 25px 20px;
    }

    .stat-item p {
        font-size: 2rem;
    }

    .feedback-card {
        padding: 30px 20px;
    }

    .feedback-card h3 {
        font-size: 1.5rem;
    }

    .feedback-card p {
        font-size: 1rem;
    }

    .connect h3 {
        font-size: 1.5rem;
    }

    .brand-logo-placeholder {
        width: 120px;
        height: 120px;
    }

    .logo-animation {
        font-size: 2rem;
    }

    .footer-about h3 {
        font-size: 1.6rem;
    }

    .quick-links h3, .connect-with-us h3 {
        font-size: 1.3rem;
    }
}

/* Additional responsive improvements */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .floating-elements {
        width: 200px;
        height: 200px;
    }
    
    .hero .container {
        gap: 30px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* Smooth transitions for all interactive elements */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Ensure no horizontal scroll */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Fix for mobile viewport */
@media (max-width: 768px) {
    .hero {
        min-height: calc(100vh - 90px);
    }
}

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

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Performance optimizations */
.shape,
.float-item,
.doc {
    will-change: transform;
}

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

/* Print styles */
@media print {
    .animated-bg,
    .floating-shapes,
    .tech-grid {
        display: none;
    }
    
    .hero {
        background: white;
        color: black;
    }
    
    .navbar {
        position: static;
        background: white;
        box-shadow: none;
    }
}

/* Skills Section (New) */
.skills-new {
    padding: 80px 0 60px 0;
    background: var(--white);
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    margin: 15px auto 0;
}

.skills-animation {
    position: relative;
    width: 200px;
    height: 200px;
}

.skill-icon {
    position: absolute;
    width: 60px;
    height: 80px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-light);
    animation: skillFloat 3s infinite ease-in-out;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--primary-light);
}

.skill-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.skill-1 {
    top: 0;
    left: 0;
    color: #9b59b6;
    animation-delay: 0s;
}

.skill-2 {
    top: 20px;
    right: 0;
    color: #3498db;
    animation-delay: -1s;
}

.skill-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #e74c3c;
    animation-delay: -2s;
}

.skill-3:hover {
    transform: translateX(-50%) scale(1.1) rotate(5deg);
}

.skill-4 {
    top: 60px;
    left: 30px;
    color: #27ae60;
    animation-delay: -1.5s;
}

.skill-5 {
    bottom: 40px;
    right: 30px;
    color: #f39c12;
    animation-delay: -0.5s;
}

@keyframes skillFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

/* Stats Header */
.stats-header {
    text-align: center;
    margin-bottom: 20px;
    margin-top: -20px;
}

.stats-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.stats-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.feature:hover, .doc:hover, .skill-icon:hover {
    cursor: default;
}

.counter.plus::after {
  content: "+";
}
