
:root{
  --primary: #06b6d4;
  --primary-2: #0ea5a4;
  --muted: #6b7280;
  --text: #172025;
  --bg-dark: #040b14;
  --light: #eaebf0;
}

body {
  font-family: "Poppins", "Open Sans", sans-serif;
  color: var(--text);
}

/* overall page background and main padding */
body { background: #fbfdff; }
#main { margin-left: 300px; padding-top: 28px; }

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-2);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #149ddd;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #2eafec;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  transition: all ease-in-out 0.5s;
  z-index: 9997;
  transition: all 0.5s;
  padding: 0 15px;
  background: #040b14;
  overflow-y: auto;
}
#header .profile img {
  margin: 15px auto;
  display: block;
  width: 120px;
  border: 8px solid #2c2f3f;
}
#header .profile h1 {
  font-size: 22px;
  margin: 0;
  padding: 0;
  font-weight: 700;
  text-align-last: center;
  font-family: "Poppins", sans-serif;
}
#header .profile h1 a, #header .profile h1 a:hover {
  color: var(--light);
  text-decoration: none;
}
#header .profile .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #212431;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#header .profile .social-links a:hover {
  background: #149ddd;
  color: #fff;
  text-decoration: none;
}

#main {
  margin-left: 300px;
}

/* Ensure header drawer fills height and resume link stays at bottom */
#header .d-flex.flex-column {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#header .drawer-resume {
  margin-top: auto;
  width: 100%;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.03);
}
#header .drawer-resume .nav-link {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  color: #eaebf0; /* match footer .credits color */
  font-weight: 600;
}
#header .drawer-resume .nav-link:hover { color: #ffffff }
#header .drawer-resume .nav-link i { margin-right: 8px; font-size:18px }

