/* Base Dark Theme */
:root {
--dark-primary: #0A0A1F;
--section-1: #1A1A2F;
--section-2: #151528;
--section-3: #12121E;
--accent-pink: #FF2E63;
--accent-blue: #08D9D6;
--text-light: #FFFFFF;
--glass-effect: rgba(255, 255, 255, 0.05);
}

/* Reset all potential overflow causes */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}
/* Root level containment */
:root {
    overflow-x: hidden;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
  position: relative;
  zoom: normal !important;
  -moz-transform: none !important;
  transform: none !important;
  background: var(--dark-primary);
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

/* Force all sections to viewport width */
.hero-section,
.about-section,
.services-section,
.portfolio-section,
.contact-section,
.footer {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* Control fluid containers */
.container {
  width: min(100% - 30px, 1140px);
  margin-inline: auto;
}

/* Ensure images stay contained */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Control row overflow */
.row {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Force columns to wrap */
[class*="col-"] {
  width: 100%;
  padding: 0 15px;
}

/* Responsive text scaling */
h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
}

/* Fix map container overflow */
.map-container {
    width: 100%;
    max-width: 100%;
}

.map-container iframe {
    width: 100%;
    max-width: 100%;
}
h2 {
font-size: clamp(1.5rem, 4vw, 2.5rem);
}

p {
font-size: clamp(1rem, 2vw, 1.2rem);
}

/* Fluid sections */
section {
width: 100vw;
padding: 40px 0;
}

/* Responsive grid adjustments */
.portfolio-container {
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
padding: 20px;
}

/* Project cards containment */
.project-card {
width: 100%;
min-width: unset;
}

/* Timeline responsiveness */
@media (max-width: 768px) {
.timeline {
    grid-template-columns: 1fr;
    padding: 15px;
}
}
/* Navigation */
.navbar {
  background: rgba(10, 10, 31, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

/* Navigation Menu Styles */
.nav-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(#AEC5FE);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Custom purple-pink gradient button */
  .btn-gradient {
    background-image: linear-gradient(45deg, #9b30ff, #ff69b4); /* Purple to Pink Gradient */
    border: none; /* Remove default border */
    color: white; /* Text color white */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add shadow */
    transition: background-image 0.3s, box-shadow 0.3s; /* Smooth transition on hover */
  }

  /* Hover Effect */
  .btn-gradient:hover {
    background-image: linear-gradient(45deg, #8a2be2, #ff1493); /* Darker gradient on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
  }
.btn{
--bs-btn-color: #fff;
  --bs-btn-bg: #7a527f important;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}
.vertical-nav {
  position: fixed;
  right: -300px;
  top: 0;
  width: 300px;
  height: 100vh;
  background: #74548f;
  transition: 0.3s ease;
  z-index: 1000;
}

.vertical-nav.active {
  right: 0;
}

.nav-links {
  padding: 80px 0 0;
  list-style: none;
}

.nav-links li {
  padding: 15px 30px;
}

.nav-links a {
  color: var(--text-light);
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var();



:root {
  --dark-grey: #1E1E1E;
  --light-section: #F5F5F7;
  --white: #FFFFFF;
  --accent-pink: #FF2E63;
  --accent-blue: #08D9D6;

}

body {
  background: var(--dark-grey);
  color: var(--white);
}
/* Light Sections */
.services-section {
    background: var(--light-section);
    color: var(--dark-grey);
}

.portfolio-section {
    background: var(--light-section);
    color: var(--dark-grey);
}


/* Dark Sections Unified Theme */
.hero-section,
.about-section,
.timeline,
.blog-section,
.footer-section {
    background: var(--dark-grey);
    color: var(--white);
}





/* Text Styling for Dark Sections */
.about-text,
.timeline__title,
.blog-post h2,
.footer-section p {
    color: var(--white);
}





/* Accent Elements */
.timeline__point {
    background: var(--accent-pink);
    box-shadow: 0 0 15px var(--accent-pink);
}




/* Interactive Elements */
.timeline__date {
    color: var(--accent-blue);
}





/* Section Transitions */
section {
    padding: 60px 0;
    position: relative;
}




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

/* Adjusting component colors for light sections */
.light-section .service-item,
.light-section .project-card {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
#home 
{
  padding-top:none;
}
.hero-section h1 {
    color: var(--white);
    text-shadow: 0 0 10px var(--accent-blue);
}

/* Cards with Glass Morphism */
.service-item, .project-card {
    background: var(--glass-effect);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 46, 99, 0.1);
    border-radius: 15px;
}

.services-slider {
  display: flex;
  overflow: hidden; /* Hide overflowing items */
  position: relative;
  width: 100%;
}

.service-item {
  flex: 0 0 100%; /* Each item takes full width */
  transition: transform 0.5s ease; /* Smooth transition */
}

/* Responsive Styles */
@media (min-width: 768px) {
  .service-item {
      flex: 0 0 50%; /* Two items per row on tablets */
  }
}

@media (min-width: 1024px) {
  .service-item {
      flex: 0 0 33.33%; /* Three items per row on larger screens */
  }
}

@media (min-width: 1200px) {
  .service-item {
      flex: 0 0 25%; /* Four items per row on extra-large screens */
  }
}


/* Interactive Elements */
.btn-primary {
  
    border: none;
    box-shadow: 0 0 15px rgba(255, 46, 99, 0.3);
    transition: all 0.3s ease;
}


/* Portfolio Grid Enhancement */
.portfolio-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

h2 {color: var(--text-light)}

/* Modern Hover Effects */
.service-item:hover {
    border-color: var(--accent-pink);
    box-shadow: 0 0 30px rgba(255, 46, 99, 0.1);
}


/* Contact Form Modernization */
.contact-form input, .contact-form textarea {
    background: var(--section-3);
    border: 1px solid var(--accent-blue);
    color: var(--text-light);
}
  font-size: 3.5rem;
  line-height: 1.2;
}

.hero-section h1 span {
color: var(--primary-color);
text-shadow: 2px 2px 4px rgba(0, 255, 255, 0.2);
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
}

.pricing-card {
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background-image: linear-gradient(135deg, #3a517e, #d14fd4); /* Gradient from blue to purple */
}


.pricing-card:hover {
  transform: translateY(-10px);
  /* Optionally add a different gradient on hover for effect */
  background-image:linear-gradient(135deg, #3a517e, #d14fd4); /* Gradient from blue to purple */
}

.price {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin: 20px 0;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  overflow: hidden;
}
.services-slider {
  display: flex;
  gap: 30px;
  padding: 20px 0;
  perspective: 1000px;
}

.service-item {
  min-width: 300px;
  padding: 25px;
  background: var(--blue);
  border-radius: 10px;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
 

.service-item:hover {
  transform: rotateY(360deg);
   background-image: linear-gradient(135deg, #3a517e, #d14fd4);
}

.service-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  backface-visibility: hidden;
}

/* Add depth to the cube effect */
.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--deep-blue);
  transform: translateZ(-100px);
  opacity: 0.1;
}

@keyframes slideServices {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}

/* Pause animation on hover */
.services-slider:hover {
  animation-play-state: paused;
}
/* Contact Form */.contact-section {
  padding: 80px 0;
}

.contact-form {
  background: lightgrey important;
  color: var(--soft-white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: none;
}

/* Hero section with refined teal gradient */
.hero-section {
  background: linear-gradient(135deg, #004d73, #9a5698);
  color: var(--background);
  padding:  0;
  max-width: -moz-available;
  margin: 0 auto;
}

.hero-section h1, .hero-section p {
  color: var(--background);
}

.hero-section span.text-primary {
  color: var(--accent) !important;
}

.hero-section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* About section with sophisticated teal overlay */
.about-section {
--bs-bg-opacity: 1;

}
.custom-bg {
background: linear-gradient(135deg, #004d73, #9a5698);
}


.about-section h2 {
  color: var(--accent);
}

.about-text {
  color: var(--background);
}
.bg-light {
background-color:rgb(138 23 117) !important; 
}

.contact-form {
background: rgba(183, 184, 187, 0.19);
border: 1px solid var(--accent-gold);
}

/* Enhanced typing animation */
.wrapper {
overflow: hidden;
background: linear-gradient(90deg, #835380, #2b507e);
padding: 25px 0;
margin: 20px 0;
box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.scrolling-text {
display: inline-block;
white-space: nowrap;
animation: scroll-left 15s linear infinite;
color: #ffffff;
font-size: 2.5rem;
font-weight: 600;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes scroll-left {
0% {
    transform: translateX(100%);
}
100% {
    transform: translateX(-100%);
}
}

/* Adding hover effect for extra flair */
.wrapper:hover .scrolling-text {
animation-play-state: paused;
}

.form-control {
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ddd;
}

.form-control:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 0.2rem rgba(0, 255, 255, 0.25);
}

/* Map Container */
.map-container {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

/* Footer */
.footer {
  background: var(--dark);
  color: blueviolet;
  padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .pricing-card {
    margin-bottom: 30px;
  }

  .contact-form {
    margin-bottom: 40px;
  }
}

/* Accordion Styles */
.accordion-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-button {
  background-color: white;
  padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: white;
}

.accordion-body {
  padding: 2rem;
  background-color: white;
}

/* Button styling */
.btn-primary {
background: var(--gradient);
border: none;
transition: transform 0.3s ease;
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

/* Timeline enhancements */
.timeline__point {
background: var(--primary-color);
box-shadow: 0 0 10px var(--primary-color);
}


.project-card {
min-width: 400px;
background-image: linear-gradient(135deg, #3a517e, #d14fd4);
border-radius: 15px;
overflow: hidden;
margin: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
border: 1px solid var(--accent-gold);
}

.project-image {
width: 100%;
height: 250px;
overflow: hidden;
}

.project-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

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

.project-details {
padding: 20px;
}

.project-details h3 {
color: var(--accent-gold);
margin-bottom: 10px;
}

.project-description {
color: var(--soft-white);
margin-bottom: 15px;
}

.client-info {
display: flex;
justify-content: space-between;
margin-bottom: 15px;
color: var(--accent-gold);
font-size: 0.9rem;
}

.project-tags span {
display: inline-block;
padding: 5px 10px;
margin: 5px;
background: var(--accent-gold);
color: var(--deep-blue);
border-radius: 20px;
font-size: 0.8rem;
}

.view-project {
display: inline-block;
margin-top: 15px;
padding: 8px 20px;
background: var(--accent-gold);
color: var(--deep-blue);
text-decoration: none;
border-radius: 5px;
transition: transform 0.3s ease;
}

.view-project:hover {
transform: translateY(-2px);
}

.container {
max-width: 1140px;
width: 90%;
margin: 0 auto;
}
.portfolio-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    min-width: unset;
    margin: 0;
}

.text-center {

    align-items: center;
}

.text-center img {
    margin: 0 auto;
    display: block;
}
/* Base mobile-first styles */
body {
  zoom: 1;
  -moz-transform: none;
  overflow-x: hidden;
  width: 100%;
}

.container {
  width: 95%;
  padding: 0 15px;
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
  .portfolio-container {
      grid-template-columns: repeat(2, 1fr);
  }
    
  .timeline {
      grid-template-columns: 1fr 3px 1fr;
  }
}

/* Laptop (1024px and up) */
@media (min-width: 1024px) {
  .portfolio-container {
      grid-template-columns: repeat(3, 1fr);
  }
    
  body {
      zoom: 1.1;
      -moz-transform: scale(1.1);
  }
}

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
  .container {
      max-width: 1140px;
      margin: 0 auto;
  }
}

/* Handle smaller mobile devices */
@media (max-width: 576px) {
  .hero-section h1 {
      font-size: 2rem;
  }
    
  .project-card {
      min-width: auto;
  }
    
  .services-slider .service-item {
      min-width: 250px;
  }
    
  .footer {
      padding: 50px 5%;
  }
}

/* Fix horizontal scrolling issues */
.row {
  margin-left: 0;
  margin-right: 0;
}

/* Make images responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Chat widget styling */
.chat-widget {
position: fixed;
bottom: 100px;
right: 40px;
width: 300px;
height: 400px;
background:linear-gradient(135deg, #004d73, #9a5698);
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0,0,0,0.2);
display: flex;
flex-direction: column;
transform: translateX(120%);
transition: transform 0.3s ease;
z-index: 1000;
}

.chat-widget.active {
transform: translateX(0);
}

.chat-header {
padding: 15px;
background: var(--accent-gold);
color: var(--deep-blue);
border-radius: 15px 15px 0 0;
}

.chat-messages {
flex: 1;
padding: 15px;
overflow-y: auto;
}

.chat-input {
padding: 15px;
display: flex;
gap: 10px;
}

.message {
margin: 10px 0;
padding: 10px;
border-radius: 10px;
max-width: 80%;
}

.user-message {
background: var(--accent-gold);
color: var(--deep-blue);
margin-left: auto;
}

.bot-message {
background: rgba(255,255,255,0.1);
color: var(--soft-white);
}

.chat-toggle {
position: fixed;
bottom: 40px;
right: 40px;
width: 60px;
height: 60px;
border-radius: 50%;
background: var(--accent-gold);
color: var(--deep-blue);
border: none;
font-size: 24px;
cursor: pointer;
z-index: 1000;
transition: transform 0.3s ease;
}

.chat-toggle:hover {
transform: scale(1.1);
}

.timeline {
margin: 0 auto;
max-width: 750px;
padding: 25px;
display: grid;
grid-template-columns: 1fr 3px 1fr;
font-family: "Fira Sans", sans-serif;
  color: var(--text-light);


}

.timeline__component {
margin: 0 20px 20px 20px;
}

.timeline__component--bg {
padding: 1.5em;
background: rgba(255, 255, 255, 0.2);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 10px;
}

/* LEAVE TILL LAST */
.timeline__component--bottom {
margin-bottom: 0;
}

.timeline__middle {
position: relative;
background: #803897;
}

.timeline__point {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 15px;
height: 15px;
background: #803897;
border-radius: 50%;

}

/* LEAVE TILL LAST */
.timeline__point--bottom {
top: initial;
bottom: 0;
}

.timeline__date--right {
text-align: right;
}

.timeline__title {
margin: 0;
font-size: 1.15em;
font-weight: bold;
  color: var(--text-light);
}

.timeline__paragraph {
  line-height: 1.5;
  color: var(--text-light);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Loading states */
.btn-primary.loading {
  position: relative;
  pointer-events: none;
  background: var(--neutral);
}

.btn-primary.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--white);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Breadcrumb styling */
.breadcrumb {
  padding: 15px 0;
  background: transparent;
}

.breadcrumb-item {
  color: var(--deep-blue);
}

/* Micro-interactions */
.service-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Parallax effect */
.hero-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Section transitions */
.section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}
/* blog section */
.carousel{
  height: 100vh;
  perspective: 250px;
}
.carousel .carousel-item{
  width: 450px;
}
.card {
position: relative;
margin: .5rem 0 1rem 0;
background-color: #fff;
width: 450px;
height: 379px;
color: black;
border-radius: 100px;
box-shadow: 0 8px 20px 0px rgba(0,0,0,0.2);
}
.img-area img {
border-radius: 50%;
border: 7px solid #fff;
margin-top: -80px;
}

.box1 {
background: black;
height: 120px;
border-radius: 25px 25px 0 0;
}
.img-area {
text-align: center;
}
.img-area img {
width: 30%;
}
.main-text {
padding: 8px 0;
text-align: center;
}
.main-text h2 {
font-weight: 900;
font-size: 20px;
margin: 0 0 20px;

}

.main-text p{
font-size: 16px;
padding: 0 35px;
}
.social-icon {
  display: flex;
  gap: 15px; /* Space between icons */
}

/*footer*/
.footer{
  margin-top:150px;
  width:100%;
  padding:100px 15%;
  background:#717171;
  color:#efefef;
  display:flex;
}
.footer div{
  text-align:center;    
}
.col-2{
  flex-grow:2;
}
.footer div h3{
  font-weight:300;
  margin-bottom:30px;
  letter-spacing:1px;
}
.col-1 a{
  display:block;
  text-decoration:none;
  color:#efefef;
  margin-bottom:10px;
  
}
.social-icon {
  width: 40px; /* Icon size */
  height: 40px; /* Icon size */
  color: white; /* Icon color */
  text-align: center; /* Center icon */
  line-height: 40px; /* Center icon vertically */
  transition: transform 0.3s; /* Transition for scaling */
}

.social-icon:hover {
  transform: scale(1.2); /* Enlarge on hover */
}


.project-image {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

/* Optional: Add a subtle zoom effect on hover */
.project-card:hover .project-image img {
  transform: scale(1.05);
}

.portfolio-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  width: 100%;
  height: 100%;
  min-width: unset;
  margin: 0;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form select.form-control {
    height: 45px;
    background: rgba(183, 184, 187, 0.19);
    color: var(--text-light);
    border: 1px solid var(--accent-gold);
}

.contact-form select.form-control option {
    background: #fff;
    color: #000;
}

.contact-form .btn-gradient {
    width: 100%;
    padding: 12px;
}

.container {
    max-width: 1140px;
    width: 90%;
    margin: 0 auto;
}

section {
    padding: 60px 0;
}

.hero-section {
    padding: 40px 0;
    margin: 0 auto;
}



body {
    zoom: 1.1;
    -moz-transform: scale(1.1);
    -moz-transform-origin: 0 0;
}




