
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0bbd41; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --transition-speed: 0.3s;
}
/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #09ae3a; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #34b7a7; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #e9e8e6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

  

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}



@media (max-width: 799px) {
  .bottom-wave-container{
    display: none;
  }
  .wave-container{
    display: none;
  }
  .shape{
    display: none;
  }
}


/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 0px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  /*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}







.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.page-title h1 {
  font-size: 24px;
  font-weight: 400;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .service-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.services .service-item.item-cyan i {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover .icon i {
  color: #fff;
}

.services .service-item.item-cyan:hover .icon path {
  fill: #0dcaf0;
}

.services .service-item.item-orange i {
  color: #fd7e14;
}

.services .service-item.item-orange:hover .icon i {
  color: #fff;
}

.services .service-item.item-orange:hover .icon path {
  fill: #fd7e14;
}

.services .service-item.item-teal i {
  color: #20c997;
}

.services .service-item.item-teal:hover .icon i {
  color: #fff;
}

.services .service-item.item-teal:hover .icon path {
  fill: #20c997;
}

.services .service-item.item-red i {
  color: #df1529;
}

.services .service-item.item-red:hover .icon i {
  color: #fff;
}

.services .service-item.item-red:hover .icon path {
  fill: #df1529;
}

.services .service-item.item-indigo i {
  color: #6610f2;
}

.services .service-item.item-indigo:hover .icon i {
  color: #fff;
}

.services .service-item.item-indigo:hover .icon path {
  fill: #6610f2;
}

.services .service-item.item-pink i {
  color: #f3268c;
}

.services .service-item.item-pink:hover .icon i {
  color: #fff;
}

.services .service-item.item-pink:hover .icon path {
  fill: #f3268c;
}


/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}




























:root {
  --primary-color: #2c3e50;
  --accent-color: #3498db;
  --accent-color-light: #75b9e7;
  --accent-color-dark: #2980b9;
  --hover-color: #2980b9;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --transition: all 0.3s ease;
  --text-gradient: linear-gradient(45deg, #3498db, #1abc9c);
  --bg-gradient: linear-gradient(135deg, #3498db, #8e44ad);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Base styling */
body {
  font-family: 'Poppins', sans-serif;
  color: #444;
  overflow-x: hidden;
  background-color: #fff;
}

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

