body
{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-size: 12px !important;
}
/* header css */
#header
{
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(img/theme8.JPG);
    background-position:center;
    background-size: cover;
    background-attachment: fixed;
}
.user-box
{
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
}
.user-box img
{
    border-radius: 50%;
    width: 150px;
    border: 2px solid #6caed5;
}
.user-box h2
{
    color: #fff;
    font-weight: bold;
    margin: 10px;
}
.user-box p
{
    color: #fff;
}
.scroll-btn
{
    bottom: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid #fff;
    padding: 10px 10px 20px;
    border-radius: 30px;
}
.scroll-bar span
{
    border: 2px solid #fff;
    font-size: 12px;
    border-radius: 30px;
}
.scroll-bar
{
    animation: mover 1s infinite alternate;
}
@keyframes mover
{
    0%{transform: translateY(0);}
    100%{transform: translateY(10px);}
}

/* About */
.about
{
    padding-top: 100px;
    margin-bottom: -130px;
}
.profile-img
{
    height: 400px;
    border: 10px solid #4d4a4a;
}

.image-container profile-img-div {
    position: relative;
    width: 300px; /* Adjust size */
    overflow: hidden;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    transition: transform 0.3s, box-shadow 0.3s;
}

.image-container  profile-img-div img {
    width: 150%;
    height: auto;
    display: block;
}

.image-container profile-img-div:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3); /* More prominent shadow */
}

.image-container profile-img-div::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0.1));
    pointer-events: none; /* Make it non-interactive */
}



.nav-bar
{
    top: 0;
    position: sticky;
    z-index: 2;
}
.navbar
{
    background-color: #000;
}
.navbar-brand img
{
    height: 50px;
    margin-left: 30px;
    padding:0 ;
    
}
.nav-bar .fa-bars
{
    font-size: 35px;
    color: #fff;
}
.navbar-toggler
{
    outline: none !important;
}
.navbar-nav
{
    float: right;
    text-align: right;
    margin-right: 30px;
}
.nav-link
{
    color: #fff !important;
    font-size: 12px;
    font-weight: bold;
}
.skill-bar p
{
    margin-bottom: 6px;
    font-weight: 600;
}
.progress
{
    border-radius: 16px !important;
    margin-bottom: 10px;
}
.progress-bar
{
    border-radius: 16px;
    background: #000 !important;
}

/* resume*/

.resume
{
    margin-top: -50px;
    padding-top: 50px;
    padding-bottom: 30px;
    background: #f9f9f9;
}
.resume h3
{
    margin-bottom: 50px;
}
.timeline
{
    list-style-type: none;
    position: relative;
}
.timeline:before
{
    content: '';
    background:  #555;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 1;
}
.timeline li
{
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    background: #fff;
}
.timeline li h4
{
    background-color: #000;
    padding: 5px 0 5px 20px;
    color: #fff;
    font-size: 15px;
}
.timeline li h4 span
{
    font-weight: bold;
    color: #ccc;
}
.timeline li:before
{
    content: '';
    background: #fff;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #000;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 1;
}
/*  services */

.services
{
    padding-top: 50px;
    padding-bottom: 50px;
}
.services h1
{
    margin-bottom: 15px;
}

.services-box
{
    background: #f9f9f9;
    padding: 10px;
    margin-top: 20px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}
.services-box .fa
{
    margin: 0 10px;
    font-size: 20px;
}
.services-box span
{
    margin: 3px;
    font-size: 20px;
    font-weight: bold;
}
.services-box p
{
    margin-top: 20px;
    font-size: 15px;
    color: #777;
}
.services-box:hover
{
    background: #000;
    color: #fff;
    border-top-right-radius:0 ;
    border-bottom-left-radius: 0;
    border-top-left-radius: 50;
    border-bottom-right-radius: 50;
    transition: 1s;
}
.services-box:hover p
{
    color: #fff;
}
/*   contact   */
.contact {
    padding-top: 50px;
    background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),url(img/theme8.JPG);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}
.contact .row
{
    padding: 30px 0; 
    font-size: 22px;
}
.contact .col-md-4 .fa
{
    padding: 10px;
    font-size: 40px;
}
.contact .btn
{
    padding: 10px 25px 10px 25px;
    margin: 5px;
    border-radius: 30px;
    border: 2px solid #fff;
    background:transparent;
}
.contact .btn:focus
{
    box-shadow: none !important;
}
.contact .btn:hover
{
    border: 2px solid #000 !important;
    background: #000 !important;
    transition: 0.6s;
}
.contact .btn .fa
{
    margin-right: 10px;
}
.contactp{
    font-size: 12px;
}
.footer
{
    background: #000;
    height: 50px;
    margin-top: 50px;
    color: #fff;
    padding-top: 10px;
}
.fa-heart-o
{
    color:red;
}


