
html{
    scroll-behavior: smooth;
}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #6C63FF;
            --secondary: #4A44C6;
            --dark: #2A2D3A;
            --light: #F7F9FC;
            --accent: #ff0033;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            background-color: rgb(237, 236, 236);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            font-family: 'Times New Roman', Times, serif;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            padding: 150px 0 100px;
            display: flex;
            align-items: center;
            min-height: 100vh;
        }

        .hero-content {
            flex: 1;
            padding-right: 50px;
        }

        .hero-image {
            flex: 1;
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
            font-family: 'Times New Roman', Times, serif;
        }

        .hero h1 span {
            color: var(--primary);
            font-family: 'Times New Roman', Times, serif;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #666;
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        }

        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            margin-left: 15px;
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }

        /* About Section */
        .section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .about-text p {
            margin-bottom: 20px;
            color: #666;
        }

        .about-image {
            flex: 1;
            text-align: center;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Education Section */
        .education {
            background-color: white;
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--primary);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 3px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .timeline-content::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: white;
            top: 30px;
            border-radius: 50%;
            z-index: 1;
            border: 4px solid var(--primary);
        }

        .timeline-item:nth-child(even) .timeline-content::after {
            left: -10px;
        }

        .timeline-content h3 {
            margin-bottom: 10px;
            color: var(--primary);
        }

        .timeline-content p {
            color: #666;
            margin-bottom: 5px;
        }

        .timeline-content .date {
            font-weight: 600;
            color: var(--accent);
        }

        /* Skills Section */
        .skills-container {
            display: grid;
            gap: 30px;
                        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                        color: black;

        }

        .skills-container :hover{
    background-color: #a2a2a21e;
    transition:  0.5s ease-in-out;
    color: black;
        transform: translateY(3px);

}

        .skill-category {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .skill-category h3 {
            margin-bottom: 20px;
            color: var(--secondary);
            text-align: center;
        }

        .skill-item {
            margin-bottom: 15px;
        }

        .skill-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }

        .skill-bar {
            height: 10px;
            background-color: #e0e0e0;
            border-radius: 5px;
            overflow: hidden;
        }

        .skill-progress {
            height: 100%;
            background-color: var(--primary);
            border-radius: 5px;
        }

        /* Contact Section */
        .contact {
            background-color: white;
        }

        .contact-container {
            display: flex;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
            font-size: 1.2rem;
        }

        .contact-form {
            flex: 1;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }

        .form-control:focus {
            border-color: var(--primary);
            outline: none;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
         .footer {
            background-color: #2c3e50;
            color: white;
            padding: 5px 20px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
            padding: 0 15px;
            margin-left: 700px;
        }
        .footer-sections{
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
            padding: 0 15px;
        }
   

        
        
        .footer-sections h3 {
            font-size: 48px;
            margin-bottom: 15px;
            color: #ffffff;
        }
        
                .footer-section h4 {
font-size: 28px;
 margin-bottom: 15px;
            color: #ffffff;
                }


        .footer-section p, .footer-section a {
            color: #ecf0f1;
            line-height: 1.6;
            text-decoration: none;
        }
        
        .footer-section a:hover {
            color: #f39c12;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 36px;
            height: 36px;
            background-color: #34495e;
            border-radius: 50%;
            text-align: center;
            line-height: 36px;
            transition: background-color 0.3s;
        }
        
        .social-icons a:hover {
            background-color: #000000;
            color: white;
             transition:

  translateY(-5px);
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            margin-top: 20px;
        }
        
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
            }
            
            .footer-section {
                margin-bottom: 30px;
            }
        }


        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                text-align: center;
            }

            .hero-content {
                padding-right: 0;
                margin-bottom: 50px;
            }

            .about-content {
                flex-direction: column;
            }

            .contact-container {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: white;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px 0;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .timeline::after {
                left: 31px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }

            .timeline-item:nth-child(even) {
                left: 0;
            }

            .timeline-content::after {
                left: -10px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }
        }


  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
      .containering {
            width:40%;
            max-width: 800px;
            height: 400px;
            background-color: white;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            display:flex;
            flex-direction:column;
align-items: center;    
margin-left: 375px; 

}
        


        .heeed{
font-size: xxx-large;       
     margin-left: 535px;
     color: black;
    
        }

       .heeed::after {
    /* *1. Must have content to display the element* */
    content: ''; 
    
    /* *2. Define the appearance of the line* */
    display: block; /* Makes it behave as a block element */
    width: 90px; /* *Length of the line (Adjust this)* */
    height: 4px; /* *Thickness of the line (Adjust this)* */
    background-color:var(--primary); /* *The color of the line (Use your desired color)* */
    gap: 2px;
    margin: 0 auto; 
    margin-right: 600px;
}
       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
    
        
        .containeringss {
            width: 500px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 1s ease;
            margin-left: 100px;
box-shadow: 0 15px 30px  5px #1665ae;
 animation-duration: 2s; /* Animation speed */
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;

        }
        
        .containeringss:hover{
            transform: translateY(-5px);
box-shadow: 0 15px 30px  5px #2841ff;
        }
        
        .image-containeringss {
            width: 50%;
            height: 200px;
            overflow: hidden;
            position: relative;
            background-color: #f8f9fa;
            margin-left: 130px;
            border-radius: 15px;
             animation-name: float;
   
        }
        
        .watch-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .image-containeringss:hover .watch-image {
            transform: scale(1.03);
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
        }
        
        .button-containeringss {
            padding: 30px;
            text-align: center;
            background-color: white;
        }
        
        .open-button {
            display: inline-block;
            padding: 14px 40px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            letter-spacing: 0.5px;
        }
        
        .open-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(106, 17, 203, 0.4);
            background: linear-gradient(135deg, #5a0db5 0%, #1c6ae4 100%);
        }
        
        .open-button:active {
            transform: translateY(1px);
        }
        
        .title {
            text-align: center;
            margin-bottom: 15px;
            color: #333;
            font-size: 24px;
            font-weight: 600;
        }
        
        @media (max-width: 600px) {
            .image-container {
                height: 300px;
            }
            
            .button-container {
                padding: 20px;
            }
            
            .open-button {
                padding: 12px 30px;
                font-size: 16px;
            }
        }

        .aly{
              box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.8s;
  width: 40%;
  border-radius: 10px;
box-shadow: 0 15px 30px  5px #1665ae;
        }
.aly :hover{
box-shadow: 0 15px 30px  5px #2841ff;
transition: 1s ease-in-out;
}
        .alys{
            padding: 2px 12px;
        }

        .containeringsss{
             width: 500px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 1s ease;
            margin-left: 370px;
box-shadow: 0 15px 30px  5px #1665ae;
margin-left: 670px;
 animation-name: float;
    animation-duration: 2s; /* Animation speed */
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;

        }
        .containeringsss:hover{
box-shadow: 0 15px 30px  5px #2841ff;
transition: 0.6s ease-in-out;
transform: translateY(-5px);

        }

         .containeringssss{
             width: 500px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 1s ease;
box-shadow: 0 15px 30px  5px #1665ae;
margin-left: 100px;
 animation-name: float;
    animation-duration: 2s; /* Animation speed */
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
        }
        .containeringssss:hover{
box-shadow: 0 15px 30px  5px #2841ff;
transform: translateY(-5px);

        }
        