a:hover {
  color: var(--hover-color);
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.highlight {
  color: var(--accent-color);
  position: relative;
  display: inline-block;
  font-size: 110%;
}

.highlight::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -3px;
  left: 0;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.highlight:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: var(--primary-color);
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

.section-title:hover h2::after {
  width: 100px;
}

.section-title p {
  font-size: 18px;
  margin-top: 20px;
  color: #777;
}

.bg-light-alt {
  background-color: #f8fafc;
}

/* Modern Navbar Styling - Enhanced */
.header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sitename {

  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 2.2rem;
 
  position: relative;
  margin: 0;
  padding: 0;
  transition: var(--transition);
  
  background: linear-gradient(
    to right,
    #0080ff 20%,
    #00affa 30%,
    #0190cd 70%,
    #1d90dd 80%,
    #3498db 90%,
     #1abc9c 100%
);
background-size: 500% auto;
  animation: textShine 5s ease-in-out infinite alternate;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

 }

@keyframes textShine {
0% {
    background-position: 0% 50%;
}
100% {
    background-position: 100% 50%;
}
}



.navmenu ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.navmenu li {
  position: relative;
  padding: 10px 0;
  margin: 0 15px;
}

.navmenu a {
  display: block;
  position: relative;
  color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.navmenu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.navmenu a:hover,
.navmenu .active {
  color: var(--accent-color);
}

.navmenu a:hover::after,
.navmenu .active::after {
  width: 100%;
}

.header-social-links a {
  color: var(--primary-color);
  margin-left: 15px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.header-social-links a:hover {
  color: var(--accent-color);
  transform: translateY(-3px) scale(1.1);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 650px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e0e3e7 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(52, 152, 219, 0.05) 0%, rgba(52, 152, 219, 0) 70%),
              radial-gradient(circle at 70% 70%, rgba(26, 188, 156, 0.05) 0%, rgba(26, 188, 156, 0) 70%);
  pointer-events: none;
}

.hero-container {
  width: 100%;
  padding: 0 15px;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.hero-content {
  width: 50%;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.typed-container {
  height: 80px;
  margin-bottom: 30px;
}

.typed-text {
  font-size: 28px;
  color: var(--accent-color);
  font-weight: 500;
}

.cursor {
  display: inline-block;
  width: 3px;
  background-color: var(--accent-color);
  margin-left: 5px;
  animation: cursor-blink 1s infinite;
}

@keyframes cursor-blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.hero-cta {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.btn-projects, .btn-contact {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

 @media (max-width: 480px) {
.btn-projects, .btn-contact {
 
     padding: 8px 15px; 
    font-size: 0.85rem; 
    min-width: 0; 
    font-weight: 400;

}
 }

.btn-projects {
  background: var(--bg-gradient);
  color: white;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.btn-contact {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-projects:hover, .btn-contact:hover {
  transform: translateY(-5px);
}


.btn-contact:hover {
  background: var(--primary-color);
  color: white;
}






.btn-projects::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--hover-color);
  transition: var(--transition);
  z-index: -1;
}
.btn-projects:hover:hover::before {
  left: 0;
}

.btn-projects:hover {
  /*background: #00affa; */
  box-shadow: 0 8px 25px rgba(67, 180, 255, 0.5);
  color: rgb(255, 255, 255);
}





.hero-image {
  width: 45%;
  transform: translateY(-30px);
  position: relative;
}

.hero-image img {
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-strong);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.hero-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--bg-gradient);
  border-radius: 20px;
  top: 20px;
  left: 20px;
  z-index: 1;
  opacity: 0.7;
  filter: blur(5px);
  transition: all 0.5s ease;
}

.hero-image:hover .hero-shape {
  top: 30px;
  left: 30px;
  filter: blur(10px);
}

.hero-wave {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

/* About Section */
.about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s ease;
}

.about-img:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.about-img img {
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  right: 30px;
  bottom: 30px;
  background: var(--bg-gradient);
  color: white;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-strong);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
  }
}

.experience-badge .years {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
}

.about h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.skills-container {
  margin-top: 30px;
}

.skill-item {
  margin-bottom: 20px;
}

.skill-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.progress {
  height: 10px;
  border-radius: 10px;
  background-color: #f0f0f0;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  background: var(--bg-gradient);
  border-radius: 10px;
  height: 100%;
  width: 0;
  transition: width 1.5s ease;
  position: relative;
}

.btn-learn-more {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  background: var(--primary-color);
  color: white;
  font-weight: 500;
  margin-top: 30px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-learn-more:hover {
  background: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  color: white;
}

/* Portfolio Section */
.portfolio {
  background: white;
}

.portfolio-slider {
  padding-bottom: 60px;
}

.portfolio-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  margin: 10px;
  background: white;
  
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.portfolio-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
  max-height: 230px;
  overflow: hidden;
}

.portfolio-img img {
  transition: transform 0.8s ease;
  width: 100%;
}

.portfolio-card:hover .portfolio-img img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-info {
  text-align: center;
  padding: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease 0.2s;
}

.portfolio-card:hover .portfolio-info {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-info h4 {
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
}

.portfolio-info p {
  color: rgb(182, 231, 255);
  font-size: 16px;
  margin-bottom: 20px;
}

.portfolio-details-btn {
  display: inline-block;
  padding: 10px 25px;
  background: var(--bg-gradient);
  color: white;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details-btn:hover {
  background: white;
  color: var(--accent-color);
  transform: translateY(-3px);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--accent-color-light);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent-color);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--accent-color);
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

/* Testimonials Section */
.testimonials-slider {
  padding-bottom: 50px;
}

.testimonial-item {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  margin: 20px 10px;
  position: relative;
  overflow: hidden;
}

.testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.testimonial-item::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 150px;
  font-family: "Georgia", serif;
  color: rgba(52, 152, 219, 0.1);
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 0;
  line-height: 1.6;
  color: #555;
}

.quote-icon-left,
.quote-icon-right {
  color: var(--accent-color);
  font-size: 18px;
  margin: 0 5px;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  
 

}

.testimonial-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
  text-align: center;
}

.testimonial-item h4 {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
  text-align: center;
}

.stars {
  text-align: center;
  color: #f1c40f;
}

/* Contact CTA Section */
.contact-cta {

  border-radius: 10%;
  box-shadow:0px 7px 5px 0px rgb(222, 222, 222) ;
  margin-bottom:50px;

   position: relative;
}

.cta-container {
  padding: 60px 30px;
  text-align: center;
  color: rgb(0, 0, 0);
  position: relative;
  max-height: 300px;
  z-index: 2;
}

