html{
    scroll-padding-top: 80px;
}
h1,
h2,
h3,
h4,
h5,
h6{
    color: #009688;
    font-family: sans-serif;
}
p{
    color: grey;
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
}
body {
    background-color: #0b0b0f; 
    color: #009688;
}
section {
    
    overflow: hidden;
}

#preloader{
    background-color: #009688;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}
#status{
    background-image: url("../img/preloader1/preloader.gif");
    background-repeat: no-repeat;
    width: 70px;
    height: 70px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -35px;
    margin-left: -35px;
}

h1{
    font-family: "Montserrat", sans-serif;
}

/* =========================================
                Navigation
============================================ */
.navbar {
    padding: 35px 0 20px 0;
    transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
}
.navbar-brand {
    padding: 13px 15px;
}
#navbarNav{
    padding: 0px 85px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    display: none;
}
ul.navbar-nav>li>a {
    font-family: "Raleway", sans-serif;
    color: #009788;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

ul.navbar-nav>li>a:hover,
ul.navbar-nav>li>a:focus {
    background: none;
    color: #e9e8e4;
}


.white-nav-top {
    background: #fff;
    padding: 10px 0;
    -webkit-box-shadow: 0 8px 6px -9px #ebe7e7;
    box-shadow: 0 8px 6px -9px #999;
    z-index: 2;
}
.white-nav-top ul.navbar-nav>li>a {
    color: #009788;
}

.white-nav-top ul.navbar-nav>li>a:hover,
.white-nav-top ul.navbar-nav>li>a:focus {
    color: #b8b8ae;
}



/* ------------------Home Section-------------- */

#home{
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    margin-bottom: 100px;
}

#home-bg-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the section while maintaining aspect ratio */
    z-index: -1; 
} 
 #home-overlay{
    background-color: rgba(10, 8, 8, 0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#home-content {
    height: 100%;
    width: 100%;
    display: table;
}
#home-content-inner {
    display: table-cell;
    vertical-align: middle;
}
#home-heading h1 {
    color: #f0f4f0;
    font-size: 65px;
    font-weight: 100;
    text-transform: uppercase;
    margin: 0%;
    display: inline-block;
}
#home-heading h1 span {
    color: #009688;
    font-weight: 600;
}
#home-text p {
    font-size: 17px;
    color:white;
    font-weight: 100;
}
.btn-general{
    font-family: sans-serif;
    border-radius: 28px;
    font-size: 13px;
    margin: o 6px;
    text-transform: uppercase;
    padding: 12px 46px 12px 46px;
    transition: all .5s;
}
.btn-home{
    color: #9ca119;
    border: 1px solid #fff;
}
.btn-home:hover,
.btn-home:focus {
    color: #fff;
    background-color: #f4c613;
    border: 1px solid #f4c613;
} 



/* /nency */

/* About Section Styling */
#about {
    background-color: #000; /* Black background */
    color: #eee; /* Light text for contrast */
    padding: 80px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Heading Section */
#about .verticle-heading h5 {
    color: #009688;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

#about .verticle-heading h2 {
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}

#about .verticle-heading h2 strong {
    color: #009688;
}

/* Right Side Content */
#about-right h2 {
    font-size: 28px;
    font-weight: bold;
    animation: colorPulse 3s infinite ease-in-out;
    background: linear-gradient(90deg, #009688, #00bfa5, #ffffff, #009688);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

@keyframes colorPulse {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

#about-right p {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
}

#about-right p br {
    display: block;
    margin-bottom: 10px;
}

/* Highlighting bullet points */
#about-right p::before {
    content: '';
    display: block;
    height: 1px;
    background-color: #009688;
    margin: 20px 0;
    width: 50%;
}

#about-right p {
    position: relative;
}

#about-right p strong {
    color: #009688;
}

/* Responsive behavior */
@media (max-width: 768px) {
    #about .verticle-heading h2 {
        font-size: 32px;
    }

    #about-right h2 {
        font-size: 22px;
    }
}


#about .verticle-heading h2,
#about-right h2 {
    transition: color 0.3s ease;
}

#about .verticle-heading h2:hover,
#about-right h2:hover {
    color: #00bfa5; /* Slightly lighter shade on hover */
}


/* nency */
/* About-02 Section Styling */
#about-02 {
    background-color: #111; /* Deep black for contrast */
    color: #eee;
    padding: 80px 0;
}

