/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header and Navigation */
header {
    background-color: #2c3e50;
    color: #fff;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f1c40f;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #f1c40f;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 100px 20px;
    background-color: #3498db;
    color: #fff;
    text-align: center;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left {
    max-width: 600px;
    text-align: left;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight {
    color: #f1c40f;
}

.hero-subheading {
    font-size: 1.5rem;
    color: #ecf0f1;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: #ecf0f1;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #f1c40f;
    color: #2c3e50;
}

.btn-primary:hover {
    background-color: #e67e22;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #f1c40f;
    color: #f1c40f;
}

.btn-secondary:hover {
    background-color: #f1c40f;
    color: #2c3e50;
}

.hero-right .hero-image img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-details {
    text-align: left;
}

.tagline {
    font-size: 1.2rem;
    color: #3498db;
    margin-bottom: 20px;
}

.description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.about-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
}

.info-item i {
    color: #3498db;
}

/* Skills Section */
.skills {
    padding: 80px 20px;
    background-color: #ecf0f1;
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.skill {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.skill:hover {
    transform: translateY(-10px);
}

.skill i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 10px;
}

.skill h3 {
    font-size: 1.2rem;
    color: #2c3e50;
}

/* Achievements Section */
.achievements {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-item {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.achievement-item i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 10px;
}

.achievement-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
}

.achievement-item p {
    font-size: 0.9rem;
    color: #555;
}

/* Photo Gallery Section 
.blogs {
    padding: 80px 20px;
    background-color: #ecf0f1;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.heading h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.dream img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.dream img:hover {
    transform: scale(1.05);
}
    */

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #f1c40f;
}

.contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact ul li a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.contact ul li a:hover {
    color: #f1c40f;
}

.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ecf0f1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #2c3e50;
        padding: 20px;
        border-radius: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        text-align: center;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-details {
        text-align: center;
    }
    .hero-image{
        display: none;
    }
    .about-image{
        display: none;
    }
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px 20px 0 20px;
  }
  
  .container .heading{
    width: 50%;
    padding-bottom: 50px;
  }
  .container .heading h3{
    font-size: 3em;
    font-weight: bolder;
    padding-bottom: 10px;
    border-bottom: 3px solid #222;
  }
  
  .container .heading h3 span{
    font-weight: 100;
  }
  .container .box{
   display: flex;
   flex-direction: row;
   justify-content: space-between;
  }
  
  .container .box .dream{
    display: flex;
    flex-direction: column;
    width: 32.5%;
  }
  
  .container .box .dream img{
    width: 100%;
    padding-bottom: 15px;
    border-radius: 5px;
  }
  
  .container .btn{
    margin: 40px 0 70px 0;
    background: #222;
    padding: 15px 40px ;
    border-radius: 5px;
  }
  
  .container .btn a{
   color: #fff;
   font-size: 1.2em;
   text-decoration: none;
   font-weight: bolder;
   letter-spacing: 3px;
  }
  
  @media only screen and (max-width: 769px){
      .container .box{
     flex-direction: column;
    }
  
  .container .box .dream{
    width: 100%;
  }
  }
  
  @media only screen and (max-width: 643px){
  .container .heading{
    width: 100%;
  }
  .container .heading h3{
    font-size: 1em;
  
  }
  
  }  
  
/* ------foter------ */
footer ul {
    display: flex;
    position: relative;
    margin-top: 9em;
    margin-left: 40%;
  }
  
  footer ul li {
    list-style: none;
  }
  
  footer ul li a {
     width: 57px;
    height: 60px;
    line-height: 63px;
    background-color: transparent;
    border: 2px solid blue;
    text-align: center;
    font-size: 35px;
    margin: 0 10px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  footer ul li a .icon {
    position: relative;
    color: #262626;
    transition: 0.5s;
    z-index: 3;
  }
  
  .copyright {
    display: inline-flex;
    margin-top: 0.5rem;
    margin-top: 0.5rem;
    font-size: 1.5em;
  }
  .fa-copyright {.skills-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .skill {
    text-align: center;
    width: 150px;
  }
  
  .skill i {
    font-size: 32px; /* Consistent icon size */
    margin-bottom: 10px;
    color: #007BFF; /* Icon color (optional) */
  }
  
  .skill h3 {
    margin-top: 8px;
    font-size: 18px;
    color: #333; /* Text color (optional) */
  }
  .achievement-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .achievement-item {
    text-align: center;
    width: 250px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .achievement-item i {
    font-size: 40px; /* Icon size */
    margin-bottom: 15px;
    color: #007BFF; /* Icon color */
  }
  
  .achievement-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333; /* Heading color */
  }
  
  .achievement-item p {
    font-size: 16px;
    color: #666; /* Text color */
  }
  body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  main {
    flex: 1; /* Ensures the main content takes up remaining space */
  }
  
  footer {
    background-color: #030d161e;
    padding: 20px 0;
    text-align: center;
    margin-top: auto; /* Pushes the footer to the bottom */
  }
  }
