:root {
  --primary: #149374;      /* deep emerald / teal green */
  --secondary: #6c757d;
  --success: #198754;
  --dark: #121212;
  --darker: #0a0a0a;
  --light: #f8f9fa;
  --text: #e9ecef;

  /* For rgba use, let’s also expose the RGB of primary */
  --primary-rgb: 20, 147, 116;
  --background-color: #121212;
    --surface-color: #1e1e1e;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --border-color: #333333;
    --hover-color: #2a2a2a;
}

.text-primary{
    color:#20cfa3 !important;
}

.bg-primary{
    background-color: var(--primary) !important;
}
body {
  background-color: var(--darker);
  color: var(--text);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.navbar {
  background-color: rgba(18, 18, 18, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.rounded-circle1{
    background: linear-gradient(
  135deg,
  #0f3b36 0%,
  #0f3b36 50%,
  #149374 100%
)
 !important;
 border:1px solid grey !important;
}

.rounded-circle2{
    background-color: white !important;
    opacity: 0.7 !important;
}
.hero-section {
  min-height: 100vh;
  background: linear-gradient(
  135deg,
  #131a20 0%,
  #0f3b36 50%,
  #149374 100%
);

  display: flex;
  align-items: center;
  padding-top: 80px;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  font-weight: 700;
}
.btn{
    transition:all 0.3s ease !important;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.skill-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(var(--primary-rgb), 0.3);
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(var(--primary-rgb), 0.3);
}

.project-img {
  height: 200px;
  background: linear-gradient(45deg, #149374, #6f42c1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.87rem;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
}




.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.contact-form .form-control {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s;
    color: var(--text-primary);
}

.contact-form .form-control::placeholder {
    color: var(--text-secondary);
}

.contact-form .form-control:focus {
    background-color: var(--surface-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(100, 181, 246, 0.25);
    color: var(--text-primary);
}

.contact-form .form-label {
    color: var(--text-primary);
    font-weight: 500;
}

.contact-form .btn-primary {
    background-color: var(--primary);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    color: #121212;
}

.contact-form .btn-primary:hover {
    background-color: var(--primary);
    opacity:0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 147, 116, 0.3);
}

.contact-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
    border: 1px solid var(--border-color);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    background-color: rgba(100, 181, 246, 0.1);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    border: 1px solid rgba(100, 181, 246, 0.2);
}

.contact-text h4 {
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-text p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    background-color: var(--surface-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.action-btn i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.btn-email {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: #e8eaf6;
    border: 1px solid #3949ab;
}

.btn-email:hover {
    background: linear-gradient(135deg, #283593, #303f9f);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(57, 73, 171, 0.3);
}

.btn-call {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    color: #e8f5e8;
    border: 1px solid #388e3c;
}

.btn-call:hover {
    background: linear-gradient(135deg, #2e7d32, #388e3c);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 142, 60, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #075e54, #128c7e);
    color: white;
    border: 1px solid #25d366;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}


.btn-primary {
  background: var(--primary);
  border: none;
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  color: white;
}

.btn-primary:hover {
  /* Darken the primary a bit for hover */
  background: rgb(
    calc(20 * 0.9),
    calc(147 * 0.9),
    calc(116 * 0.9)
  );
}

.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links1 a{
    background: rgba(255, 255, 255, 0.2);
}
.social-links1{
    margin-left: auto !important;
}
.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
  transition: all 0.3s ease;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.4);
}

.progress {
  background: rgba(255, 255, 255, 0.1);
  height: 8px;
  border-radius: 4px;
}

.progress-bar {
  background: var(--primary);
  border-radius: 4px;
}

.typewriter {
  overflow: hidden;
  border-right: 2px solid var(--primary);
  white-space: nowrap;
  margin: 0 auto;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--primary) }
}

.nav-link1{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
     background: linear-gradient(
  135deg,
  #039175 0%,
  #049987 50%,
  #149374 100%
);
margin: 0px 8px;
}
.nav-link1 i{
    color:white !important;
}
.gradient-text {
  background: linear-gradient(90deg, #14dfac, #14b48c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html{
    scroll-padding-top: 30px;
}

@media screen and (max-width:768px) {
    .hero-section{
        padding-top:100px ! important;
    }


.contact-icon1{
    width:68px !important;
}
    .rounded-circle1{
        max-width:270px;
        max-height: 270px;
    }
    .rounded-circle2{
        max-width:300px;
        max-height: 300px;
    }
    
}
