:root {
    --white: #FFFFFF;
    --light-blue: #B1D4E0;
    --primary-blue: #2E8BC0;
    --dark-blue: #145DA0;
    --navy: #071640;
    --text: #2D2D2D;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
}

/* Navigation */
/* CSS Styles */
.navbar {
    background: var(--white) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
}

.logo {
    width: 50%;
    height: 50%;
}

.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--navy) !important;
}

.nav-link {
    color: var(--text) !important;
    margin: 0 1rem;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

.dropdown-item:hover {
    background: var(--light-blue);
    color: var(--navy);
}

/* Mobile Dropdown Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .dropdown-menu {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        margin-left: 20px;
        padding: 0;
    }
    
    .dropdown-submenu .dropdown-menu {
        margin-left: 30px;
    }
    
    .dropdown-toggle::after {
        display: none;
    }
}

/* Desktop Dropdown Styles */
@media (min-width: 992px) {
    .dropdown-submenu {
        position: relative;
    }
    
    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
        margin-left: -1px;
    }
    
    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, rgba(10, 25, 47, 0.95), rgba(31, 58, 95, 0.3)),
        fixed url('../imgs/background1.png') center/cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    padding-top: 10%;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(100, 255, 218, 0.2);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
}

h2 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 2.4rem;
}

/* Why Us Section */
/* Unique DC prefix for all classes */
.dc-why-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f3fc 100%);
    position: relative;
    overflow: hidden;
  }
  
  .dc-why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .dc-why-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: dcFadeUp 0.6s ease forwards;
  }
  
  .dc-why-title {
    font-size: 2.4rem;
    color: #0A2540;
    margin-bottom: 1.2rem;
    font-weight: 700;
  }
  
  .dc-why-lead {
    color: #4A5568;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .dc-why-lead span {
    color: #145DA0;
    font-weight: 500;
  }
  
  .dc-differentiators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
  }
  
  .dc-diff-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(20, 93, 160, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: dcFadeUp 0.6s ease forwards;
  }
  
  .dc-diff-card:nth-child(1) { animation-delay: 0.2s }
  .dc-diff-card:nth-child(2) { animation-delay: 0.4s }
  .dc-diff-card:nth-child(3) { animation-delay: 0.6s }
  .dc-diff-card:nth-child(4) { animation-delay: 0.8s }
  
  .dc-diff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(20, 93, 160, 0.12);
  }
  
  .dc-diff-icon {
    width: 60px;
    height: 60px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .dc-diff-icon svg {
    width: 28px;
    height: 28px;
    fill: #145DA0;
  }
  
  .dc-diff-content h3 {
    color: #0A2540;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
  }
  
  .dc-diff-content p {
    color: #4A5568;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .dc-client-trust {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(20, 93, 160, 0.05);
    border-radius: 12px;
    opacity: 0;
    transform: translateY(20px);
    animation: dcFadeUp 0.6s ease 1s forwards;
  }
  
  .dc-client-trust p {
    color: #4A5568;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
  }
  
  @keyframes dcFadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 768px) {
    .dc-why-title {
      font-size: 2rem;
    }
    
    .dc-differentiators {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .dc-diff-card {
      padding: 1.5rem;
    }
    
    .dc-diff-icon {
      width: 50px;
      height: 50px;
    }
    
    .dc-diff-icon svg {
      width: 24px;
      height: 24px;
    }
  }
  
  @media (max-width: 480px) {
    .dc-why-section {
      padding: 3rem 1rem;
    }
    
    .dc-why-title {
      font-size: 1.75rem;
    }
    
    .dc-why-lead {
      font-size: 1rem;
    }
    
    .dc-client-trust {
      padding: 1.5rem;
    }
  }

/* Services Section */
/* Animated Services Section */
.animated-services {
    padding: 6rem 1rem;
    background: #f8fafc;
}

.as-container {
    max-width: 1200px;
    margin: 0 auto;
}

.as-header {
    text-align: center;
    margin-bottom: 4rem;
}

.as-header h2 {
    font-size: 2.8rem;
    background: linear-gradient(45deg, #2563eb, #1e3a8a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.as-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Grid */
.animated-services {
    padding: 4rem 1.5rem;
    background: #f8fafc;
    font-family: 'Segoe UI', sans-serif;
}

.as-container {
    max-width: 1400px;
    margin: 0 auto;
}

.as-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.as-header h2 {
    font-size: 2.4rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.as-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.as-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.as-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
    background: white;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    min-height: 260px;
}

.as-card:hover {
    transform: translateY(-5px);
}

.as-icon-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.as-icon-circle::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2));
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -150%; }
    100% { left: 150%; }
}