/* Box styling */
.about-item {
    background-color: #1c1c1c;
    padding: 40px 25px;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    border: 1px solid transparent;
}

/* Font Awesome Icons */
.about-item i {
    font-size: 40px;
    color: #009688;
    margin-bottom: 20px;
    transition: transform 0.4s ease, color 0.4s ease;
}

/* Titles */
.about-item h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
}

/* Underline (hr) */
.about-item hr {
    width: 50px;
    border: 2px solid #009688;
    margin: 10px auto 20px;
}

/* Paragraph Text */
.about-item p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.7;
}

/* Hover Effects */
.about-item:hover {
    background-color: #000;
    border-color: #009688;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 150, 136, 0.2);
}

.about-item:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #00bfa5;
}

.about-item:hover h3 {
    color: #00bfa5;
}

/* Responsive fix */
@media (max-width: 768px) {
    .about-item {
        margin-bottom: 30px;
    }
}




/* nency */
/* Portfolio Item */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin: 10px;
    background-color: #111;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: all 0.4s ease;
}

/* Image */
.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* Image Zoom Effect */
.portfolio-item:hover img {
    transform: scale(1.1);
}

/* Overlay (Always visible) */
.portfolio-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* semi-dark overlay */
    z-index: 1;
    transition: background 0.3s ease;
}

/* Make overlay slightly lighter on hover */
.portfolio-item:hover::before {
    background: rgba(0, 0, 0, 0.4);
}

/* Text (Always visible, above overlay) */
.portfolio-item-detail {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2; /* above overlay */
    color: #fff;
    transition: all 0.3s ease;
}

/* Container for heading */
#portfolio .verticle-heading {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-in-out;
}

/* Subheading - Find Out Work */
#portfolio .verticle-heading h5 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #009688;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

#portfolio .verticle-heading h5::after {
    content: "";
    display: block;
    height: 3px;
    width: 60%;
    background-color: #009688;
    margin: 8px auto 0 auto;
    border-radius: 5px;
    animation: underlineGrow 1.2s ease forwards;
}

/* Main Heading - Our Services */
#portfolio .verticle-heading h2 {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
    margin-top: 20px;
}

#portfolio .verticle-heading h2 strong {
    color: #009688;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #portfolio .verticle-heading h2 {
        font-size: 32px;
    }

    #portfolio .verticle-heading h5 {
        font-size: 16px;
    }
}

/* Animation Keyframes */
@keyframes underlineGrow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60%;
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Subtext */
.portfolio-item-detail p {
    font-size: 15px;
    color: #b2dfdb;
    transition: all 0.3s ease;
}

/* Cool Hover Effects on Text */
.portfolio-item:hover .portfolio-item-detail h3 {
    color: #00e0b6;
    transform: scale(1.1);
    text-shadow: 0 0 10px #00e0b6;
}

.portfolio-item:hover .portfolio-item-detail p {
    color: #80cbc4;
    transform: translateX(5px);
}

/* Glowing border */
.portfolio-item:hover {
    box-shadow: 0 0 15px rgba(0, 150, 136, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .portfolio-item {
        margin-bottom: 30px;
    }

    #portfolio .verticle-heading h2 {
        font-size: 32px;
    }
}


/* resume section */

/* ==== Resume Section Styling ==== */
#resume {
  position: relative;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
  z-index: 1;
}

#resume::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
              url('../img/bg1.jpg') no-repeat center center fixed;
  background-size: cover;
  z-index: -1;
  opacity: 0.95;
  pointer-events: none;
}

/* Optional subtle parallax scroll effect */
@keyframes scrollEffect {
  0% {
      background-position: center 0;
  }
  100% {
      background-position: center 100%;
  }
}

/* === Heading === */
#resume_head h1 {
    font-size: 42px;
    font-weight: 700;
    text-align: right;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 60px;
    position: relative;
    animation: fadeInRight 1s ease forwards;
}

#resume_head h1::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    background: #009688;
    margin: 15px 0 0 auto;
    border-radius: 5px;
    animation: underlineGrow 1.2s ease forwards;
}

