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

 body {
     display: flex;
     min-height: 100vh;
     font-family: Arial, sans-serif;
     background: #f4f4f4;
 }


 /* =========header=========== */
 header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 12px 20px;
     background: #111;
     color: #fff;
     position: sticky;
     top: 0;
     z-index: 999;
     position: fixed;
     width: 100%;
 }

 .logo {
     font-size: 22px;
     font-weight: 700;
 }

 .hamburger {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
 }

 .hamburger span {
     width: 30px;
     height: 2px;
     background: #fff;
     border-radius: 5px;
 }

 #navbar ul {
     display: flex;
     gap: 25px;
     list-style: none;
 }

 #navbar li {
     cursor: pointer;
     /* font-size: 26px; */
 }

 @media (min-width: 1000px) {
     header {
         display: none;

     }

     .hero-se {
         height: 80vh;
         background-image: url(img/2.svg);
     }
 }



 .hero-se {
     background-image: url(img/2.svg);
     background-position: bottom center;
     background-repeat: no-repeat;
     background-size: contain;
     background-size: cover;
 }




 @media (max-width: 1000px) {
     .sidebar {
         display: none;
     }

     .main-content {
         margin: 0%;

     }
 }

 /* ================= MOBILE ================= */
 @media (max-width: 1000px) {

     #navbar ul {
         flex-direction: column;
         gap: 0;
     }

     #navbar li {
         padding: 14px 20px;
         border-bottom: 1px solid #222;
     }
 }



 .sidebar {
     width: 260px;
     background: #0f0f14;
     color: #fff;
     padding: 20px;
     position: fixed;
     top: 0;
     left: 0;
     height: 100vh;
 }

 .main-content {
     margin-left: 260px;
     flex: 1;
     background: #ffffff;
     min-height: 100vh;
 }

 .sidebar {
     width: 260px;
     height: 100%;
     background: #0f0f14;
     color: #fff;
     padding: 24px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     font-family: Arial, sans-serif;
 }

 .sidebar-brand {
     margin-bottom: 30px;
 }

 .brand-title {
     font-size: 28px;
     font-weight: bold;
     text-transform: lowercase;
     color: #bc1be7;
 }

 .brand-tagline {
     font-size: 18px;
     opacity: 0.7;
     margin-top: 20px;
 }

 /* Navigation */
 .sidebar-nav {
     flex: 1;
 }

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

 .nav-item {
     padding: 10px 0;
     cursor: pointer;
     font-size: 15px;
     transition: color 0.3s;
     color: white;
     text-decoration: none;
 }

 .nav-item a {
     color: white;
     text-decoration: none;
 }

 .nav-item li {
     color: white;
 }


 .nav-item:hover {
     color: #bc1be7;
 }

 .nav-item a:hover {
     color: #bc1be7;
 }

 /* Submenu */
 .has-submenu {
     margin-top: 10px;
 }

 .submenu {
     list-style: none;
     padding-left: 15px;
     margin-top: 8px;
 }

 .submenu li {
     font-size: 13px;
     padding: 6px 0;
     opacity: 0.8;
     cursor: pointer;
 }

 .submenu li:hover {
     color: #bc1be7;
     opacity: 1;
 }

 .submenu a:hover {
     color: #bc1be7;
     opacity: 1;
 }

 /* Footer */
 .sidebar-footer hr {
     border: none;
     border-top: 1px solid rgba(255, 255, 255, 0.2);
     margin: 20px 0;
 }

 .social-links {
     list-style: none;
     padding: 0;
     display: flex;
     gap: 15px;
     font-size: 14px;
 }

 .social-links li,
 .social-links a {
     cursor: pointer;
     opacity: 0.8;
     color: #ffffff;
     text-decoration: none;
 }

 .social-links li:hover {
     color: #bc1be7;
     opacity: 1;
 }

 .social-links a:hover {
     color: #bc1be7;
     opacity: 1;
 }

 .staky-card {
     position: relative;
 }

 .staky-card:hover {
     background-color: #d8e1ff;
 }

 .icon {
     position: absolute;
     top: 10px;
     right: 10px;
     z-index: 10;
     cursor: pointer;
     color: #555;
 }

 .icon:hover {
     color: #ff3a3a;
 }

 .icon {
     position: fixed;
     background: #fff;
     padding: 6px;
     border-radius: 50%;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
 }


 .card-wrapper {
     display: flex;
     gap: 20px;
     padding-top: 40px;
     background: #f8f9fc;
     height: 130px;
     justify-content: space-evenly;

 }

 .staky-card {
     background: #eee;
     width: 340px;
     padding: 14px 16px;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

     transform: translateY(-80%);
 }

 .staky-card .name {
     font-weight: 600;
     margin-bottom: 4px;
 }

 .staky-card .desc {
     font-size: 14px;
     color: #555;
 }







 /* ================= MOBILE ONLY ================= */
 @media (max-width: 1000px) {

     body {
         flex-direction: column;
     }

     header {
         display: flex;
         padding: 0px 12px;
     }

     .sidebar {
         display: none;
     }

     .main-content {
         margin-left: 0;
         padding: 0px;
     }

     .hamburger {
         display: flex;
     }

     #navbar {
         position: absolute;
         top: 60px;
         right: 0;
         width: auto;
         background: #111;
         transform: translateX(100%);
         transition: 0.3s ease;
     }

     #navbar.active {
         transform: translateX(0);
     }

     #navbar ul {
         flex-direction: column;
     }

     #navbar li {
         padding: 14px 20px;
         border-bottom: 1px solid #222;
     }


     .card-wrapper {
         flex-direction: column;
         height: auto;
         gap: 15px;
         padding: 20px 0;
     }

     .staky-card {
         width: 100%;
         transform: translateY(0);
     }



 }























