.as-icon-animate {
    font-size: 2.8rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.as-content h3 {
    font-size: 1.6rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.as-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.as-features {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.as-features li {
    padding: 0.8rem 1rem;
    background: #f8fafc;
    border-radius: 8px;
    position: relative;
    padding-left: 2.2rem !important;
    font-size: 0.92rem;
}

.as-features li::before {
    content: '➤';
    position: absolute;
    left: 1rem;
    color: #2563eb;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.as-features li:hover::before {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .as-container {
        max-width: 95%;
    }
}

@media (max-width: 1024px) {
    .as-grid {
        grid-template-columns: 1fr;
    }
    
    .as-card {
        grid-template-columns: 110px 1fr;
        min-height: auto;
        padding: 1.5rem;
    }
    
    .as-icon-circle {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 768px) {
    .animated-services {
        padding: 3rem 1rem;
    }
    
    .as-header h2 {
        font-size: 2rem;
    }
    
    .as-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .as-icon-circle {
        margin: 0 auto 1rem;
    }
    
    .as-features li {
        text-align: left;
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .as-header h2 {
        font-size: 1.8rem;
    }
    
    .as-subtitle {
        font-size: 1rem;
    }
    
    .as-content h3 {
        font-size: 1.4rem;
    }
}

/* Our Approach Section */
.approach-section {
    min-height: 80vh;
    padding: 4rem 0;
    padding-top: 10%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(7, 22, 64, 0.7), rgba(7, 22, 64, 0.9)),
                url('../imgs/background1.png') center/cover;
}

.bg-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-blobs div {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(46, 139, 192, 0.2) 0%, rgba(20, 93, 160, 02) 100%);
    filter: blur(60px);
}

.blob-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -150px;
    animation: float 20s infinite;
}

.blob-2 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -200px;
    animation: float 25s infinite;
}

.approach-content {
    position: relative;
    z-index: 2;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.approach-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.approach-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.approach-card h4 {
    color: white;
    margin-bottom: 1rem;
}

.approach-card h4 span {
    color: var(--primary-blue);
    margin-right: 10px;
}

.approach-card p {
    color: rgba(255, 255, 255, 0.8);
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, 50px) rotate(3deg); }
    66% { transform: translate(-20px, 80px) rotate(-3deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-section {
        padding: 2rem 0;
    }
}

.display-4 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Success Stories */
.success-stories-section {
    position: relative;
    min-height: 100%;
    padding: 4rem 0;
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(7, 22, 64, 0.9),
            rgba(7, 22, 64, 0.9)),
        url('../imgs/success.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: pan-image 20s linear infinite;
}

@keyframes pan-image {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.section-heading {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 0 15px;
    transform: scale(0.95);
    transition: all 0.6s ease;
    opacity: 0.7;
}

.carousel-item.active .testimonial-card {
    transform: scale(1);
    opacity: 1;
}

.card-header {
    background: #145DA0;
    padding: 1.5rem;
    border-radius: 15px 15px 0 0;
}

.card-header h3 {
    color: #B1D4E0;
    font-size: 1.8rem;
    text-align: center;
    margin: 0;
    text-transform: lowercase;
}

.card-header h3::after {
    content: ".";
    color: #2E8BC0;
}

.card-body {
    padding: 2rem;
    color: #145DA0;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.company-logo {
    width: 20%;
    height: 20%;
    margin-left: 40%;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    border-left: 3px solid #2E8BC0;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.client-info {
    text-align: right;
    border-top: 1px solid #B1D4E0;
    padding-top: 1rem;
}

.client-name {
    color: #2E8BC0;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.client-position {
    color: #145DA0;
    font-size: 0.9rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #2E8BC0;
    border-radius: 50%;
    padding: 1.2rem;
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: #145DA0;
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
        padding: 0 15px;
    }

    .company-logo {
        width: 50%;
        height: 50%;
        margin-left: 26%;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .card-header h3 {
        font-size: 1.4rem;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 0.8rem;
    }

    .card-body {
        min-height: 500px;
        padding: 1.5rem;
    }
}

/* Custom Scroll Animation */
.carousel-item {
    transition: transform 0.8s ease-in-out, opacity 0.8s ease;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
    transform: translateX(100%) scale(0.95);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
    transform: translateX(-100%) scale(0.95);
}


/* Technologies */
.tech-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e6f2ff, #ffffff);
    position: relative;
    text-align: center;
}

.tech-section h2 {
    color: #145DA0;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 2.4rem;
}

.tech-section p.description {
    color: #071640;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.tech-carousel-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 90%;
    margin: 0 auto;
}

.tech-card {
    flex: 1 1 14%;
    min-width: 160px;
    background-color: #ffffff;
    border: 2px solid #2E8BC0;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
    text-align: center;
}

.tech-card:hover {
    transform: translateY(-10px);
}

.tech-card img {
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
}

.tech-card h5 {
    color: #145DA0;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.tech-card p {
    font-size: 0.9rem;
    color: #444;
    display: block;
}

@media (max-width: 576px) {
    .tech-section h2 {
        font-size: 1.8rem;
    }

    .tech-carousel-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
        width: 100%;
    }

    .tech-card {
        width: 100px;
        padding: 10px;
        background: none;
        border: none;
        box-shadow: none;
    }

    .tech-card p {
        display: none;
    }

    .tech-card img {
        height: 40px;
        margin-bottom: 8px;
    }

    .tech-card h5 {
        font-size: 0.9rem;
        margin: 0;
    }
}