/* social icon*/

.social-icons
{
    top: 50%;
    transform:  translateY(-50%);
    position: sticky;
    z-index: 1;
    width: 80px;
}
.social-icons ul
{
    padding: initial;
}
.social-icons ul li
{
    height: 40px;
    width: 40px;
    list-style-type: none;
    padding-left: 12px;
    padding-top: 6px;
    margin-top: 5px;
    color: #fff;
    background-color: #000;
}
    .social-icons ul li a {
        color: inherit;
    }

#anchorId {
    text-decoration: none;
}
.social-icons ul li:hover
{
    padding-left: 30px;
    width: 80px;
    transition: 1s;
}

/* about */

.about-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: min(2400px, 100%);
    margin: auto;
}

.aboutSection {
    flex: 1;
    max-width: 540px;
    margin: 20px 10px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: .3s linear;
}

/* resume */

.resume-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: min(2400px, 100%);
    margin: auto;
}

.resumeSection {
    flex: 1;
    max-width: 540px;
    margin: 20px 10px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: .3s linear;
}

/* services */

.services-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: min(1600px, 100%);
    margin: auto;
}

.servicesSection {
    flex: 1;
    max-width: 360px;
    margin: 20px 10px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: .3s linear;
}


/*   pricing   */

.pricing-table{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: min(1600px, 100%);
  margin: auto;
}

.pricing-card{
  flex: 1;
  max-width: 360px;
  background-color: gainsboro;
  margin: 20px 10px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  color: #2d2d2d;
  transition: .3s linear;
}

/* contact */

.contact-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: min(1600px, 100%);
    margin: auto;
}

.contactInfo {
    flex: 1;
    max-width: 360px;
    margin: 20px 10px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: .3s linear;
}

.pricing-card-header{
  background-color: #000000;
  display: inline-block;
  color: gainsboro;
  padding: 12px 30px;
  border-radius: 0 0 20px 20px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  transition: .4s linear;
}

.pricing-card:hover .pricing-card-header{
  box-shadow: 0 0 0 26em #000000;
}

.price{
  font-size: 70px;
  color: #000000;
  margin: 40px 0;
  transition: .2s linear;
}

.price sup, .price span{
  font-size: 22px;
  font-weight: 700;
}

.pricing-card:hover ,.pricing-card:hover .price{
  color: #fff;
}

.pricing-card li{
  font-size: 12px;
  padding: 10px 0;
  text-transform: uppercase;
  text-decoration: none;
  list-style: none;
}

.order-btn{
  display: inline-block;
  margin-bottom: 40px;
  margin-top: 80px;
  border: 2px solid #000000;
  color: #2d2d2d;
  padding: 18px 40px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 500;
  transition: .3s linear;
}

.order-btn:hover{
  background-color: #000000;
  color: #fff;
}

@media screen and (max-width:1100px){
  .pricing-card{
    flex: 50%;
  }
    .aboutSection {
        flex: 50%;
    }

    .resumeSection {
        flex: 50%;
    }
    .servicesSection {
        flex: 50%;
    }
    .contactInfo {
        flex: 50%;
    }
}



/* Container for the images */
.image-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px; /* Gap between images */
    padding-bottom: 7%;
}

.image-container {
    position: relative;
    overflow: hidden;
    width: 500px; /* Adjust container width */
    height: 250px; /* Adjust container height */
    border: 1px solid #ccc;
    border-radius: 5px; /* Rounded corners */
    transition: transform 0.3s;
    cursor: pointer;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container while maintaining aspect ratio */
    transition: transform 0.3s;
}

.image-container:hover img {
    transform: scale(1.1);
}

.image-container .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 18px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.image-container:hover .overlay {
    opacity: 1;
}

/* Responsive behavior for smaller screens */
@media screen and (max-width: 600px) {
    .image-container {
        width: 200px;
        height: 100px;
    }

    .image-container .overlay {
        font-size: 14px;
    }
}

.container {
    padding-left: 10%;
    padding-right: 10%;
    box-sizing: border-box;
}