/* ==== Resume Cards ==== */
.resume-content-01,
.resume-content-02,
.resume-content-03 {
    background: linear-gradient(135deg, #111, #0d0d0d);
    border: 2px solid transparent;
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    position: relative;
    height: 100%;
    text-align: right;
    overflow: hidden;
}

/* Hover effect + glow ring */
.resume-content-01:hover,
.resume-content-02:hover,
.resume-content-03:hover {
    border-color: #009688;
    transform: translateY(-10px);
    background: linear-gradient(135deg, #000000, #111111, #00968811);
    box-shadow: 0 0 25px #00968855;
}

/* === Icons with Glow Ring === */
.resume-content-01 i,
.resume-content-02 i,
.resume-content-03 i {
    font-size: 48px;
    color: #009688;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.resume-content-01 i::after,
.resume-content-02 i::after,
.resume-content-03 i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(#00968844, transparent 60%);
    z-index: 1;
    animation: pulseGlow 2.5s infinite;
}

/* === Titles and Text === */
.resume-content-01 h3,
.resume-content-02 h3,
.resume-content-03 h3 {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.resume-content-01 p,
.resume-content-02 p,
.resume-content-03 p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
}

/* === CTA Button === */
.resume-cta {
    margin-top: 60px;
    text-align: center;
    animation: fadeInUp 1s ease forwards;
}

.resume-cta a {
    background: #009688;
    color: #fff;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px #00968877;
}

.resume-cta a:hover {
    background: #00bfa5;
    box-shadow: 0 0 25px #00bfa588;
}

.dynamic-gradient-heading {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(270deg, #00f7ff, #575657, #a7b1ab, #dddad0);
    background-size: 800% 800%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradientFlow 8s ease infinite;
    text-align: right;
    line-height: 1.4;
}

/* Gradient animation */
@keyframes textGradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* === Responsive === */
@media (max-width: 768px) {
    #resume_head h1 {
        font-size: 30px;
        text-align: center;
    }

    .resume-content-01,
    .resume-content-02,
    .resume-content-03 {
        text-align: center !important;
    }

    .resume-content-01 i::after,
    .resume-content-02 i::after,
    .resume-content-03 i::after {
        width: 60px;
        height: 60px;
    }
}

/* === Animations === */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes underlineGrow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 90px;
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}







/* career councelling */

#career {
  background: #fff;
  padding: 80px 0;
  color: #222; /* General dark font color */
}

/* ==== Career Image Styling ==== */
.career-img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 35px rgba(104, 105, 105, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.career-img img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(104, 105, 105, 0.15);
}

/* ==== Section Heading ==== */
.career-content-head h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  background: linear-gradient(90deg, #474747, #404140);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: softGlowText 10s ease infinite;
  text-align: right;
}

/* ==== Content Boxes ==== */
.career-content-01,
.career-content-02,
.career-content-03 {
  background: #fefefe;
  border-left: 4px solid #696b6b;
  padding: 30px 25px;
  margin-bottom: 30px;
  border-radius: 10px;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(0, 121, 107, 0.08);
}

.career-content-01:hover,
.career-content-02:hover,
.career-content-03:hover {
  transform: translateY(-8px);
  background: #e0f2f1; /* soft mint-teal */
  box-shadow: 0 0 25px rgba(93, 94, 94, 0.15);
  border-left-color: #484949;
}

/* ==== Headings and Paragraphs ==== */
.career-content-01 h3,
.career-content-02 h3,
.career-content-03 h3 {
  color: #5f5f5f; /* dark teal */
  font-size: 22px;
  font-weight: bold;
}

.career-content-01 p,
.career-content-02 p,
.career-content-03 p {
  color: #333;
  line-height: 1.6;
  font-size: 15px;
}

/* ==== Animation ==== */
@keyframes softGlowText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
  .career-content-head h1 {
      font-size: 28px;
      text-align: center;
  }

  .career-content-01,
  .career-content-02,
  .career-content-03 {
      text-align: center !important;
  }

  .career-img img {
      width: 100%;
      height: auto;
  }
}




/* portfolio */

/* === General Container Alignment Fix === */
#portfolio-building .container {
    padding-top: 40px;
    padding-bottom: 40px;
}

#portfolio-building .row {
    margin-bottom: 30px;
}

/* === Image Styling === */
.portfolio-building-img {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.portfolio-building-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 150, 136, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


#portfolio-building .row {
    align-items: stretch;
}