/* Contact Us */
.contact-us {
    width: 100%;
    height: 100%;
    background: var(--navy);
}

.contact-title {
    margin: 10px auto;
    padding-top: 3%;
    text-align: center;
    color: var(--white);
    border: none;
    font-size: 3rem;
}

.contact-section {
    max-width: 1200px;
    margin: 0px auto;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    position: relative;
    background: var(--navy);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(7, 22, 64, 0.1);
}

.contact-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 45%,
            var(--dark-blue) 50%,
            transparent 55%);
    animation: flow 20s linear infinite;
    opacity: 0.1;
    z-index: 0;
}

.contact-info {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.contact-form {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
}

.contact-form-title {
    color: var(--light-blue);
    margin-bottom: 25px;
    font-size: 1.8em;
    position: relative;
    padding-bottom: 10px;
}

.contact-form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-blue);
}

.contact-details {
    display: grid;
    gap: 20px;
}

.detail-card {
    background: rgba(177, 212, 224, 0.08);
    padding: 18px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-blue);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateX(8px);
}

.detail-card i {
    color: var(--light-blue);
    margin-right: 12px;
    font-size: 1.1em;
}

.social-contact {
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    color: var(--light-blue);
    font-size: 22px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-blue);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--light-blue);
    font-size: 0.95em;
}

input,
textarea {
    width: 100%;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(177, 212, 224, 0.2);
    border-radius: 6px;
    color: var(--white);
    font-size: 15px;
    transition: all 0.3s ease;
}

textarea {
    height: 100px;
}

input:focus,
textarea:focus {
    border-color: var(--primary-blue);
    background: rgba(177, 212, 224, 0.12);
    outline: none;
}

.submit-button {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 35px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.success-message {
    display: none;
    color: #4CAF50;
    margin-top: 20px;
    text-align: center;
    font-size: 1.1em;
    padding: 10px;
    border: 1px solid #4CAF50;
    border-radius: 4px;
    background: rgba(76, 175, 80, 0.1);
}

@keyframes flow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    h2 {
        font-size: 1.6em;
    }

    .contact-section {
        padding: 30px 15px;
        margin: 30px auto;
    }
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #f8faff;
  }
  
  .about-card, .values-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
  }
  
  .value-item {
    margin-bottom: 2rem;
  }
  
  .value-item h4 {
    color: #2a5a8d;
    margin-bottom: 0.8rem;
    font-family: 'Space Grotesk', sans-serif;
  }
  
  .value-item p {
    color: #4a5568;
    line-height: 1.7;
  }

/* Footer */
.footer {
    background-color: #071640;
    color: #FFFFFF;
    padding: 40px 20px;
    border-top: 4px solid #B1D4E0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-section h4 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-links a:hover {
    color: #2E8BC0;
}

.contact-info {
    color: #FFFFFF;
    line-height: 1.6;
}

.copyright {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    color: #FFFFFF;
}

.copyright-links {
    margin-top: 10px;
}

.copyright-links a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 10px;
}

.copyright-links a:hover {
    color: #2E8BC0;
}

/* Success-stories */
/* Case Study Specific Styles */