.cta-content h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
 
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  padding: 15px 35px;
  background: var(--bg-gradient);
  color: white;
  border-radius: 50px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.cta-btn:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-5px);
  box-shadow: 5px 5px 5px 2px rgba(143, 143, 143, 0.5);
}





/* Scroll Top Button */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--bg-gradient);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.scroll-top i {
  font-size: 24px;
  color: white;
  line-height: 0;
}

.scroll-top:hover {
  background: var(--hover-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-10px);}
  60% {transform: translateY(-5px);}
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader:before {
  content: "";
  width: 60px;
  height: 60px;
  border: 6px solid var(--light-color);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 50px;
  }
  
  .hero-content, .hero-image {
    width: 100%;
  }
  
  .hero-content {
    margin-bottom: 50px;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .section {
    padding: 70px 0;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 100px 0;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .typed-text {
    font-size: 22px;
  }
  
  .typed-container {
    height: 60px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .about h3 {
    font-size: 24px;
  }
  
  .cta-content h3 {
    font-size: 28px;
  }
}

/* Animation Classes */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animate__fadeInDown {
  animation-name: fadeInDown;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

.animate__zoomIn {
  animation-name: zoomIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}




















.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2,.section-title h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

#highlightsec{
  font-size: 1.7rem;
}






.footer {
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
 background: linear-gradient(to right, #2c3e50, #1a252f);
 color: white;
 padding: 80px 0 40px;
 position: relative;
overflow: hidden;
 font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 margin-top: 100px; /* Add margin to see the wave effect */
}

/* Animated SVG Wave at the top */
.wave-container {
 position: absolute;
 top: -10px;
 left: 0;
 width: 100%;
overflow: hidden;
 line-height: 0;
 transform: rotate(180deg);
}

.waves {
 position: relative;
 width: 100%;
 height: 100px;
 margin-bottom: -7px;
 
 min-height: 100px;
 max-height: 150px;
}

.parallax > use {
 animation: wave-move 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
 animation-delay: -2s;
 animation-duration: 7s;
}

.parallax > use:nth-child(2) {
 animation-delay: -3s;
 animation-duration: 10s;
}

.parallax > use:nth-child(3) {
 animation-delay: -4s;
 animation-duration: 13s;
}

.parallax > use:nth-child(4) {
 animation-delay: -5s;
 animation-duration: 20s;
}

/* Bottom SVG Wave */
.bottom-wave-container {
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 overflow: hidden;
 line-height: 0;
}

.bottom-waves {
 position: relative;
 width: 100%;
 height: 50px;
 margin-bottom: -7px;
 min-height: 50px;
 max-height: 80px;
}

/* Glowing Top Border Animation - Removed since we now have the wave */
.footer::before {
 content: none;
}

/* Background Floating Shapes */
.shape {
 position: absolute;
 border-radius: 50%;
 background: rgba(255, 255, 255, 0.03);
 backdrop-filter: blur(5px);
 animation: float 15s infinite linear;

}

.shape:hover{
   
   background: rgba(0, 251, 255, 0.3);

   box-shadow: 0px 0px 5px 5px #00d9ff ;
}

.shape-1 {
 width: 150px;
 height: 150px;
 top: 15%;
 left: 10%;
 animation-delay: 0s;
 animation-duration: 18s;
 border: 1px solid rgba(52, 152, 219, 0.2);
 
}

.shape-2 {
 width: 80px;
 height: 80px;
 bottom: 20px;
 right: 15%;
 animation-delay: 2s;
 animation-duration: 15s;
 border: 1px solid rgba(46, 204, 113, 0.2);
 z-index: 2;
}

.shape-3 {
 width: 200px;
 height: 200px;
 bottom: -100px;
 left: 5%;
 animation-delay: 1s;
 animation-duration: 22s;
 border: 1px solid rgba(52, 152, 219, 0.15);
 z-index: 2;
}

.shape-4 {
 width: 50px;
 height: 50px;
 top: 40%;
 right: 8%;
 animation-delay: 3s;
 animation-duration: 12s;
 border: 1px solid rgba(46, 204, 113, 0.15);
 z-index: 2;
}

.footer .container {
 width: 90%;
 max-width: 1200px;
 margin: 0 auto;
 position: relative;
 z-index: 1;
}

.footer-content {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 30px;
}

.copyright {
 margin-bottom: 10px;
 position: relative;

}

.copyright p {
 color: rgba(255, 255, 255, 0.8);
 font-size: 15px;
 margin: 0;

}

.sitenamef {
 font-weight: 700;
 background: linear-gradient(90deg, #3498db, #2ecc71);
 background-size: 200% auto;
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 animation: textGradient 5s ease infinite;
 padding: 0 5px;
}

.connect-text {
 text-align: center;
 margin-bottom: 15px;
 font-size: 18px;
 font-weight: 300;
 letter-spacing: 1px;
 color: rgba(255, 255, 255, 0.9);
 text-transform: uppercase;
 position: relative;
}

.connect-text::after {
 content: '';
 display: block;
 width: 50px;
 height: 2px;
 background: linear-gradient(90deg, #3498db, #2ecc71);
 margin: 10px auto 0;
 border-radius: 2px;
}

.social-linksf {
 display: flex;
 justify-content: center;
 gap: 15px;
 margin-bottom: 20px;
}

.social-btnf {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 45px;
 height: 45px;
 border-radius: 50%;
 font-size: 18px;
 color: white;
 background: rgba(255, 255, 255, 0.1);
 transition: all 0.3s ease;
 position: relative;
 overflow: hidden;
 border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btnf::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, #3498db, #2ecc71);
 opacity: 0;
 transition: all 0.3s ease;
 z-index: -1;
}

.social-btnf:hover {
 transform: translateY(-8px);
 color: white;
 box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.social-btnf:hover::before {
 opacity: 1;
}

.social-btnf:hover .tooltipf {
 visibility: visible;
 opacity: 1;
 transform: translateY(0);
}

.tooltipf{
 position: absolute;
 bottom: -35px;
 background: rgba(52, 152, 219, 0.9);
 color: white;
 padding: 5px 10px;
 border-radius: 4px;
 font-size: 12px;
 visibility: hidden;
 opacity: 0;
 transform: translateY(10px);
 transition: all 0.3s ease;
}

.tooltipf::before {
 content: '';
 position: absolute;
 top: -5px;
 left: 50%;
 transform: translateX(-50%);
 border-width: 0 5px 5px 5px;
 border-style: solid;
 border-color: transparent transparent rgba(52, 152, 219, 0.9) transparent;
}

.footer-nav {
 margin-top: 10px;
}

.footer-nav ul {
 display: flex;
 justify-content: center;
 gap: 20px;
 padding: 0;
 margin: 0;
 list-style: none;
}

.footer-link {
 color: rgba(255, 255, 255, 0.7);
 text-decoration: none;
 font-size: 14px;
 transition: all 0.3s ease;
 position: relative;
 padding: 5px 0;
}

.footer-link::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 2px;
 background: linear-gradient(90deg, #3498db, #2ecc71);
 transition: all 0.3s ease;
}

.footer-link:hover {
 color: white;
}

.footer-link:hover::after {
 width: 100%;
}

.footer-bottom {
 margin-top: 40px;
 text-align: center;
 padding-top: 20px;
 border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
 color: rgba(255, 255, 255, 0.6);
 font-size: 14px;
 margin: 0;
}

.pulse {
 color: #e74c3c;
 animation: pulse 1.5s infinite;
 margin: 0 5px;
}

/* Animations */
@keyframes gradient {
 0% {background-position: 0% 50%}
 50% {background-position: 100% 50%}
 100% {background-position: 0% 50%}
}

@keyframes textGradient {
 0% {background-position: 0% 50%}
 50% {background-position: 100% 50%}
 100% {background-position: 0% 50%}
}

@keyframes float {
 0% {
   transform: translateY(0) rotate(0deg);
 }
 50% {
   transform: translateY(-40px) rotate(180deg);
 }
 100% {
   transform: translateY(0) rotate(360deg);
 }
}

@keyframes pulse {
 0% {transform: scale(1);}
 50% {transform: scale(1.2);}
 100% {transform: scale(1);}
}

@keyframes wave-move {
 0% {
   transform: translate3d(-90px, 0, 0);
 }
 100% {
   transform: translate3d(85px, 0, 0);
 }
}

/* Responsive Styles */
@media (min-width: 768px) {
 .footer-content {
   flex-direction: row;
   justify-content: space-between;
   align-items: flex-start;
 }
 
 .copyright, .social-links-container, .footer-nav {
   flex: 1;
 }
 
 .copyright {
   text-align: left;
 }
 
 .footer-nav ul {
   justify-content: flex-end;
 }
}

/* Additional animations for better interactivity */
.d-flex {
 display: flex;
}

.justify-content-center {
 justify-content: center;
}

.px-1 {
 padding-left: 0.25rem;
 padding-right: 0.25rem;
}

.text-center {
 text-align: center;
}









