/* Base Styles */
:root {
    --primary-color: #4CAF50; /* Green - change to your preferred accent color */
    --secondary-color: #2196F3; /* Blue */
    --dark-color: #0a192f; /* Navy blue background */
    --light-color: #ffffff;
    --highlight-color: #00d1b2; /* Teal for highlights */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
padding: 0;
background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/DsbStudios Background Image.png');
background-position: center;
background-size: cover;
background-attachment: fixed;
background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--highlight-color);
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background-color: rgba(10, 25, 47, 0.9) !important;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--light-color) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--highlight-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--highlight-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-quote {
    background-color: var(--highlight-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 209, 178, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(1% rgba(0,0,0,0.15),), url('../images/hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 100;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0, 51);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p.lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.btn-primary {
    background-color: var(--highlight-color);
    border-color: var(--highlight-color);
    color: var(--dark-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--highlight-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 209, 178, 0.3);
}

.btn-outline-light {
    border-color: var(--light-color);
    color: var(--light-color);
}

.btn-outline-light:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--highlight-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Services Section */
.services-section {
    background-color: rgba(0, 0, 0, 0.2);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}


.site-section {
  padding: 2.5em 0; }
  
  @media (min-width: 768px) {
    .site-section {
      padding: 8em 0; } }
  .site-section.site-section-sm {
    padding: 4em 0; }

.site-section-heading {
  padding-bottom: 20px;
  margin-bottom: 0px;
  position: relative;
  font-size: 2.5rem; }
  @media (min-width: 768px) {
    .site-section-heading {
      font-size: 3rem; } }

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    max-width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--highlight-color);
}

.service-card p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.service-link {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--highlight-color);
}

.service-link:hover i {
    transform: translateX(5px);
}
.pb-120 {
  padding-bottom: 120px;
}

/* Portfolio Section */
.portfolio-section {
    background-color: rgba(0, 0, 0, 0.1);
}

.portfolio-slider {
    margin-top: 50px;
    position: relative;
}

.portfolio-item {
    margin: 0 15px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.portfolio-item img {
    width: 220px;
    height: 250px;
    object-fit: var(220px);
    transition: all 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 209, 178, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.portfolio-link {
    color: var(--dark-color);
    background: var(--light-color);
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay .portfolio-link {
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials-section {
    background-color: rgba(0, 0, 0, 0.2);
}

.testimonials-slider {
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    margin: 0 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.tech-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--highlight-color), var(--secondary-color));
}

.testimonial-content {
    padding-top: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.testimonial-card p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 2rem;
    color: var(--highlight-color);
}



.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--highlight-color);
}

.client-info h4 {
    margin-bottom: 5px;
    color: var(--highlight-color);
}

.client-info p {
    margin: 0;
    font-style: normal;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0;
}

.client-info p::before {
    content: none;
}

/* Contact Section */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light-color);
    height: 50px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: var(--highlight-color);
    border-color: var(--highlight-color);
    color: var(--light-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 209, 178, 0.25);
}

textarea.form-control {
    height: auto;
    resize: none;
}

.contact-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--highlight-color);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}


/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--highlight-color), var(--secondary-color));
}

.footer-about {
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--highlight-color);
    transform: translateX(5px);
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--highlight-color);
    color: var(--dark-color);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Floating Button */
.float-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 12px 16px;
  border-radius: 50px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 1000;
  text-decoration: none;
  overflow: visible;
  transition: transform 0.3s ease;
}

/* Icon only on small screens */
@media (max-width: 600px) {
  .float-whatsapp span {
    display: none;
  }
}

/* Attention Animation */
.attention {
  animation: pulseAttention 1s ease-in-out 3;
}

@keyframes pulseAttention {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Tooltip Styling */
.chat-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 10px;
  background: #333;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Tooltip animation on pulse */
.attention .chat-tooltip {
  opacity: 1;
  transform: translateY(-10px);
}

/* Mobile Tooltip (Position Below) */
@media (max-width: 600px) {
  .chat-tooltip {
    right: auto;
    left: 50%;
    top: 100%;
    margin: 5px 0 0 -70px;
    transform: translateY(10px);
  }

  .attention .chat-tooltip {
    transform: translateY(0);
  }
}




/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p.lead {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .float-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}



/* Image Scroller Styles */
/* Scroller structure */
.scroller-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.scroller-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide-content {
  min-width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.img-fluid {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Arrow Buttons */
.scroller-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  z-index: 10;
  cursor: pointer;
}
.left-btn {
  left: 10px;
}
.right-btn {
  right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .scroller-btn {
    display: none;
  }
  .slide-content {
    flex-direction: column !important;
    text-align: center;
  }
}
.no-transition {
  transition: none !important;
}
