
        :root {
            --primary: #1a365d;
            --secondary: #e2b979;
            --accent: #2c5282;
            --light: #f8f9fa;
            --dark: #2d3748;
            --text: #4a5568;
            --text-light: #718096;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            /* font-family: 'Poppins', sans-serif; */
            color: var(--text);
            line-height: 1.6;
            background-color: #f5f7fa;
            overflow-x: hidden;
        }

        /* h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
        } */

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            /* margin: 0 auto; */
            padding: 0px;
            /* background-color: #25597b; */
            
            
        }

        /* Header Section */
        .top-name {
 background: linear-gradient(135deg, #2c3e50, #25597b);            color: white;
            padding: 1.5rem 0;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .top-name h1 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .top-name p {
            font-size: 1.2rem;
            opacity: 0.9;
            font-weight: 300;
        }

        .abcde{
                        margin-top:150px ;

        }
        /* Profile Section */
        .profile-section {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            /* margin: 2rem auto; */
            width: 100%;
                        font-family: 'Poppins', sans-serif;

        }

        /* Profile Card */
        .profile-card {
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            padding: 10px;
            width: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
            order: 1;
        }

        .profile-card::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: #25597b;
        }

        .profile-img-container {
            width: 250px;
            height: 250px;
            /* border-radius: 50%; */
            margin: 0 auto 1rem;
            border: 5px solid var(--light);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .profile-card h2 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #2c3e50,;
        }

        .profile-card h3 {
            font-size: 1.1rem;
            color:#25597b ;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .profile-card p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .contact-info {
            text-align: left;
            margin-top: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            /* padding: 0;background-color: #1a365d; */
        }

        .contact-icon {
            min-width: 36px;
            height: 36px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            /* margin-right: 0.8rem; */
            color: #25597b;
            font-size: 0.9rem;
        }

        .contact-item span {
            flex: 1;
            font-size: 0.8rem;
        }

        /* Details Section */
        .details-section {
            width: 100%;
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            padding: 1.5rem;
            order: 2;
        }

        /* Tabs */
        .tabs {
            display: flex;
            border-bottom: 1px solid #e2e8f0;
            margin-bottom: 1.5rem;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .tabs::-webkit-scrollbar {
            display: none;
            
        }

        .tab-btn {
            padding: 0.6rem 1rem;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-light);
            position: relative;
            transition: var(--transition);
            white-space: nowrap;
        }

        .tab-btn.active {
            color: var(--primary);
        }

        .tab-btn.active::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(135deg, #2c3e50, #25597b);
        }

        /* Tab Contents */
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .tab-content.active {
            display: block;
        }

        .section-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #2c3e50, #25597b);
        }

        .about-content p {
            margin-bottom: 1rem;
            color: var(--text);
            font-size: 0.9rem;
        }

        /* Expertise Grid */
        .expertise-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .expertise-item {
            background: var(--light);
            padding: 1rem;
            border-radius: 8px;
        }

        .expertise-item h4 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }

        .expertise-item h4 i {
            margin-right: 0.5rem;
            color: #084b77;
        }

        .expertise-item p {
            color: var(--text-light);
            font-size: 0.8rem;
        }

        /* Timeline */
        .timeline {
            position: relative;
            padding-left: 25px;
        }

        .timeline::before {
            content: "";
            position: absolute;
            top: 0;
            left: 8px;
            height: 100%;
            width: 2px;
            background:linear-gradient(135deg, #2c3e50, #25597b);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 1.5rem;
        }

        .timeline-dot {
            position: absolute;
            left: -25px;
            top: 5px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: white;
            border: 3px solid  #295674;
        }

        .timeline-content {
            background: var(--light);
            padding: 1rem;
            border-radius: 8px;
        }

        .timeline-content h4 {
            font-size: 1rem;
            margin-bottom: 0.3rem;
        }

        .timeline-date {
            display: inline-block;
            background: linear-gradient(135deg, #2c3e50, #25597b);
            color: white;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            font-size: 0.7rem;
            margin-bottom: 0.5rem;
        }

        .timeline-content p {
            color: var(--text-light);
            font-size: 0.8rem;
        }

        /* Action Buttons */
        .action-buttons {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 1.5rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.8rem;
  background: linear-gradient(135deg, #2c3e50, #25597b);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            width: 100%;
        }

        .btn i {
            margin-right: 0.5rem;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        /* Tablet Styles */
        @media (min-width: 600px) {
           
            .profile-section {
                flex-direction: row;
                align-items: flex-start;
            }

            .profile-card {
                width: 300px;
                order: 1;
            }

            .details-section {
                flex: 1;
                order: 2;
            }

            .expertise-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .action-buttons {
                flex-direction: row;
            }

            .btn {
                width: auto;
                padding: 0.8rem 1.2rem;
            }
        }

        /* Desktop Styles */
        @media (min-width: 900px) {
            
            .top-name h1 {
                font-size: 2.2rem;
            }

            .profile-card {
                width: 350px;
            }

            .profile-img-container {
                width: 180px;
                height: 180px;
            }

            .profile-card h2 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.5rem;
            }
        }
    @media (max-width:990px) {
         .abcde{
                        margin-top:250px ;
                        padding: 1rem;

        }
        
         .details-section {
            width: 100%;
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            padding: 1.2rem;
            order: 2;
        }
    }

    /* Scrollbar width */
    ::-webkit-scrollbar {
      width: 10px;
    }

    /* Track (background) */
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }

    /* Thumb (the handle you drag) */
    ::-webkit-scrollbar-thumb {
      background:linear-gradient(135deg, #2c3e50, #25597b);  /* Main color */
      border-radius: 5px;
    }

    /* On hover */
    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(135deg, #6f92b8, #25597b);
    }


    .whatsapp-icon img {
width: 40px;
/* background-color: #25D366;  */
height: auto;
            background: linear-gradient(135deg, #2c3e50, #25597b);
    border: 2px solid #2e508b;
    border-radius: 15px;
    padding: 5px;
}


.whatsapp-button {
  background: #ffffff;
  color: #14c832;
  border: solid  #1c3765;
  padding: 9px 10px;
  border-radius: 15px;
  font-size: 14px;
  /* font-weight: bold; */
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
 
  display: inline-block;
}

@media only screen and (max-width: 555px) {

    .icon-popp {
position: fixed;
top: 90%;


}
.whatsapp-icon{
display: flex;
align-items: center;
justify-content: center;
/* flex-direction: column; */
}
@keyframes whatsapp-bounce {
0% {
  transform: translateY(-30%) scale(1.2);
}
100% {
  transform: translateY(-30%) scale(1.4); 
}
}

.whatsapp-icon img {
width: 40px;
/* background-color: #25D366;  */
height: auto;
}


.whatsapp-button {
  background: #ffffff;
  color: #171616;
  border: solid  #25D366;
  padding: 7px 10px;
  border-radius: 30px;
  font-size: 14px;
 
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
 
  display: inline-block;
}

}