/* twg */
.twg-case-study {
    --twg-primary: var(--navy);
    --twg-accent: var(--primary-blue);
    --twg-light: var(--light-blue);

    margin-top: 10%;
}

.twg__title {
    color: var(--twg-primary);
    font-size: 2.5rem;
    font-weight: 700;
}

.twg__subtitle {
    color: var(--twg-accent);
    font-size: 1.5rem;
}

.twg__card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(7, 22, 64, 0.08);
    transition: transform 0.3s ease;
}

.twg__card:hover {
    transform: translateY(-5px);
}

.twg__card--accent {
    background: var(--twg-accent);
    color: white;
}

.twg__card--problem {
    border-left: 4px solid #e63946;
}

.twg__card--solution {
    border-left: 4px solid var(--twg-accent);
}

.twg__card--highlight {
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border: 2px solid var(--twg-light);
}

.twg__section-title {
    color: var(--twg-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.twg_about_tag{
    color: white;
}

.twg__text {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 0;
}

.twg__list {
    list-style: none;
    padding-left: 0;
}

.twg__list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(177, 212, 224, 0.3);
    position: relative;
    padding-left: 1.5rem;
}

.twg__list li:before {
    content: "▹";
    color: var(--twg-accent);
    position: absolute;
    left: 0;
}

.twg__dashboard-img {
    border-radius: 8px;
    
    border: 1px solid var(--twg-light);
    margin-bottom: 1rem;
    width: 100%;
    height: 100%;
}

.twg__testimonial {
    background: var(--twg-primary);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.twg__client-img {
    width: 30%;
    height: 50px;
    /* border-radius: 50%; */
    border: 3px solid var(--twg-light);
    margin-bottom: 1.5rem;
}

.craveable__client-img{
    width: 20%;
    height: 60px;
    margin-bottom: 20px;
}

.twg__quote {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    position: relative;
}

.twg__quote:before {
    content: open-quote;
    font-size: 3em;
    position: absolute;
    left: -40px;
    top: -20px;
    color: var(--twg-light);
    opacity: 0.3;
}

@media (max-width: 768px) {

    .twg-case-study {
        margin-top: 20%;
    }

    .twg__title {
        font-size: 2rem;
    }
    
    .twg__subtitle {
        font-size: 1.2rem;
    }
    
    .twg__quote {
        font-size: 1rem;
    }
    
    .twg__quote:before {
        left: -20px;
    }

    .twg__client-img {
        width: 60%;
        height: 40px;
    }
}
/* -------------------------- */

.success-section{
    margin-top: 10%;
}

.section-border {
    border-left: 3px solid var(--dark-blue);
    padding-left: 1rem;
    margin: 2rem 0;
}

.brand-dark { color: var(--navy); }
.image-border { border: 2px solid var(--dark-blue); }

@media (max-width: 768px) {


    .success-section{
        margin-top: 40%;
    }
}

/* About Page */
.about-section {
    margin-top: 10%;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

.mission-card {
    border-left: 4px solid var(--dark-blue);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.value-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--light-blue);
    background: white !important;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(7, 22, 64, 0.1) !important;
    border-color: var(--primary-blue);
}

.value-icon {
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotate(15deg) scale(1.1);
}

@media (max-width: 768px) {
    .about-section {
        margin-top: 20%;
    }

    .value-card {
        margin-bottom: 1.5rem;
    }
    
    .mission-card p {
        font-size: 1rem;
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Thumbnail section for success stories */
/* Success Thumbnails */
.success-stories-thumbnails{
    background: linear-gradient(rgba(7, 22, 64, 0.9),
            rgba(7, 22, 64, 0.9)),
        url('../imgs/success.png');
}

.success-stories-thumbnails .card {
    transition: var(--transition);
    background-color: var(--white);
   
  }
  
  .success-stories-thumbnails .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .success-stories-thumbnails .card-body p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
  }
  
  .success-stories-thumbnails .btn-outline-primary {
    transition: var(--transition);
    border-radius: 50px;
    padding: 6px 16px;
  }
  
  .success-stories-thumbnails .btn-outline-primary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
  }
  
  .success-stories-thumbnails h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
  }

  .card-img-top{
    width: 60%;
    height: 20% !important;
    margin: 20px auto;
  }
  
  /* For smaller screen */
  @media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
        padding-top: 20%;
        text-align: center;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        text-align: center;
        padding: 0 10px;
    }

    .logo {
        width: 120px;
        height: auto;
    }

    .navbar-brand {
        font-size: 1rem;
    }
}
