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

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Inter', sans-serif;
     line-height: 1.6;
 }

 .gradient-bg {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 }

 .glass-effect {
     backdrop-filter: blur(10px);
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .typing-text {
     border-right: 2px solid #fff;
     white-space: nowrap;
     overflow: hidden;
     animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
 }

 @keyframes typing {
     from {
         width: 0
     }

     to {
         width: 100%
     }
 }

 @keyframes blink-caret {

     from,
     to {
         border-color: transparent
     }

     50% {
         border-color: #fff
     }
 }

 .float-animation {
     animation: float 6s ease-in-out infinite;
 }

 @keyframes float {
     0% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-20px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 .slide-in-left {
     animation: slideInLeft 1s ease-out;
 }

 @keyframes slideInLeft {
     from {
         transform: translateX(-100%);
         opacity: 0;
     }

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

 .slide-in-right {
     animation: slideInRight 1s ease-out;
 }

 @keyframes slideInRight {
     from {
         transform: translateX(100%);
         opacity: 0;
     }

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

 .fade-in-up {
     animation: fadeInUp 1s ease-out;
 }

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

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }

 .hover-scale {
     transition: transform 0.3s ease;
 }

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

 /* Logo Styling - Desktop */
 .logo {
     height: 60px;
     width: auto;
     display: flex;
     align-items: center;
     transition: transform 0.3s ease;
 }

 .logo:hover {
     transform: scale(1.05);
 }

 .logo img {
     height: 100%;
     width: auto;
     max-width: 200px;
     object-fit: contain;
     filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
     transition: filter 0.3s ease;
 }

 .logo img:hover {
     filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
 }

 /* Mobile Logo - Hidden by default */
 .logo.mobile-logo {
     display: none;
 }

 .nav-link {
     position: relative;
     transition: all 0.3s ease;
     color: white;
     text-decoration: none;
     padding: 8px 16px;
     display: block;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: #60a5fa;
     transition: width 0.3s ease;
 }

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

 .btn-primary {
     background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
     border: none;
     padding: 12px 24px;
     border-radius: 8px;
     color: white;
     cursor: pointer;
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
 }

 /* Header Styles */
 header {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
 }


 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1rem 2rem;
 }

 .logo {
     font-size: 1.5rem;
     font-weight: bold;
     color: white;
 }
 

 .nav-menu {
     display: flex;
     list-style: none;
     gap: 2rem;
 }

 .nav-menu .nav-link {
     padding: 0.5rem 1rem;
 }

 /* Mobile Menu Button */
 .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     color: white;
     font-size: 1.5rem;
     cursor: pointer;
     padding: 8px;
 }

 /* Mobile Menu - Initially Hidden */
 .mobile-menu {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background: rgba(0, 0, 0, 0.9);
     backdrop-filter: blur(10px);
     z-index: 999;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     gap: 2rem;
     transform: translateX(-100%);
     transition: transform 0.3s ease;
     opacity: 0;
     visibility: hidden;
 }

 .mobile-menu.active {
     transform: translateX(0);
     opacity: 1;
     visibility: visible;
 }

 .mobile-menu .nav-link {
     font-size: 1.5rem;
     text-align: center;
     padding: 1rem;
 }

 .mobile-menu .close-btn {
     position: absolute;
     top: 2rem;
     right: 2rem;
     background: none;
     border: none;
     color: white;
     font-size: 2rem;
     cursor: pointer;
 }

 /* Main Content */
 main {
     padding-top: 120px;
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .hero {
     text-align: center;
     color: white;
     padding: 2rem;
 }

 .hero h1 {
     font-size: 3rem;
     margin-bottom: 1rem;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
 }

 .hero p {
     font-size: 1.2rem;
     margin-bottom: 2rem;
     opacity: 0.9;
 }

 @media (max-width: 768px) {
     .navbar {
         padding: 1rem;
     }

     /* Hide desktop logo, show mobile logo */
     .logo:not(.mobile-logo) {
         display: none;
     }

     .logo.mobile-logo {
         display: flex;
         height: 50px;
     }

     .nav-menu {
         display: none;
     }

     .mobile-menu-btn {
         display: block;
     }
 }

 @media (max-width: 480px) {
     .logo.mobile-logo {
         height: 40px;
     }

     .navbar {
         padding: 0.5rem 1rem;
     }
 }




 .hero-image {
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
     border-radius: 20px;
     padding: 2rem;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .feature-card {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     transition: all 0.3s ease;
 }

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

 .pulse-dot {
     animation: pulse 2s infinite;
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
         opacity: 1;
     }

     50% {
         transform: scale(1.2);
         opacity: 0.7;
     }

     100% {
         transform: scale(1);
         opacity: 1;
     }
 }


 .gradient-bg {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 }

 .typing-text {
     border-right: 2px solid #fff;
     animation: blink 1s infinite;
 }

 @keyframes blink {

     0%,
     50% {
         border-color: transparent;
     }

     51%,
     100% {
         border-color: #fff;
     }
 }

 .btn-primary {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .btn-primary::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transition: left 0.5s;
 }

 .btn-primary:hover::before {
     left: 100%;
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
 }

 .pulse-dot {
     animation: pulse 2s infinite;
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
         opacity: 1;
     }

     50% {
         transform: scale(1.2);
         opacity: 0.7;
     }

     100% {
         transform: scale(1);
         opacity: 1;
     }
 }

 .float-animation {
     animation: float 3s ease-in-out infinite;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-10px);
     }
 }

 .slide-in-left {
     animation: slideInLeft 1s ease-out;
 }

 .slide-in-right {
     animation: slideInRight 1s ease-out;
 }

 @keyframes slideInLeft {
     0% {
         transform: translateX(-100px);
         opacity: 0;
     }

     100% {
         transform: translateX(0);
         opacity: 1;
     }
 }

 @keyframes slideInRight {
     0% {
         transform: translateX(100px);
         opacity: 0;
     }

     100% {
         transform: translateX(0);
         opacity: 1;
     }
 }

 /* Enhanced Organic Shape Design */
 .organic-shape-container {
     position: relative;
     width: 100%;
     height: 600px;
     padding: 20px;
 }

 .main-student-image {
     position: relative;
     width: 320px;
     height: 400px;
     border-radius: 60px 60px 60px 20px;
     overflow: hidden;
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
     border: 3px solid rgba(59, 130, 246, 0.3);
     transform: rotate(-2deg);
     animation: float 4s ease-in-out infinite;
     transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .main-student-image::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
     z-index: 1;
     transition: opacity 0.3s ease;
 }

 .main-student-image:hover::before {
     opacity: 0;
 }

 .student-group-photo {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .main-student-image:hover .student-group-photo {
     transform: scale(1.05);
 }

 .student-count-badge {
     position: absolute;
     bottom: 30px;
     left: 30px;
     background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
     padding: 15px 20px;
     border-radius: 50px;
     box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
     animation: pulse 3s infinite;
     z-index: 2;
     backdrop-filter: blur(10px);
 }

 .student-avatars {
     display: flex;
     margin-right: 10px;
 }

 .avatar-mini {
     width: 35px;
     height: 35px;
     border-radius: 50%;
     border: 2px solid white;
     margin-right: -10px;
     transition: transform 0.3s ease;
 }

 .avatar-mini:hover {
     transform: scale(1.1);
 }

 .avatar-1 {
     background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
 }

 .avatar-2 {
     background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
 }

 .top-right-student {
     position: absolute;
     top: -20px;
     right: -40px;
     width: 140px;
     height: 140px;
     border-radius: 50%;
     overflow: hidden;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
     border: 4px solid white;
     animation: float 3s ease-in-out infinite;
     animation-delay: 1s;
     transition: all 0.5s ease;
 }

 .bottom-right-student {
     position: absolute;
     bottom: 40px;
     right: -60px;
     width: 160px;
     height: 160px;
     border-radius: 50%;
     overflow: hidden;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
     border: 4px solid white;
     animation: float 3.5s ease-in-out infinite;
     animation-delay: 2s;
     transition: all 0.5s ease;
 }

 .student-photo-round {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .top-right-student:hover .student-photo-round,
 .bottom-right-student:hover .student-photo-round {
     transform: scale(1.1);
 }

 .decorative-dots {
     position: absolute;
     top: 20px;
     left: -30px;
     opacity: 0.7;
 }

 .dot-pattern {
     width: 10px;
     height: 10px;
     background: #3b82f6;
     border-radius: 50%;
     margin: 15px 0;
     animation: pulse 2s infinite;
     box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
 }

 .dot-pattern:nth-child(2) {
     animation-delay: 0.5s;
     background: #10b981;
     box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
 }

 .dot-pattern:nth-child(3) {
     animation-delay: 1s;
     background: #f59e0b;
     box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
 }

 .organic-bg-shape {
     position: absolute;
     border-radius: 50%;
     opacity: 0.15;
     animation: float 6s ease-in-out infinite;
     filter: blur(1px);
 }

 .shape-1 {
     width: 120px;
     height: 120px;
     background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
     top: 50px;
     left: -50px;
     animation-delay: 0s;
 }

 .shape-2 {
     width: 100px;
     height: 100px;
     background: linear-gradient(135deg, #10b981 0%, #059669 100%);
     bottom: 100px;
     right: -30px;
     animation-delay: 2s;
 }

 .shape-3 {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
     top: 200px;
     left: -20px;
     animation-delay: 4s;
 }

 /* Image transition effects */
 .image-transition {
     transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .fade-in {
     animation: fadeIn 0.8s ease-in-out;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: scale(0.95);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 .zoom-in {
     animation: zoomIn 0.8s ease-in-out;
 }

 @keyframes zoomIn {
     from {
         opacity: 0;
         transform: scale(0.8) rotate(-5deg);
     }

     to {
         opacity: 1;
         transform: scale(1) rotate(-2deg);
     }
 }

 /* Enhanced floating animation */
 @keyframes float {

     0%,
     100% {
         transform: translateY(0px) rotate(-2deg);
     }

     50% {
         transform: translateY(-20px) rotate(-2deg);
     }
 }

 /* Glow effect for text completion */
 .text-glow {
     text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
     animation: glow 1s ease-in-out;
 }

 @keyframes glow {
     0% {
         text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
     }

     50% {
         text-shadow: 0 0 25px rgba(255, 255, 255, 0.8), 0 0 35px rgba(102, 126, 234, 0.6);
     }

     100% {
         text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
     }
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
     .organic-shape-container {
         height: 400px;
         padding: 10px;
     }

     .main-student-image {
         width: 250px;
         height: 300px;
     }

     .top-right-student {
         width: 100px;
         height: 100px;
         right: -20px;
     }

     .bottom-right-student {
         width: 120px;
         height: 120px;
         right: -40px;
     }
 }

 /* Enhanced button styling */
 .btn-secondary {
     position: relative;
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .btn-secondary::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
     transition: left 0.5s;
 }

 .btn-secondary:hover::before {
     left: 100%;
 }

 .btn-secondary:hover {
     background: white;
     color: #3b82f6;
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
 }

 .about-section {
     position: relative;
     min-height: 100vh;
     padding: 80px 0;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     overflow: hidden;
 }

 .background-illustration {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0.1;
     z-index: 1;
     background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="education" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><rect width="200" height="200" fill="none"/><circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.1)"/><rect x="80" y="35" width="25" height="30" fill="rgba(255,255,255,0.08)" rx="3"/><circle cx="150" cy="50" r="2" fill="rgba(255,255,255,0.06)"/><polygon points="30,80 50,70 70,80 70,100 30,100" fill="rgba(255,255,255,0.05)"/><rect x="90" y="85" width="20" height="3" fill="rgba(255,255,255,0.04)"/><rect x="90" y="92" width="15" height="3" fill="rgba(255,255,255,0.04)"/><rect x="90" y="99" width="18" height="3" fill="rgba(255,255,255,0.04)"/><circle cx="150" cy="90" r="8" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="2"/><circle cx="150" cy="90" r="3" fill="rgba(255,255,255,0.06)"/><rect x="20" y="130" width="40" height="25" fill="rgba(255,255,255,0.05)" rx="5"/><circle cx="40" cy="142" r="3" fill="rgba(255,255,255,0.08)"/><rect x="100" y="135" width="30" height="4" fill="rgba(255,255,255,0.04)"/><rect x="100" y="142" width="25" height="4" fill="rgba(255,255,255,0.04)"/><rect x="100" y="149" width="28" height="4" fill="rgba(255,255,255,0.04)"/><polygon points="160,130 175,125 190,130 185,145 165,145" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="1000" height="1000" fill="url(%23education)"/></svg>');
 }

 .geometric-bg {
     position: absolute;
     width: 100%;
     height: 100%;
     background-image:
         radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
         radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
         radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
 }

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

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

 .shape:nth-child(1) {
     width: 100px;
     height: 100px;
     background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.5));
     border-radius: 50%;
     top: 15%;
     left: 8%;
     animation-delay: 0s;
     box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
 }

 .shape:nth-child(2) {
     width: 80px;
     height: 80px;
     background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.5));
     transform: rotate(45deg);
     top: 65%;
     left: 85%;
     animation-delay: 2s;
     box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
 }

 .shape:nth-child(3) {
     width: 120px;
     height: 120px;
     background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.5));
     border-radius: 25px;
     top: 75%;
     left: 12%;
     animation-delay: 4s;
     box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
 }

 .shape:nth-child(4) {
     width: 60px;
     height: 60px;
     background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.5));
     border-radius: 50%;
     top: 8%;
     left: 75%;
     animation-delay: 1s;
     box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
 }

 .shape:nth-child(5) {
     width: 90px;
     height: 90px;
     background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.5));
     border-radius: 50%;
     top: 45%;
     left: 5%;
     animation-delay: 3s;
     box-shadow: 0 0 18px rgba(255, 255, 255, 0.3);
 }

 .shape:nth-child(6) {
     width: 70px;
     height: 70px;
     background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.5));
     transform: rotate(30deg);
     top: 25%;
     left: 88%;
     animation-delay: 5s;
     box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px) rotate(0deg);
     }

     25% {
         transform: translateY(-15px) rotate(5deg);
     }

     50% {
         transform: translateY(-30px) rotate(0deg);
     }

     75% {
         transform: translateY(-15px) rotate(-5deg);
     }
 }

 .about-section {
     position: relative;
     min-height: 100vh;
     padding: 80px 0;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     overflow: hidden;
 }

 .background-illustration {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0.1;
     z-index: 1;
 }

 .geometric-bg {
     position: absolute;
     width: 100%;
     height: 100%;
     background-image:
         radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
         radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
         radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
 }

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

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

 .shape:nth-child(1) {
     width: 80px;
     height: 80px;
     background: #fff;
     border-radius: 50%;
     top: 20%;
     left: 10%;
     animation-delay: 0s;
 }

 .shape:nth-child(2) {
     width: 60px;
     height: 60px;
     background: #fff;
     transform: rotate(45deg);
     top: 60%;
     left: 85%;
     animation-delay: 2s;
 }

 .shape:nth-child(3) {
     width: 100px;
     height: 100px;
     background: #fff;
     border-radius: 20px;
     top: 80%;
     left: 15%;
     animation-delay: 4s;
 }

 .shape:nth-child(4) {
     width: 40px;
     height: 40px;
     background: #fff;
     border-radius: 50%;
     top: 10%;
     left: 80%;
     animation-delay: 1s;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-20px);
     }
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     position: relative;
     z-index: 2;
 }

 .about-content {
     display: grid;
     grid-template-columns: 1fr 1.5fr;
     gap: 60px;
     align-items: center;
     background: rgba(255, 255, 255, 0.95);
     border-radius: 20px;
     padding: 60px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     backdrop-filter: blur(10px);
 }

 .image-section {
     position: relative;
 }

 .institute-image {
     width: 100%;
     height: 400px;
     background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 24px;
     font-weight: bold;
     text-align: center;
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
     position: relative;
     overflow: hidden;
 }

 .institute-image::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: repeating-linear-gradient(45deg,
             transparent,
             transparent 10px,
             rgba(255, 255, 255, 0.1) 10px,
             rgba(255, 255, 255, 0.1) 20px);
     animation: slide 20s linear infinite;
 }

 @keyframes slide {
     0% {
         transform: translateX(-100px) translateY(-100px);
     }

     100% {
         transform: translateX(100px) translateY(100px);
     }
 }

 .image-overlay {
     position: absolute;
     bottom: 20px;
     left: 20px;
     right: 20px;
     background: rgba(0, 0, 0, 0.7);
     color: white;
     padding: 15px;
     border-radius: 10px;
     backdrop-filter: blur(5px);
 }

 .content-section h2 {
     font-size: 2.5rem;
     color: #2d3748;
     margin-bottom: 30px;
     position: relative;
     padding-bottom: 15px;
 }

 .content-section h2::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 60px;
     height: 4px;
     background: linear-gradient(90deg, #667eea, #764ba2);
     border-radius: 2px;
 }

 .content-text {
     font-size: 1.1rem;
     line-height: 1.8;
     color: #4a5568;
     margin-bottom: 20px;
 }

 .highlight {
     background: linear-gradient(120deg, #667eea 0%, #764ba2 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     font-weight: 600;
 }

 .achievements {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
     gap: 20px;
     margin-top: 40px;
 }

 .achievement-card {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     padding: 20px;
     border-radius: 12px;
     text-align: center;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .achievement-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
 }

 .achievement-year {
     font-size: 1.5rem;
     font-weight: bold;
     margin-bottom: 5px;
 }

 .achievement-text {
     font-size: 0.9rem;
     opacity: 0.9;
 }

 @media (max-width: 968px) {
     .about-content {
         grid-template-columns: 1fr;
         gap: 40px;
         padding: 40px;
     }

     .content-section h2 {
         font-size: 2rem;
     }

     .institute-image {
         height: 300px;
     }
 }

 @media (max-width: 768px) {
     .about-section {
         padding: 40px 0;
     }

     .about-content {
         padding: 30px 20px;
     }

     .content-section h2 {
         font-size: 1.8rem;
     }

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

     .achievements {
         grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
         gap: 15px;
     }
 }


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


 .gradient-bg {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 }

 .glass-effect {
     backdrop-filter: blur(16px);
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
     -webkit-backdrop-filter: blur(5px);
 }

 .hover-lift {
     transition: all 0.3s ease;
 }

 .hover-lift:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 .animate-fade-in {
     animation: fadeIn 0.8s ease-out;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .section-divider {
     background: linear-gradient(90deg, transparent, #667eea, transparent);
     height: 2px;
 }












 .placed-section {
     position: relative;
     margin: 0 auto;
     padding: 80px 20px;
     background: rgba(255, 255, 255, 0.95);
     box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
     overflow: hidden;
     backdrop-filter: blur(10px);
 }

 /* Animated Background */
 .placed-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background:
         radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
         radial-gradient(circle at 80% 80%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
         radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
     animation: backgroundFlow 20s ease-in-out infinite;
     pointer-events: none;
 }

 @keyframes backgroundFlow {

     0%,
     100% {
         opacity: 0.3;
         transform: scale(1);
     }

     50% {
         opacity: 0.6;
         transform: scale(1.1);
     }
 }

 /* Header Section */
 .section-header {
     text-align: center;
     margin-bottom: 60px;
     position: relative;
     z-index: 2;
 }

 .section-label {
     font-size: 1rem;
     font-weight: 700;
     color: #e74c3c;
     text-transform: uppercase;
     letter-spacing: 4px;
     margin-bottom: 20px;
     opacity: 0.9;
     position: relative;
 }

 .section-label::after {
     content: '';
     position: absolute;
     bottom: -8px;
     left: 50%;
     transform: translateX(-50%);
     width: 40px;
     height: 2px;
     background: #e74c3c;
     border-radius: 2px;
 }

 .section-title {
     font-size: 3.5rem;
     font-weight: 800;
     background: linear-gradient(45deg, #3498db, #e74c3c);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 20px;
     position: relative;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 /* Students Grid */
 .students-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     margin-bottom: 60px;
     position: relative;
     z-index: 2;
 }

 .student-card {
     background: #ffffff;
     border-radius: 30px;
     padding: 0;
     text-align: left;
     box-shadow:
         0 20px 50px rgba(0, 0, 0, 0.1),
         0 10px 25px rgba(0, 0, 0, 0.05);
     border: none;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     position: relative;
     overflow: hidden;
     transform: translateY(0);
     display: flex;
     align-items: center;
     min-height: 280px;
 }

 .student-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 45%;
     height: 100%;
     background: linear-gradient(135deg, #3498db 0%, #e74c3c 100%);
     border-radius: 30px 0 0 30px;
     z-index: 1;
 }

 .student-card::after {
     content: '';
     position: absolute;
     top: -20%;
     left: 35%;
     width: 50%;
     height: 140%;
     background: #ffffff;
     border-radius: 50%;
     z-index: 2;
     transition: all 0.4s ease;
 }

 .student-card:hover::after {
     left: 30%;
     width: 55%;
 }

 .student-card:hover {
     transform: translateY(-15px) scale(1.02);
     box-shadow:
         0 35px 70px rgba(0, 0, 0, 0.15),
         0 20px 40px rgba(0, 0, 0, 0.1);
 }

 .student-photo {
     width: 140px;
     height: 140px;
     border-radius: 50%;
     margin-left: 30px;
     overflow: hidden;
     border: 6px solid #ffffff;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
     transition: all 0.4s ease;
     position: relative;
     z-index: 3;
     flex-shrink: 0;
 }

 .student-card:hover .student-photo {
     transform: scale(1.1);
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
 }

 .student-photo img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 50%;
     transition: all 0.4s ease;
 }

 .student-card:hover .student-photo img {
     transform: scale(1.05);
 }

 .student-info {
     flex: 1;
     padding: 40px 40px 11px 0px;
     position: relative;
     z-index: 3;
 }

 .student-name {
     font-size: 1rem;
     font-weight: 800;
     color: #3498db;
     margin-bottom: 8px;
     position: relative;
     z-index: 2;
     transition: all 0.3s ease;
 }

 .student-card:hover .student-name {
     color: #e74c3c;
     transform: translateX(10px);
 }

 .student-position {
     font-size: 1.1rem;
     color: #2c3e50;
     margin-bottom: 5px;
     font-weight: 600;
     position: relative;
     z-index: 2;
     transition: all 0.3s ease;
 }

 .student-card:hover .student-position {
     color: #3498db;
     transform: translateX(5px);
 }

 .student-company {
     font-size: 1rem;
     color: #7f8c8d;
     margin-bottom: 15px;
     font-weight: 500;
     position: relative;
     z-index: 2;
     transition: all 0.3s ease;
 }

 .student-card:hover .student-company {
     color: #2c3e50;
     transform: translateX(5px);
 }

 .student-year {
     font-size: 0.9rem;
     color: #fff;
     background: #e74c3c;
     padding: 8px 16px;
     border-radius: 20px;
     display: inline-block;
     font-weight: 600;
     position: relative;
     z-index: 2;
     transition: all 0.3s ease;
     border: 2px solid #e74c3c;
 }

 .student-card:hover .student-year {
     background: #ffffff;
     color: #e74c3c;
     transform: translateX(5px);
 }

 /* Success Stats */
 .success-stats {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 25px;
     margin-top: 60px;
     position: relative;
     z-index: 2;
 }

 .stat-item {
     text-align: center;
     padding: 30px 20px;
     background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
     border-radius: 20px;
     color: white;
     box-shadow: 0 15px 40px rgba(52, 152, 219, 0.3);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .stat-item::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
     transform: rotate(45deg);
     transition: all 0.6s ease;
     opacity: 0;
 }

 .stat-item:hover::before {
     opacity: 1;
     transform: rotate(45deg) translate(25%, 25%);
 }

 .stat-item:hover {
     transform: translateY(-8px) scale(1.03);
     box-shadow: 0 25px 60px rgba(52, 152, 219, 0.4);
 }

 .stat-number {
     font-size: 3rem;
     font-weight: 800;
     margin-bottom: 8px;
     display: block;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
 }

 .stat-label {
     font-size: 1rem;
     opacity: 0.9;
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 /* CTA Section */
 .cta-section {
     text-align: center;
     margin-top: 60px;
     position: relative;
     z-index: 2;
 }

 .cta-button {
     display: inline-block;
     padding: 18px 45px;
     background: linear-gradient(45deg, #3498db, #e74c3c);
     color: white;
     text-decoration: none;
     border-radius: 35px;
     font-weight: 700;
     font-size: 1.1rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: all 0.3s ease;
     box-shadow: 0 15px 35px rgba(52, 152, 219, 0.3);
     position: relative;
     overflow: hidden;
 }

 .cta-button::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
     transition: left 0.6s ease;
 }

 .cta-button:hover::before {
     left: 100%;
 }

 .cta-button:hover {
     transform: translateY(-3px) scale(1.05);
     box-shadow: 0 20px 45px rgba(52, 152, 219, 0.4);
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .placed-section {
         padding: 60px 15px;
         margin: 10px;
         border-radius: 20px;
     }

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

     .students-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .student-card {
         flex-direction: column;
         text-align: center;
         min-height: auto;
         padding: 30px;
     }

     .student-card::before {
         width: 100%;
         height: 50%;
         border-radius: 30px 30px 0 0;
     }

     .student-card::after {
         top: 40%;
         left: 10%;
         width: 80%;
         height: 60%;
     }

     .student-photo {
         margin: 0 auto 20px;
         z-index: 4;
     }

     .student-info {
         padding: 20px;
     }

     .student-name {
         font-size: 1.5rem;
     }

     .success-stats {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }
 }

 @media (max-width: 480px) {
     .section-title {
         font-size: 2rem;
     }

     .success-stats {
         grid-template-columns: 1fr;
     }

     .stat-number {
         font-size: 2.5rem;
     }
 }




















 .tech-background-pattern {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
     opacity: 0.05;
 }

 .floating-shape {
     position: absolute;
     border-radius: 50%;
     background: linear-gradient(45deg, #3b82f6, #8b5cf6);
     animation: floatAround 15s ease-in-out infinite;
 }

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

 .floating-shape:nth-child(2) {
     width: 60px;
     height: 60px;
     top: 20%;
     right: 10%;
     animation-delay: -5s;
 }

 .floating-shape:nth-child(3) {
     width: 80px;
     height: 80px;
     bottom: 30%;
     left: 15%;
     animation-delay: -10s;
 }

 .floating-shape:nth-child(4) {
     width: 120px;
     height: 120px;
     bottom: 10%;
     right: 20%;
     animation-delay: -7s;
 }

 .floating-shape:nth-child(5) {
     width: 40px;
     height: 40px;
     top: 50%;
     left: 50%;
     animation-delay: -3s;
 }

 @keyframes floatAround {

     0%,
     100% {
         transform: translateY(0) rotate(0deg);
     }

     25% {
         transform: translateY(-20px) rotate(90deg);
     }

     50% {
         transform: translateY(0) rotate(180deg);
     }

     75% {
         transform: translateY(20px) rotate(270deg);
     }
 }

 .tech-container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 60px 20px;
 }

 .tech-header {
     text-align: center;
     margin-bottom: 60px;
 }

 .tech-header h1 {
     font-size: 3rem;
     font-weight: 700;
     color: #1e293b;
     margin-bottom: 15px;
     background: linear-gradient(135deg, #3b82f6, #8b5cf6);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .tech-header p {
     font-size: 1.2rem;
     color: #64748b;
     max-width: 600px;
     margin: 0 auto;
 }

 .tech-course-slider {
     position: relative;
     overflow: hidden;
     padding: 20px 0;
 }

 .tech-slider-container {
     display: flex;
     transition: transform 0.5s ease-in-out;
     gap: 30px;
 }

 .tech-course-card {
     min-width: 350px;
     background: linear-gradient(135deg, #1e40af 0%, #3730a3 50%, #7c3aed 100%);
     border-radius: 24px;
     padding: 40px;
     position: relative;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
 }

 .tech-course-card::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"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="30" r="1.5" fill="white" opacity="0.1"/><circle cx="40" cy="70" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="80" r="2.5" fill="white" opacity="0.1"/><circle cx="10" cy="90" r="1.5" fill="white" opacity="0.1"/></svg>');
     pointer-events: none;
 }

 .tech-course-card::after {
     content: '';
     position: absolute;
     bottom: 0;
     right: 0;
     width: 100px;
     height: 100px;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
     border-radius: 50%;
     transform: translate(30px, 30px);
 }

 .tech-course-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
 }

 .tech-course-icon {
     width: 60px;
     height: 60px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
     font-size: 24px;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.3);
 }

 .tech-course-badge {
     position: absolute;
     top: 20px;
     right: 20px;
     background: rgba(255, 255, 255, 0.2);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.3);
     padding: 8px 16px;
     border-radius: 20px;
     font-size: 12px;
     font-weight: 600;
     color: white;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .tech-course-title {
     font-size: 1.5rem;
     font-weight: 700;
     color: white;
     margin-bottom: 15px;
     line-height: 1.2;
 }

 .tech-course-description {
     color: rgba(255, 255, 255, 0.8);
     font-size: 14px;
     line-height: 1.5;
     margin-bottom: 25px;
 }

 .tech-course-features {
     list-style: none;
     margin-bottom: 30px;
 }

 .tech-course-features li {
     color: rgba(255, 255, 255, 0.9);
     font-size: 14px;
     padding: 6px 0;
     display: flex;
     align-items: center;
 }

 .tech-course-features li::before {
     content: '✓';
     color: #10b981;
     font-weight: bold;
     margin-right: 10px;
     font-size: 12px;
 }

 .tech-course-price {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 25px;
 }

 .tech-price-amount {
     font-size: 1.8rem;
     font-weight: 700;
     color: white;
 }

 .tech-price-period {
     color: rgba(255, 255, 255, 0.7);
     font-size: 14px;
 }

 .tech-course-btn {
     width: 100%;
     padding: 15px;
     background: rgba(255, 255, 255, 0.2);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.3);
     border-radius: 12px;
     color: white;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .tech-course-btn:hover {
     background: rgba(255, 255, 255, 0.3);
     transform: translateY(-2px);
 }

 .tech-slider-controls {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 20px;
     margin-top: 40px;
 }

 .tech-slider-btn {
     width: 50px;
     height: 50px;
     background: white;
     border: none;
     border-radius: 50%;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 18px;
     color: #3b82f6;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
 }

 .tech-slider-btn:hover {
     transform: scale(1.1);
     box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
 }

 .tech-slider-btn:disabled {
     opacity: 0.5;
     cursor: not-allowed;
 }

 .tech-slider-indicators {
     display: flex;
     gap: 10px;
 }

 .tech-indicator {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: #cbd5e1;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .tech-indicator.active {
     background: #3b82f6;
     transform: scale(1.2);
 }

 @media (max-width: 768px) {
     .tech-course-card {
         min-width: 300px;
     }

     .tech-header h1 {
         font-size: 2rem;
     }
 }










 .bg-gradient-color {

     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 }

 .contactus-contact-bg {
     background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'><circle cx='200' cy='200' r='150' fill='white' opacity='0.3'><animate attributeName='r' values='150;180;150' dur='4s' repeatCount='indefinite'/></circle><circle cx='800' cy='300' r='100' fill='white' opacity='0.2'><animate attributeName='r' values='100;130;100' dur='3s' repeatCount='indefinite'/></circle><circle cx='300' cy='700' r='120' fill='white' opacity='0.25'><animate attributeName='r' values='120;150;120' dur='5s' repeatCount='indefinite'/></circle><circle cx='700' cy='800' r='80' fill='white' opacity='0.3'><animate attributeName='r' values='80;110;80' dur='3.5s' repeatCount='indefinite'/></circle><path d='M100,500 Q300,300 500,500 T900,500' stroke='white' stroke-width='3' fill='none' opacity='0.4'><animate attributeName='d' values='M100,500 Q300,300 500,500 T900,500;M100,500 Q300,400 500,500 T900,400;M100,500 Q300,300 500,500 T900,500' dur='6s' repeatCount='indefinite'/></path></svg>");
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
 }

 .contactus-floating-animation {
     animation: contactusFloat 3s ease-in-out infinite;
 }

 @keyframes contactusFloat {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-15px);
     }
 }

 .contactus-pulse-animation {
     animation: contactusPulse 2s infinite;
 }

 @keyframes contactusPulse {
     0% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.05);
     }

     100% {
         transform: scale(1);
     }
 }

 .contactus-typing-animation {
     border-right: 2px solid #667eea;
     animation: contactusTyping 3s steps(40, end), contactusBlinkCaret 0.75s step-end infinite;
     white-space: nowrap;
     overflow: hidden;
 }

 @keyframes contactusTyping {
     from {
         width: 0
     }

     to {
         width: 100%
     }
 }

 @keyframes contactusBlinkCaret {

     from,
     to {
         border-color: transparent
     }

     50% {
         border-color: #667eea
     }
 }

 .contactus-hover-lift:hover {
     transform: translateY(-8px);
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
 }

 .contactus-form-input:focus {
     box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
     border-color: #667eea;
 }

 .contactus-gradient-text {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .contactus-contact-icon {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     border-radius: 50%;
     width: 48px;
     height: 48px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 18px;
     box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
 }

 .contactus-service-card {
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     transition: all 0.3s ease;
 }

 .contactus-service-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 .contactus-animated-bg {
     background: linear-gradient(-45deg, #667eea, #764ba2, #667eea, #764ba2);
     background-size: 400% 400%;
     animation: contactusGradient 15s ease infinite;
 }

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

     50% {
         background-position: 100% 50%;
     }

     100% {
         background-position: 0% 50%;
     }
 }

 .contactus-success-message {
     background: #d4edda;
     color: #155724;
     padding: 15px;
     border-radius: 12px;
     margin-bottom: 20px;
     border: 1px solid #c3e6cb;
     display: none;
 }

 .contactus-btn-gradient {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     transition: all 0.3s ease;
 }

 .contactus-btn-gradient:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
 }



















 /* Map Section */
 .map-section {
     padding: 80px 0;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     position: relative;
     overflow: hidden;
 }

 .map-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="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
     pointer-events: none;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     position: relative;
     z-index: 1;
 }

 .map-header {
     text-align: center;
     margin-bottom: 50px;
     color: white;
 }

 .map-header h2 {
     font-size: 3rem;
     margin-bottom: 15px;
     font-weight: 700;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
 }

 .map-header p {
     font-size: 1.2rem;
     opacity: 0.9;
     max-width: 600px;
     margin: 0 auto;
 }

 .map-container {
     background: white;
     border-radius: 20px;
     padding: 30px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
     transform: translateY(0);
     transition: transform 0.3s ease;
 }

 .map-container:hover {
     transform: translateY(-5px);
 }

 .map-wrapper {
     position: relative;
     height: 400px;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .map-wrapper iframe {
     width: 100%;
     height: 100%;
     border: none;
     border-radius: 15px;
 }

 .map-info {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
     margin-top: 30px;
 }

 .info-card {
     background: #f8f9fa;
     padding: 25px;
     border-radius: 15px;
     text-align: center;
     transition: all 0.3s ease;
     border: 2px solid transparent;
 }

 .info-card:hover {
     background: #e9ecef;
     border-color: #667eea;
     transform: translateY(-2px);
 }

 .info-card .icon {
     font-size: 2.5rem;
     margin-bottom: 15px;
     color: #667eea;
 }

 .info-card h3 {
     color: #333;
     margin-bottom: 10px;
     font-size: 1.3rem;
 }

 .info-card p {
     color: #666;
     font-size: 0.95rem;
 }

 /* Footer Section */
 .footer {
     background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
     color: white;
     padding: 60px 0 20px;
     position: relative;
     overflow: hidden;
 }

 .footer::before {
     content: '';
     position: absolute;
     top: -50px;
     left: -50px;
     width: 200px;
     height: 200px;
     background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
     border-radius: 50%;
 }

 .footer::after {
     content: '';
     position: absolute;
     bottom: -100px;
     right: -100px;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(118, 75, 162, 0.1) 0%, transparent 70%);
     border-radius: 50%;
 }

 .footer-content {
     position: relative;
     z-index: 1;
 }

 .footer-main {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 40px;
     margin-bottom: 40px;
 }

 .footer-brand {
     max-width: 350px;
 }

 .footer-logo {
     font-size: 2.5rem;
     font-weight: 800;
     background: linear-gradient(45deg, #667eea, #764ba2);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 10px;
 }



 .footer-brand p {
     color: #b0b0b0;
     margin-bottom: 20px;
     line-height: 1.6;
 }

 .footer-address {
     background: rgba(255, 255, 255, 0.05);
     padding: 20px;
     border-radius: 10px;
     margin-bottom: 20px;
     border-left: 4px solid #667eea;
 }

 .footer-address h4 {
     color: #667eea;
     margin-bottom: 10px;
     font-size: 1.1rem;
 }

 .footer-address p {
     color: #d0d0d0;
     font-size: 0.9rem;
     margin-bottom: 5px;
 }

 .footer-section h3 {
     color: #fff;
     margin-bottom: 20px;
     font-size: 1.3rem;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-section h3::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 30px;
     height: 3px;
     background: linear-gradient(45deg, #667eea, #764ba2);
     border-radius: 2px;
 }

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

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

 .footer-section ul li a {
     color: #b0b0b0;
     text-decoration: none;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .footer-section ul li a::before {
     content: '→';
     opacity: 0;
     transform: translateX(-10px);
     transition: all 0.3s ease;
 }

 .footer-section ul li a:hover {
     color: #667eea;
     transform: translateX(5px);
 }

 .footer-section ul li a:hover::before {
     opacity: 1;
     transform: translateX(0);
 }

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

 .social-links a {
     width: 45px;
     height: 45px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     text-decoration: none;
     font-size: 1.2rem;
     transition: all 0.3s ease;
     border: 2px solid transparent;
 }

 .social-links a:hover {
     background: #667eea;
     border-color: #764ba2;
     transform: translateY(-3px);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 20px;
 }

 .footer-bottom p {
     color: #888;
     font-size: 0.9rem;
 }

 .footer-links {
     display: flex;
     gap: 20px;
 }

 .footer-links a {
     color: #888;
     text-decoration: none;
     font-size: 0.9rem;
     transition: color 0.3s ease;
 }

 .footer-links a:hover {
     color: #667eea;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .map-header h2 {
         font-size: 2.2rem;
     }

     .map-header p {
         font-size: 1rem;
     }

     .map-container {
         padding: 20px;
     }

     .map-wrapper {
         height: 300px;
     }

     .footer-main {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .footer-bottom {
         flex-direction: column;
         text-align: center;
     }

     .footer-links {
         justify-content: center;
     }
 }