.brand-text {
    color: #00d7ff;
}








 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Poppins', system-ui, sans-serif;
 }



 .header {
     z-index: 1;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 2px 22px;
     background: #fff;
     border-bottom: 1px solid #eee;
     position: fixed;
     width: 100%;
 }

 .logo {
     margin: 0;
     font-size: 1.6rem;
     font-weight: 700;
     color: #111;
 }

 /* 3 DOT */
 .dots {
     font-size: 28px;
     cursor: pointer;
     display: none;
     padding: 6px 10px;
     border-radius: 50%;
     transition: .3s;
 }

 .dots:hover {
     background: #f2f2f2;
 }

 /* MENU */
 .menu {
     display: flex;
     gap: 26px;
     align-items: center;
 }

 .menu a {
     text-decoration: none;
     color: #444;
     font-weight: 500;
     position: relative;
 }

 .menu a::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: -4px;
     width: 0;
     height: 2px;
     background: #667eea;
     transition: .3s;
 }

 .menu a:hover::after {
     width: 100%;
 }

 .menu .btn {
     background: #667eea;
     color: #fff;
     padding: 7px 18px;
     border-radius: 22px;
 }

 /* ===== MOBILE ===== */
 @media(max-width:768px) {
     .dots {
         display: block
     }

     .menu {
         position: absolute;
         top: 60px;
         right: 18px;
         width: 190px;
         background: #fff;
         flex-direction: column;
         gap: 14px;
         padding: 16px;
         border-radius: 14px;
         box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
         opacity: 0;
         transform: translateY(-10px) scale(.95);
         pointer-events: none;
         transition: .35s ease;
     }

     .menu.show {
         opacity: 1;
         transform: translateY(0) scale(1);
         pointer-events: auto;
     }

     .menu a {
         padding: 6px 0;
     }

     .menu .btn {
         text-align: center;
     }

     .header {
         padding: 0px 22px;
     }
 }



 /* =====================
    Hero secton
==================== */
 .hero-section {
     position: relative;
     width: 100%;
     min-height: auto;
     display: flex;
     justify-content: center;
     align-items: center;
     background: linear-gradient(135deg, #f5f7ff, #e0e7ff);
     overflow: hidden;
     padding: 50px 20px;
 }

 .hero-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     animation: floatBg 25s ease-in-out infinite;
 }

 @keyframes floatBg {

     0%,
     100% {
         transform: translate(0, 0);
     }

     50% {
         transform: translate(15px, 20px);
     }
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 1100px;
     width: 100%;
     text-align: left;
     animation: fadeIn 1s ease forwards;
 }

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

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

 .hero-content h1 {
     font-size: 3rem;
     margin-bottom: 20px;
     color: #333;
 }

 .hero-content h1 span {
     color: #667eea;
 }

 .hero-content p {
     font-size: 1.2rem;
     margin-bottom: 40px;
     color: #555;
     line-height: 1.6;
 }

 .hero-steps {
     display: flex;
     gap: 30px;
     margin-bottom: 40px;
 }

 .step {
     background: rgba(255, 255, 255, 0.85);
     padding: 20px;
     border-radius: 12px;
     flex: 1;
     opacity: 0;
     transform: translateY(20px);
     animation: fadeUp 0.8s forwards;
 }

 .step h3 {
     font-size: 1.2rem;
     margin-bottom: 8px;
 }

 .step p {
     font-size: 1rem;
     color: #555;
 }

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

 .cta-btn {
     display: inline-block;
     padding: 16px 40px;
     background: #667eea;
     color: #fff;
     font-size: 1.2rem;
     border-radius: 10px;
     text-decoration: none;
     transition: 0.3s;
     animation: pulse 2s infinite;
 }

 .cta-btn:hover {
     background: #764ba2;
 }

 @keyframes pulse {

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

     50% {
         transform: scale(1.05);
     }
 }

 /* Responsive / Mobile-Friendly */
 @media (max-width: 1024px) {
     .hero-content h1 {
         font-size: 2.5rem;
     }

     .hero-content p {
         font-size: 1.1rem;
         margin-bottom: 20px;
     }

     .hero-steps {
         gap: 20px;

     }
 }

 @media (max-width: 768px) {
     .hero-content {
         margin-top: 20px;
     }

     .hero-content h1 {
         font-size: 2rem;
     }

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

     .hero-steps {
         gap: 15px;
         display: grid;
     }

     .step {
         padding: 12px 15px;
     }

     .cta-btn {
         padding: 14px 30px;
         font-size: 1.1rem;
     }
 }

 @media (max-width: 480px) {
     .hero-content h1 {
         font-size: 1.7rem;
     }

     .hero-content p {
         font-size: 0.95rem;
     }

     .cta-btn {
         padding: 12px 25px;
         font-size: 1rem;
     }
 }

 /* =================================
Haproven About Page
====================================*/
 .about-section {
     padding: 80px 12%;
     background: #eef2ff;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .about-container {
     max-width: 1100px;
     text-align: center;
 }

 .about-section h2 {
     font-size: clamp(2rem, 5vw, 3rem);
     font-weight: 800;
     margin-bottom: 20px;
     color: #111827;
 }

 .about-subtext {
     font-size: 1.15rem;
     color: #4b5563;
     line-height: 1.8;
     margin-bottom: 50px;
 }

 .about-features {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 25px;
     margin-bottom: 40px;
 }

 .about-features .feature {
     background: #fff;
     padding: 25px 20px;
     border-radius: 16px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     text-align: left;
 }

 .about-features .feature:hover {
     transform: translateY(-6px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
 }

 .about-features h3 {
     font-size: 1.1rem;
     margin-bottom: 10px;
     color: #667eea;
 }

 .about-features p {
     font-size: 0.95rem;
     color: #555;
     line-height: 1.6;
 }

 .about-cta .cta-btn {
     padding: 14px 40px;
     border-radius: 50px;
     background: #667eea;
     color: #fff;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .about-cta .cta-btn:hover {
     transform: translateY(-4px);
     box-shadow: 0 12px 25px rgba(102, 126, 234, 0.35);
 }

 /* MOBILE */
 @media(max-width:900px) {
     .about-section {
         padding: 60px 8%;
     }

     .about-container {
         text-align: start;
     }

     .about-features {
         grid-template-columns: 1fr;
     }
 }

 /* =================================
Haproven Profiles member list
====================================*/

 .profiles-section {
     background: #f3f4f6;
     max-width: 1200px;
     margin: 60px auto;
     padding: 40px 30px;
     text-align: center;
     font-family: 'Arial', sans-serif;

 }

 .profiles-section h2 {
     font-size: clamp(2rem, 5vw, 3rem);
     font-weight: 800;
     margin-bottom: 20px;
     color: #111827;
 }

 .profiles-section p {
     font-size: 1.15rem;
     color: #4b5563;
     line-height: 1.7;
     margin-bottom: 50px;
 }

 /* Search Box */
 .search-box {
     width: 100%;
     max-width: 350px;
     padding: 10px 14px;
     border-radius: 8px;
     border: 1px solid #d1d5db;
     margin-bottom: 20px;
     font-size: 1rem;
 }

 /* Filter Buttons */
 .filter-buttons {
     display: flex;
     gap: 10px;
     justify-content: center;
     flex-wrap: wrap;
     margin-bottom: 30px;
 }

 .filter-buttons button {
     padding: 8px 16px;
     border-radius: 20px;
     border: 1px solid #d1d5db;
     background: #ffffff;
     cursor: pointer;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .filter-buttons button:hover,
 .filter-buttons button.active {
     background: #667eea;
     color: #fff;
     border-color: #667eea;
 }

 /* Profiles Grid */
 .profiles-list {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 20px;
     width: 100%;
 }

 .profile-card {
     background: #ffffff;
     padding: 20px;
     border-radius: 12px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     text-align: left;
 }


 .profile-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 12px 25px rgba(102, 126, 234, 0.418);
 }

 .profile-card .profile-img {
     width: 100%;
     height: 150px;
     background: #f0f0f0 url('https://via.placeholder.com/150') center/cover no-repeat;
     border-radius: 12px;
     margin-bottom: 12px;
 }

 .profile-card a {
     display: block;
     /* text-decoration: none; */
     color: #111827;
     font-weight: 600;
     font-size: 1.1rem;
     margin-bottom: 6px;
 }


 .profile-card p {
     font-size: 0.9rem;
     color: #555;
     margin-bottom: 8px;
 }

 /* Tags */
 .tags {
     display: flex;
     gap: 8px;
     flex-wrap: wrap;
 }

 .tag {
     font-size: 12px;
     padding: 4px 8px;
     border-radius: 12px;
     font-weight: 500;
 }

 .tag.online {
     background: #dcfce7;
     color: #166534;
 }

 .tag.verified {
     background: #e0e7ff;
     color: #3730a3;
 }

  .tag.Pending {
     background: #f12bdd50;
     color: #fd0294;
 }

 /* Responsive */
 @media(min-width:1200px) {
     .profiles-section {
         height: 60vh;

     }
 }

 @media(max-width:768px) {
     .profiles-list {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media(max-width:500px) {
     .profiles-list {
         grid-template-columns: 1fr;
     }
 }



 /* =================================
What People Say About Haproven
====================================*/
 .testimonials-section {
     max-width: 1200px;
     margin: 60px auto;
     padding: 60px 20px;
     text-align: center;
     /* background: #f3f4f6; */
     border-radius: 12px;
     font-family: 'Arial', sans-serif;
 }

 .testimonials-section h2 {
     font-size: 2.2rem;
     margin-bottom: 10px;
     color: #111827;
 }

 .testimonials-section p {
     font-size: 1rem;
     color: #6b7280;
     margin-bottom: 40px;
 }

 /* Testimonials Grid */
 .testimonials-list {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 25px;
 }

 /* Individual Testimonial Card */
 .testimonial-card {
     background: #ffffff;
     padding: 25px;
     border-radius: 16px;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     text-align: left;
 }

 .testimonial-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 12px 25px rgba(102, 126, 234, 0.15);
 }

 .testimonial-card p {
     font-size: 0.95rem;
     color: #333;
     margin-bottom: 20px;
     line-height: 1.6;
 }

 /* Author Info */
 .testimonial-author {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .author-img img {
     width: 50px;
     height: 50px;
     border-radius: 50%;
 }

 .author-img {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: #ddd url('https://via.placeholder.com/50') center/cover no-repeat;
 }

 .author-info h4 {
     font-size: 1rem;
     font-weight: 600;
     margin-bottom: 2px;
     color: #111827;
 }

 .author-info span {
     font-size: 0.85rem;
     color: #6b7280;
 }

 /* Responsive */
 @media(max-width:768px) {
     .testimonials-list {
         grid-template-columns: 1fr;
     }

     .testimonial-card {
         text-align: center;
     }

     .testimonial-author {
         justify-content: center;
     }
 }


 /* =================================
PRICING / PLANS SECTION
====================================*/
 .pricing-section {
     max-width: 1200px;
     margin: 80px auto;
     padding: 60px 20px;
     text-align: center;
     background: #f3f4f6;
     border-radius: 12px;
 }

 .pricing-section h2 {
     font-size: 2.2rem;
     margin-bottom: 10px;
     color: #111827;
 }

 .pricing-section p {
     font-size: 1rem;
     color: #6b7280;
     margin-bottom: 40px;
 }

 .pricing-cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 25px;
 }

 .pricing-card {
     background: #fff;
     padding: 30px 20px;
     border-radius: 16px;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .pricing-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 12px 25px rgba(102, 126, 234, 0.15);
 }

 .pricing-card.popular {
     border: 2px solid #667eea;
     transform: scale(1.05);
 }

 .pricing-card h3 {
     font-size: 1.5rem;
     margin-bottom: 10px;
     color: #111827;
 }

 .pricing-card .price {
     font-size: 1.3rem;
     font-weight: 700;
     color: #667eea;
     margin-bottom: 20px;
 }

 .pricing-card ul {
     list-style: none;
     padding: 0;
     margin-bottom: 25px;
     text-align: left;
 }

 .pricing-card ul li {
     padding-left: 1.5em;
     position: relative;
     margin-bottom: 10px;
     font-size: 0.95rem;
     color: #555;
 }

 .pricing-card ul li::before {
     content: "✔";
     position: absolute;
     left: 0;
     color: #667eea;
 }

 .cta-btns {
    display: inline-block;
    /* padding: 16px 40px; */
    background: #667eea;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
    animation: pulses 2s infinite;
}

/* Animation */
@keyframes pulses {
    0% {
        transform: scale(1);
        background-color: #66ea78; 
        /* box-shadow: 0 0 0 0 rgba(102, 234, 120, 0.7); */
    }

    33% {
        transform: scale(1);
        background-color: #f7971e; 
        /* box-shadow: 0 0 0 12px rgba(247, 151, 30, 0.4); */
    }

    66% {
        transform: scale(1);
        background-color: #764ba2; 
        /* box-shadow: 0 0 0 18px rgba(118, 75, 162, 0.4); */
    }

    100% {
        transform: scale(1);
        background-color: #244cfd;
        /* box-shadow: 0 0 0 0 rgba(36, 76, 253, 0); */
    }
}


 .pricing-card .cta-btn {
     display: inline-block;
     padding: 12px 36px;
     border-radius: 50px;
     background: #667eea;
     color: #fff;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .pricing-card .cta-btn:hover {
     transform: translateY(-4px);
     box-shadow: 0 12px 25px rgba(102, 126, 234, 0.35);
 }

 /* MOBILE */
 @media(max-width:900px) {
     .pricing-cards {
         grid-template-columns: 1fr;
     }
 }

 /* =================================
Contact Haproven
====================================*/


 .contact-details {
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
     gap: 30px;
 }

 .contact-section {
     position: relative;
     max-width: 1200px;
     margin: 80px auto;
     text-align: center;
     border-radius: 16px;
     overflow: hidden;
     padding: 100px 20px;
     display: flex;
     justify-content: center;
     text-align: center;
 }

 .contact-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
 }

 .contact-bg svg {
     width: 100%;
     height: 100%;
 }

 .contact-section h2 {
     position: relative;
     z-index: 1;
     font-size: 2.6rem;
     margin-bottom: 12px;
     color: #111827;
     font-weight: 700;
 }

 .contact-section p {
     position: relative;
     z-index: 1;
     font-size: 1.1rem;
     color: #4b5563;
     margin-bottom: 50px;
     line-height: 1.6;
 }

 .contact-container {
     position: relative;
     z-index: 1;
     display: flex;
     gap: 30px;
     flex-wrap: wrap;
     justify-content: center;
     margin-bottom: 40px;
     max-width: 900px;
     width: 100%;
 }

 .contact-card {
     background: #fff;
     padding: 25px 20px;
     border-radius: 16px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
     flex: 1 1 250px;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .contact-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 25px 50px rgba(102, 126, 234, 0.15);
 }

 .contact-card i {
     font-size: 2rem;
     color: #667eea;
     margin-bottom: 10px;
 }

 .contact-card h3 {
     font-size: 1.2rem;
     margin-bottom: 6px;
     color: #111827;
 }

 .contact-card p {
     font-size: 1rem;
     color: #4b5563;
 }

 .contact-card a {
     color: #667eea;
     text-decoration: none;
     font-weight: 500;
 }

 .contact-card a:hover {
     text-decoration: underline;
 }

 .contact-btn {
     position: relative;
     z-index: 1;
     display: inline-block;
     padding: 16px 40px;
     border-radius: 50px;
     background: linear-gradient(135deg, #667eea, #764ba2);
     color: #fff;
     font-weight: 600;
     font-size: 1rem;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .contact-btn:hover {
     transform: translateY(-4px);
     box-shadow: 0 12px 25px rgba(102, 126, 234, 0.35);
 }

 /* MOBILE */
 @media(max-width:900px) {
     .contact-container {
         /* flex-direction: column; */
         align-items: center;
     }

     .profile-card {
         display: flex;
         justify-content: space-between;
     }

     .contact-card {
         width: 90%;
     }

     .contact-section p {
         margin-bottom: 18px;
     }

     .contact-section {
         margin: 0px auto;
         padding: 0px 20px;
     }
 }

 /* =================================
FOOTER section
====================================*/
 .pro-footer {
     background: #0c0c0c;
     color: #d0d0d0;
     padding: 60px 30px 30px;
 }

 .footer-container {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 40px;
     max-width: 1500px;
     margin: auto;
 }

 .footer-col h3 {
     margin-bottom: 12px;
     font-size: 20px;
     color: #fff;
 }

 .footer-col a {
     display: block;
     margin: 6px 0;
     color: #bdbdbd;
     text-decoration: none;
     transition: 0.3s ease;
 }

 .footer-col a:hover {
     color: #fff;
     padding-left: 6px;
 }

 .footer-social {
     display: flex;
     gap: 12px;
     margin-top: 15px;
 }


 .footer-social i {
     font-size: 24px;
     color: #aaa;
     margin-right: 15px;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .footer-social i:hover {
     color: #00bcd4;
     transform: scale(1.2);
 }

 .footer-social .icon {
     font-family: "FontAwesome";
     font-size: 18px;
     width: 40px;
     height: 40px;
     background: #1a1a1a;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 8px;
     color: #fff;
     text-decoration: none;
     transition: 0.3s;
 }

 .footer-social .icon:hover {
     background: #fff;
     color: #000;
     transform: translateY(-4px);
 }

 .footer-bottom {
     text-align: center;
     border-top: 1px solid #222;
     margin-top: 40px;
     padding-top: 15px;
     color: #aaa;
 }

 .pro-footer {
     background: #0c0c0c;
     color: #d0d0d0;
     padding: 60px 30px 30px;
     font-family: "Poppins", sans-serif;
 }

 .footer-container {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
     gap: 40px;
     max-width: 1500px;
     margin: auto;
 }

 .footer-col h3 {
     margin-bottom: 12px;
     font-size: 20px;
     color: #fff;
 }

 .footer-col a {
     display: block;
     margin: 6px 0;
     color: #bdbdbd;
     text-decoration: none;
     transition: 0.3s ease;
 }

 .footer-col a:hover {
     color: #ffffff;
     padding-left: 6px;
 }

 .brand h2 {
     color: #fff;
     margin-bottom: 10px;
 }

 .footer-social {
     display: flex;
     gap: 12px;
     margin-top: 15px;
 }

 .footer-social .icon {
     font-family: "FontAwesome";
     font-size: 18px;
     width: 40px;
     height: 40px;
     background: #1a1a1a;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 8px;
     color: #fff;
     text-decoration: none;
     transition: 0.3s;
 }

 .footer-social .icon:hover {
     background: #ffffff;
     color: #000;
     transform: translateY(-4px);
 }

 /* Bottom */
 .footer-bottom {
     text-align: center;
     border-top: 1px solid #222;
     margin-top: 40px;
     padding-top: 15px;
     color: #aaa;
 }


 /* Responsive */
 @media (max-width: 900px) {
     .footer-container {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media (max-width: 500px) {
     .footer-container {
         grid-template-columns: 1fr;
     }

     .footer-social {
         justify-content: flex-start;
     }
 }


 /* ================= FOOTER end ================= */