@media (max-width: 1199px) {
  #header {
    left: -300px;
  }

  #main {
    margin-left: 0;
  }
}
/* ===== Contact Section ===== */
.contact {
  padding: 60px 0 80px;
  background: linear-gradient(180deg,#051024 0%, #071529 60%);
  color: var(--light);
}
.contact .section-title h2, .contact .section-title p { color: var(--light) }
/* .contact .info-cards { display:flex; flex-direction:column; gap:14px; flex-wrap:nowrap; align-items:flex-start; overflow-x:auto; -webkit-overflow-scrolling:touch; } */
.contact .info-card { display:flex; gap:12px; margin-top: 4px; align-items:center; background:rgba(255,255,255,0.02); padding:14px; border-radius:10px; box-shadow: 0 6px 20px rgba(2,6,23,0.45); flex:0 0 260px; min-width:220px }
.contact .info-card i { font-size:20px; color:var(--primary); width:36px; height:36px; display:flex; align-items:center; justify-content:center; background:transparent; border-radius:6px; }
.contact .info-card h5{ margin:0 0 2px 0; font-size:14px; color:var(--primary); font-weight:600 }
.contact .info-card p{ margin:0; font-size:14px; color:var(--primary); opacity:0.95 }
.contact .map-wrap { margin-top:8px; border-radius:10px; overflow:hidden; box-shadow: 0 8px 30px rgba(2,6,23,0.6); }
.contact .contact-card { background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02)); border-radius:14px; color:var(--light); }
.contact .contact-card h3{ color:var(--light); margin-bottom:8px }
.contact .contact-card .lead{ color:#cfeffb }
.contact .contact-card ul{ padding-left:18px; color:#cfeffb }
.contact .contact-ctas { margin-top:12px }
.btn-cta{ padding:10px 18px; border-radius:10px; font-weight:600; box-shadow: 0 8px 24px rgba(3,7,18,0.6); transition: transform .18s ease, box-shadow .18s ease }
.btn-email{ background: linear-gradient(90deg,var(--primary),var(--primary-2)); color:#042027; border:0 }
.btn-call{ background: linear-gradient(90deg,#7c3aed,var(--primary)); color:#fff; border:0 }
.btn-linkedin{ background: linear-gradient(90deg,var(--primary-2),#0369a1); color:#fff; border:0 }
.btn-cta:hover{ transform: translateY(-4px); box-shadow: 0 18px 40px rgba(2,6,23,0.7) }

@media (max-width: 991px) {
  .contact { padding:40px 0 }
  .contact .info-cards { flex-direction:row; flex-wrap:nowrap; }
  .contact .info-card{ flex:0 0 48%; }
  .contact .map-wrap{ order:3; width:100% }
}

/* Contact CTA buttons: default inline layout with responsive stack on small screens */
.contact .contact-ctas { display:flex; gap:12px; flex-wrap:wrap; align-items:center; }
@media (max-width: 575px) {
  .contact .contact-ctas { flex-direction:column; align-items:stretch; }
  .contact .contact-ctas .btn-cta { width:100%; display:block; }
  .contact .contact-ctas .btn-cta + .btn-cta { margin-top:10px; }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
  padding: 30px 0 0 0;
}
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}
.nav-menu a, .nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #c9cdd6;
  padding: 12px 15px;
  margin-bottom: 8px;
  transition: 0.18s;
  font-size: 15px;
}
.nav-menu a i, .nav-menu a:focus i {
  font-size: 24px;
  padding-right: 8px;
  color: #6f7180;
}
.nav-menu a:hover, .nav-menu .active, .nav-menu .active:focus, .nav-menu li:hover > a {
  text-decoration: none;
  color: var(--light);
}
.nav-menu a:hover i, .nav-menu .active i, .nav-menu .active:focus i, .nav-menu li:hover > a i {
  color: var(--primary);
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  background-color: #149ddd;
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 50px;
  cursor: pointer;
}

.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active #header {
  left: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
 /* margin: auto; */
  width: 100%;
  height: 100vh;
  background: url("../img/cc79408ddd439ea1f0dff5a80d2f7a15.jpg") top center;
  background-size: cover;
  font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}
#hero:before {
  content: "";
  background: rgba(5, 13, 24, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
#hero .hero-container {
  position: relative;
  z-index: 2;
  min-width: 300px;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,400;0,500;1,800&family=Open+Sans:wght@500&family=Poppins&family=Roboto&family=Source+Serif+4:opsz,wght@8..60,200;8..60,300;8..60,400;8..60,500&display=swap');

#hero>div>p:nth-child(1){
font-family: 'Montserrat', sans-serif;
color:#ff014f; 
font-size:20px;
 font-weight:600;
 margin-bottom:20px
}
#hero h1 {
  /* margin: 0 0 10px 0; */
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #ff014f;
  /* margin-left: 50px; */
}
#hero p {
    color: #fff;
  margin-bottom: 0px;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}
#hero p span {
  color: #fff;
  font-size:40px;
  padding-bottom: 4px;
  letter-spacing: 1px;
  border-bottom: 3px solid #ff014f;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
    
#hero>div>p:nth-child(1){
    font-family: 'Montserrat', sans-serif;
    color:#ff014f; 
    font-size:20px;
     font-weight:600;
     margin-bottom:20px
    }
 
    #hero p {
        color: #fff;
      margin-bottom: 0px;
      font-size: 26px;
      font-family: "Poppins", sans-serif;
    }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero p span {
    color: #fff;
    font-size:35px;
    padding-bottom: 4px;
    letter-spacing: 1px;
    border-bottom: 3px solid #ff014f;
  }
}
@media (max-width: 575px) {
    
    #hero>div>p:nth-child(1){
        font-family: 'Montserrat', sans-serif;
        color:#ff014f; 
        font-size:16px;
         font-weight:600;
         margin-bottom:20px
        }
     
        #hero p {
            color: #fff;
          margin-bottom: 0px;
          font-size: 20px;
          font-family: "Poppins", sans-serif;
        }
    
      #hero h1 {
        font-size: 25px;
        line-height: 36px;
      }
      #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
      }
      #hero p span {
        color: #fff;
        font-size:24px;
        padding-bottom: 4px;
        letter-spacing: 1px;
        border-bottom: 3px solid #ff014f;
      }
    }
    
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background: #f5f8fd;
}

.section-title {
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 18px;
  position: relative;
  color: var(--text);
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #149ddd;
  bottom: 0;
  left: 0;
}
.section-title p {
  margin-bottom: 0;
  margin-left: 0;
  color: #345; 
  max-width: 800px;
}