/* === Heading Styling with Dynamic Gradient Effect === */
.portfolio-building-head h1 {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(90deg, #009688, #00bfa5, #26a69a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s infinite alternate ease-in-out;
    text-align: right;
    margin-bottom: 30px;
}

/* === Text Box Content Styling === */
.portfolio-building-content-01,
.portfolio-building-content-02,
.portfolio-building-content-03 {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    border-radius: 14px;
    margin-bottom: 25px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: right;
}

.portfolio-building-content-01:hover,
.portfolio-building-content-02:hover,
.portfolio-building-content-03:hover {
    background-color: rgba(0, 150, 136, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 150, 136, 0.25);
}

/* === Typography === */
#portfolio-building h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
}

#portfolio-building p {
    color: #ccc;
    line-height: 1.7;
}

/* === Gradient Animation Keyframes === */
@keyframes gradientShift {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 100%;
    }
}

/* === Responsive Fixes === */
@media (max-width: 767px) {
    .portfolio-building-head h1,
    .portfolio-building-content-01,
    .portfolio-building-content-02,
    .portfolio-building-content-03 {
        text-align: center !important;
    }

    .portfolio-building-img {
        margin-bottom: 30px;
    }

    #isotope-container {
      height: auto !important; /* Override inline height for mobile */
    }
    
    #portfolio-wrapper .col-md-3 {
      width: 100%;
      padding: 0 15px;
      margin-bottom: 20px;
      position: relative !important; /* Override absolute positioning */
      left: 0 !important;
      top: 0 !important;
    }
    
    /* Adjust heading for mobile */
    #portfolio .verticle-heading h2 {
      font-size: 28px;
    }
}



/* Ensure all items are stacked vertically */
#portfolio-wrapper .portfolio-item {
  width: 100%;
}

/* linkdin department */


/* === LinkedIn Section Image Styling === */
#linkedIn .row {
    align-items: stretch;
  }
  
  
  .linkedIn {
    height: 100%;
    display: flex;
    align-items: stretch;
  }
  
 
  .linkedIn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 150, 136, 0.2);
    transition: transform 0.4s ease;
  }
  
  /* === Section Heading === */
  .linkedIn-head h1 {
    font-size: 38px;
    font-weight: 700;
    background: linear-gradient(90deg, #00c9b7, #26ffbf);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientScroll 8s ease infinite;
    text-align: right;
    margin-bottom: 40px;
  }
  
  /* === LinkedIn Row Container === */
  .li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  
  /* === Number Circles === */
  .linkedIn-icon-01 h1,
  .linkedIn-icon-02 h1,
  .linkedIn-icon-03 h1 {
    font-size: 28px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #009688;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
    transition: transform 0.3s ease;
    animation: bounceIn 1s ease;
  }
  
  /* === Content Box Styling === */
  .linkedIn-content-01,
  .linkedIn-content-02,
  .linkedIn-content-03 {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 25px;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    right: 0;
  }
  
  /* === Hover Effect: Slide Right === */
  .linkedIn-content-01:hover,
  .linkedIn-content-02:hover,
  .linkedIn-content-03:hover {
    right: -10px;
    background-color: rgba(0, 150, 136, 0.1);
    box-shadow: 0 8px 20px rgba(0, 150, 136, 0.3);
  }
  
  /* === Content Text === */
  .linkedIn-content-01 p,
  .linkedIn-content-02 p,
  .linkedIn-content-03 p {
    color: #ccc;
    font-size: 15.5px;
    line-height: 1.7;
  }
  
  /* === Responsive Fixes === */
  @media (max-width: 767px) {
    .linkedIn-head h1,
    .linkedIn-content-01,
    .linkedIn-content-02,
    .linkedIn-content-03 {
      text-align: center !important;
    }
  
    .li {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .li .col-md-3,
    .li .col-md-9 {
      width: 100%;
      text-align: center;
    }
  
    .linkedIn img {
      margin-bottom: 20px;
    }
  }
  
  /* === Gradient Animation === */
  @keyframes gradientScroll {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  /* === Bounce In Animation === */
  @keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
  }



  /* technical training pyramid */


  #technical-training {
    position: relative;
    padding: 80px 0;
    color: #fff;
    background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.8)),
                url('../img/bg2.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
}

/* Optional fallback for browsers without background-attachment fixed support */
@supports not (background-attachment: fixed) {
    #technical-training {
        background-attachment: scroll;
    }
}

.technical-train {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Heading with subtle neon look */
.technical-train h1 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(90deg, #00f5c4, #76ffd9, #00c2b2);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: softGradient 6s ease-in-out infinite;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(0, 255, 200, 0.3);
}

/* Card Container */
.pyramid {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.04);
    padding: 30px 25px;
    border-radius: 14px;
    width: 90%;
    max-width: 700px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pyramid:hover {
    background-color: rgba(0, 230, 190, 0.07);
    box-shadow: 0 0 25px rgba(0, 255, 220, 0.15);
    border: 1px solid rgba(0, 255, 220, 0.2);
}

/* Triangle Icon */
.triangle {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #00c9b7, #2dfddb);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #101010;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 255, 220, 0.3);
    transition: all 0.3s ease;
}

.pyramid:hover .triangle {
    background: linear-gradient(145deg, #00a896, #38fbd0);
    color: #000;
}

/* Text Content */
.details h2 {
    font-size: 22px;
    color: #00ffe5;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 0 6px rgba(0, 255, 200, 0.15);
}

.details p {
    font-size: 15px;
    color: #e0e0e0;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .technical-train h1 {
        font-size: 28px;
        padding: 0 20px;
    }

    .pyramid {
        width: 95%;
    }
}

/* Soft gradient animation for heading */
@keyframes softGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}



  
/* interview section  */

/* === Interview Section Styling === */
#interview {
    background-color: #000;
    padding: 80px 0;
    color: #fff;
  }
  
  /* === Heading with gradient fade === */
  .interview-prep-head h1 {
    font-size: 38px;
    font-weight: 700;
    background: linear-gradient(90deg, #00f7ff, #baffb2);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: softFade 6s ease infinite;
    text-align: right;
    margin-bottom: 40px;
  }
  
  /* === Icon Styles === */
  .icon {
    width: 60px;
    height: 60px;
    margin: 10px auto;
    background: rgba(0, 150, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 transparent;
    backdrop-filter: blur(4px);
  }
  
  .icon i {
    font-size: 24px;
    color: #00e6c3;
    transition: color 0.3s ease;
  }
  
  /* Hover effect only on row content */
  .row:hover .icon {
    background: rgba(0, 229, 187, 0.15);
    box-shadow: 0 0 15px rgba(0, 229, 187, 0.25);
  }
  
  .row:hover .icon i {
    color: #baffb2;
  }
  
  /* === Content Box Styles === */
  .interview-prep-content-01,
  .interview-prep-content-02,
  .interview-prep-content-03 {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 25px;
    border-radius: 14px;
    margin-bottom: 25px;
    box-shadow: none;
    text-align: right;
    transition: background 0.3s ease, transform 0.3s ease;
    position: relative;
    right: 0;
  }
  
  /* Soft slide effect on hover */
  .row:hover .interview-prep-content-01,
  .row:hover .interview-prep-content-02,
  .row:hover .interview-prep-content-03 {
    background: rgba(0, 150, 136, 0.08);
    transform: translateX(-6px);
  }
  
  /* Content Typography */
  .interview-prep-content-01 h3,
  .interview-prep-content-02 h3,
  .interview-prep-content-03 h3 {
    color: #00e6c3;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .interview-prep-content-01 p,
  .interview-prep-content-02 p,
  .interview-prep-content-03 p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.7;
  }
  
  /* === Image Style === */
  .interview-prep-img img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 150, 136, 0.2);
    transition: transform 0.4s ease;
  }
  
  .interview-prep-img img:hover {
    transform: scale(1.02);
  }
  
  /* === Responsive Fixes === */
  @media (max-width: 767px) {
    .interview-prep-head h1 {
      text-align: center;
      font-size: 28px;
    }
  
    .interview-prep-content-01,
    .interview-prep-content-02,
    .interview-prep-content-03 {
      text-align: center;
    }
  
    .interview-prep-img {
      margin-top: 30px;
    }
  }
  
  /* === Soft Gradient Animation === */
  @keyframes softFade {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
   

  
/* tech mentorship  */

/* ===== Tech Mentorship Section ===== */
#tech-mentorship {
  position: relative;
  padding: 80px 0;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
              url('../img/bg3.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 1;
}

/* Heading */
.tech-mentorship-head h1 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #00e6c3;
}

/* Card Container */
.tech-mentorship-content-01 {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 35px 25px;
  margin: 15px;
  border-radius: 14px;
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid transparent;
}