/* Experience & Resume adjustments for clearer layout */
.experience .resume-item, .resume .resume-item {
  background: #ffffff;
  padding: 18px 20px;
  margin-bottom: 16px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 6px 18px rgba(14,165,164,0.06);
  border-radius: 8px;
}
.experience .resume-item h4, .resume .resume-item h4{
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Portfolio cards layout improvements */
.portfolio .project { display:flex; gap:20px; align-items:flex-start; margin-bottom:28px; background: #fff; padding:14px; border-radius:10px; box-shadow: 0 6px 20px rgba(15,23,42,0.04); }
.portfolio .projectImg { flex:0 0 38%; }
.portfolio .projectDesc { flex:1 1 62%; padding:6px 12px; }
.portfolio .projimg { width:100%; height:auto; border-radius:8px; object-fit:cover; }
.portfolio .projectDesc h3 { margin-top:0; color:var(--text); }
.portfolio .projectDesc p { color:var(--muted); line-height:1.5; }
.proj-links { margin-top:10px; display:flex; gap:10px; align-items:center }

@media (max-width: 991px) {
  .portfolio .project { flex-direction:column; }
  .portfolio .projectImg { width:100%; }
  .portfolio .projectDesc { width:100%; }
}

/* tighten about section spacing */
.about .img-fluid { border-radius:8px; max-width:100%; }
.about .content h3 { color:var(--text); }
.about ul li { color:var(--muted); }

/* small refinements for headings and section spacing */
.section-title p { color:var(--muted); max-width:900px; }

.project{
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 6px 18px;
    padding:18px;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    border-radius: 8px;
}
.projectImg{
    width:320px;
    flex: 0 0 320px;
}
.projectDesc{
    padding: 10px 6px;
    flex: 1 1 auto;
}

/* Ensure consistent spacing for section groups */
section + section {
  padding-top: 40px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
    margin-top: 70px;
   margin-bottom: 20px;
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.about .content ul strong {
  margin-right: 10px;
}
.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}
.about .content p:last-child {
  margin-bottom: 0;
}


/* 
/*--------------------------------------------------------------
# Akills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}
.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #050d18;
}
.skills .progress .skill .val {
  float: right;
  font-style: normal;
}
.skills .progress-bar-wrap {
  background: #dce8f8;
  height: 10px;
}
.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #149ddd;
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #050d18;
}
.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #1f5297;
  position: relative;
}
.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #050d18;
  margin-bottom: 10px;
}
.resume .resume-item h5 {
  font-size: 16px;
  background: #e4edf9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}
.resume .resume-item ul {
  padding-left: 20px;
}
.resume .resume-item ul li {
  padding-bottom: 10px;
}
.resume .resume-item:last-child {
  padding-bottom: 0;
}
.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #1f5297;
}
.row{
    padding-left: 40px;
    padding-right: 40px;
}
@media(max-width:445px){
    .row{
        padding-left: 15px;
        padding-right: 20px;
    }
}



/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
#ProjectCont{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.project{

    display: flex;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding:15px;
  
}
.projectImg{
    width:350px
}
.projectImg>img{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    width:100%;
    height:100%
}
.projectDesc{
    padding: 10px;
}
#BlinkitImg{
    width:275px;
  }

.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #149ddd;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 130px;
}
.contact .info {
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .info i {
  font-size: 20px;
  color: #149ddd;
  float: left;
  width: 44px;
  height: 44px;
  background: #dff3fc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #050d18;
}
.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #173b6c;
}
.contact .info .email p {
  padding-top: 5px;
}
.contact .info .social-links {
  padding-left: 60px;
}
.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}
#name{
   margin-left:0px;
   width: 100%;
}
.contact .info .social-links a:hover {
  background: #149ddd;
  color: #fff;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #149ddd;
  color: #fff;
}
/* Removed legacy php-email-form styling (contact form removed) */

#projimg{
    width:334px
}

/*--------------------------------------------------------------*/

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .project{
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  flex-direction: column;

}
.projectImg{
    width: 100%;
    margin: auto;
}
#projimg{
    width:100%
}
.projectImg>img{
 
    width:100%;
    height:100%;
}

#BlinkitImg{
    width:100%;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
  .forced{
    display:flex;
    flex-direction: column;
    gap: 10px;
}
}

#ProjLinks, .proj-links{
  display:flex;
  gap:12px;
  flex-wrap: wrap; 
  margin-left: 0;
 }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 15px;
  color: #f4f6fd;
  font-size: 14px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 9999;
  background: #040b14;
}
#footer .copyright {
  text-align: center;
}
#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #eaebf0;
}
@media (max-width: 1199px) {
  #footer {
    position: static;
    width: auto;
    padding-right: 20px 15px;
  }
}
/* h2{
    text-align: center;
} */

.forced{
    display:flex;
    gap: 10px;
}