.tech-mentorship-content-01:hover {
  background-color: rgba(0, 150, 136, 0.1);
  border: 1px solid rgba(0, 150, 136, 0.25);
  transform: translateY(-3px);
}

/* Icon style */
.tech-mentorship-content-01 i {
  font-size: 32px;
  color: #00d2b4;
  margin-bottom: 10px;
  transition: transform 0.4s ease, color 0.3s ease;
}

.tech-mentorship-content-01:hover i {
  transform: scale(0.9);
  color: #00e6c3;
}

/* Counter */
.tech-mentorship-content-01 h3.counter {
  font-size: 36px;
  font-weight: 700;
  color: #00e0c6;
  margin: 10px 0 5px;
}

/* Title */
.tech-mentorship-content-01 p#titl {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

/* Description */
.tech-mentorship-content-01 p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .tech-mentorship-head h1 {
      font-size: 28px;
  }

  .tech-mentorship-content-01 {
      margin-bottom: 30px;
  }
}

  
/* footer section  */

  /* ==== CONTACT SECTION ==== */
  #contact {
    background-color: #000;
    color: #fff;
    padding: 80px 0;
  }
  
  /* Heading styles */
  #contact-left .vertical-heading h5 {
    color: #ffd700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  #contact-left .vertical-heading h2 {
    font-size: 38px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
  }
  
  #contact-left .vertical-heading h2 strong {
    color: #ffd700;
  }
  
  #contact-left p {
    color: #ccc;
    margin: 20px 0;
  }
  
  /* Mail ID */
  #mailid h3 {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  #mailid li {
    list-style: none;
    color: #fff;
    font-size: 15px;
  }
  
  #mailid li i {
    margin-right: 10px;
    color: #ffd700;
  }
  
  /* Social icons */
  .social-list {
    margin-top: 20px;
    padding: 0;
  }
  
  .social-list li {
    display: inline-block;
    margin-right: 15px;
  }
  
  .social-list li a {
    font-size: 18px;
    color: #ccc;
    transition: color 0.3s ease;
  }
  
  .social-list li a:hover {
    color: #ffd700;
  }
  
  /* ==== Contact Right ==== */
  #contact-right form {
    background-color: #111;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.05);
  }
  
  #contact-right h4 {
    font-size: 24px;
    font-weight: bold;
    color: #ffd700;
  }
  
  #contact-right p {
    color: #ccc;
    margin-bottom: 25px;
  }
  
  #contact-right input,
  #contact-right textarea {
    background-color: #000;
    color: #fff;
    border: 1px solid #444;
    border-radius: 6px;
    box-shadow: none;
    transition: border 0.3s ease;
  }
  
  #contact-right input:focus,
  #contact-right textarea:focus {
    border-color: #ffd700;
    outline: none;
  }
  
  #contact-right textarea {
    min-height: 120px;
    resize: vertical;
  }


  #contact-right .form-group {
    margin-bottom: 20px;
  }
  
  /* Optional: Extra spacing between the rows inside the form */
  #contact-right .row {
    margin-bottom: 10px;
  }
  
  /* Adjust spacing around the submit button */
  #submit-btn {
    margin-top: 15px;
  }
  
  /* Add a bit more padding inside inputs & textarea */
  #contact-right input,
  #contact-right textarea {
    padding: 12px 15px;
  }
  
  /* Submit Button */
  #submit-btn .btn-yellow {
    background-color: #ffd700;
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  #submit-btn .btn-yellow:hover {
    background-color: #e6c200;
    color: #000;
  }
  
  /* Success Message */
  #ack-message {
    color: #4caf50;
    font-weight: bold;
    margin-top: 10px;
  }
  
  /* ==== FOOTER ==== */
  footer {
    background-color: #111;
    padding: 30px 0;
    color: #ccc;
    font-size: 14px;
  }
  
  footer p span {
    color: #ffd700;
    font-weight: 600;
  }
  
  /* Back to Top Button */
  #back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #ffd700;
    color: #000;
    border-radius: 50%;
    padding: 10px 14px;
    font-size: 18px;
    z-index: 999;
    transition: all 0.3s ease;
  }
  
  #back-to-top:hover {
    background-color: #e6c200;
    color: #000;
  }

  .img-responsive {
    width: 100%;
  }

  .portfolio-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 aspect ratio (adjust as needed) */
    overflow: hidden;
}

.portfolio-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill container without distortion */
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image-container img {
    transform: scale(1.1);
}
  