﻿.ought-bg-light{
    background: var(--bs-light);
}

.ought-text-justify {
    text-align: justify;
}

.ought-text-center {
    text-align: center;
}

.ought-text-bold {
    font-weight: bold;
}


.text-ought-blue {
    color: #1a56db;
}

/* Hero Section Custom BG color (Tailwind equivalent for blue-100) */
.ought-bg-hero-light {
    background-color: #e0f2fe;
}

/* Floating Contact Bar Custom CSS */
.ought-contact-bar {
    /* Fixed position for the floating buttons */
    position: fixed;
    bottom: 1.5rem; /* 24px */
    left: 1.5rem; /* 24px */
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ought-contact-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .ought-contact-btn:hover {
        transform: scale(1.1);
        /*box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);*/
    }

.ought-whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.ought-email-btn {
    background-color: #0d6efd;
    color: white;
}

.ought-contact-us-btn {
    background-color: #dc3545;
    color: white;
}







/* ===== Section Wrapper ===== */
.ought-our-Services-main {
  padding: 30px 0;
  background-color: #fff;
}

.ought-our-Services-main h5 {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
}

.ought-our-Services-main-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 50px;
  position: relative;
}

.ought-heading-bottom-red-border {
  width: 80px;
  height: 3px;
  border: none;
  background: #d62828;
  margin: 10px auto 0 auto;
}

/* ===== Service Grid ===== */
.ought-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 30px;
  padding: 0 5%;
}

.ought-our-service-item {
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 0px;
  /*box-shadow: 0 2px 10px rgba(0,0,0,0.05);*/
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  padding: 35px 30px;
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ought-our-service-item:hover {    
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* ===== Service Title ===== */
.ought-service-title h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--bs-dark);
  margin-bottom: 15px;
  line-height: 1.3em;
}


/* ===== Description ===== */
.ought-service-description p {
  font-size: 15px;
  line-height: 1.6em;
  color: #555;
  margin-bottom: 20px;
}

/* ===== Separator Line (Animated) ===== */
.ought-service-separator {
  height: 4px;
  background-color: #dc3545;
  border: none;
  margin: 0 0 20px 0;
  width: 100px; /* default width */
  transition: width 0.4s ease;
}

.ought-our-service-item:hover .ought-service-separator {
  width: 200px; /* expands to the right */
}

/* ===== Know More Link ===== */
.sevice-Knowmore-link a {
  text-decoration: none;
  color: var(--bs-primary);
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-block;
}

.ought-sevice-Knowmore-link a:hover {
  color: #d62828;
}

.ought-right-arrow::after {
  content: "➜";
  margin-left: 8px;
  font-size: 14px;
  transition: margin-left 0.3s ease;
}

.ought-sevice-Knowmore-link a:hover .ought-right-arrow::after {
  margin-left: 12px;
}

/* ===== Responsive Layout ===== */
@media (max-width: 992px) {
  .ought-our-service-item {
    flex: 1 1 calc(45% - 20px);
    max-width: calc(45% - 20px);
  }
}

@media (max-width: 600px) {
  .ought-our-service-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}





/* ---------- Left Section Styles ---------- */
.ought-card-img-title {
  color: #003366;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ought-card-img-heading {
  font-size: 2rem;
  color: var(--bs-dark);
  margin-bottom: 1rem;
}

.ought-card-img-heading hr {
  width: 60px;
  border-top: 3px solid #007bff;
  margin-top: 0.5rem;
}

.ought-card-img-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* ---------- Card Styles ---------- */
.ought-card-img {
  border: none;
  border-radius: 0; /* sharp corners */
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
}

.ought-card-img:hover {
  transform: translateY(-5px);
}

.ought-card-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

/* ---------- Top Title with + icon ---------- */
.ought-card-img-top {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.85);
  width: 100%;
}

.ought-card-img-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /*background: rgba(255, 255, 255, 0.85);*/
  padding: 0.5rem 1rem;
}

.ought-card-img-bottom h5 {
  margin: 0;
  font-size: 2rem;
  font-weight: 300;
  color: white;
  padding-bottom: 1rem;
}

.ought-card-img-top h5 {
  font-size: 1rem;
  font-weight: 500;
  color: #003366;
}

/* ---------- Overlay & Hover Description ---------- */
.ought-card-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  pointer-events: none;
}

.ought-card-img-description {
  background: rgba(255, 255, 255, 0.97);
  width: 100%;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  pointer-events: auto;
  /*margin: 0 0 20px 0;*/
}

.ought-card-img-description h5 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--bs-dark);
}

.ought-card-img-description p {
  font-size: 0.9rem;
  color: var(--bs-dark);
  margin: 0;
}

/* Slide up on hover */
.ought-card-img:hover .ought-card-img-description {
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .ought-card-img-heading {
    font-size: 1.4rem;
  }
}



/* Card Container */
.ought-card-1 {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  overflow: hidden;
  transition: all 0.4s ease;
  color: #fff;
}

/* Text Styling */
.ought-card-1-text {
  position: absolute;
  bottom: 10px; /* 10px gap from bottom */
  left: 20px;
  z-index: 2;
  transition: transform 0.4s ease;
}

.ought-card-1-text h3 {
  font-size: 22px;
  font-weight: normal;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

/* Image Styling */
.ought-card-1-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0; /* image covers full height */
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: transform 0.4s ease;
}

.ought-card-1-image img {
  height: 100%;
  width: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover Animation — only text and image */
.ought-card-1:hover .ought-card-1-text,
.ought-card-1:hover .ought-card-1-image img {
  transform: scale(1.08);
}

/* Background Colors */
.ought-card-1--teal { background-color: #008080; }
.ought-card-1--blue { background-color: #00a0c6; }
.ought-card-1--purple { background-color: #6a1b9a; }
.ought-card-1--yellow { background-color: #f7b500; }
.ought-card-1--orange { background-color: #ff7043; }
.ought-card-1--maroon { background-color: #800000; }
.ought-card-1--green { background-color: #009688; }
.ought-card-1--pink { background-color: #ec407a; }

/* Remove spacing between cards */
.row.g-0 > [class*='col'] {
  padding: 0 !important;
  margin: 0 !important;
}

/* Responsive */
@media (max-width: 992px) {
  .ought-card-1 {
    height: 250px;
  }
  .ought-card-1-text h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .ought-card-1 {
    height: 220px;
  }

  .ought-card-1-text {
    bottom: 8px;
    left: 15px;
  }

  .ought-card-1-text h3 {
    font-size: 16px;
  }
}


.ought-card-partner {
  background-color: #ffffff;
  width: 100%;
  aspect-ratio: 1 / 1; /* makes the card square */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  border: 1px solid #e0e0e0;
}

.ought-card-partner img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
  transition: all 0.4s ease;
  filter: none;
}

/* Hover Effect */
.ought-card-partner:hover {
  background-color: var(--bs-primary); 
  cursor:pointer;
}

.ought-card-partner:hover img {
  filter: brightness(0) invert(1); /* makes image white */
}

/* Remove gaps between cards */
.row.g-0 > [class*='col'] {
  padding: 0 !important;
  margin: 0 !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .ought-card-partner img {
    max-width: 70%;
  }
}

@media (max-width: 768px) {
  .ought-card-partner img {
    max-width: 80%;
  }
}




.ought-faq-header {
  /*background: linear-gradient(135deg, #4f46e5, #6d28d9);*/
  color: #fff;
}
.ought-faq-header h1 {
  font-size: 2.5rem;
}
.ought-faq-header p {
  font-size: 1.1rem;
}

/* FAQ Section */
.ought-faq-section {
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ Item */
.ought-faq-item {
  background: #fff;
  border-radius: 0px;
  border: 1px solid var(--bs-secondary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ought-faq-item:hover {
  transform: translateY(-2px);
  /*box-shadow: 0 4px 12px var(--bs-primary);*/
}

/* Question Row */
.ought-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  background-color: #ffffff;
  transition: background 0.3s ease;
}

.ought-faq-question:hover {
  background-color: #fff;
}

.ought-faq-question h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

/* + / - Icon */
.ought-faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--bs-primary);
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Answer Section */
.ought-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  background-color: #fff;
  transition: max-height 0.4s ease, padding 0.3s ease;
  border-top: 1px solid #eee;
  opacity: 0;
}

.ought-faq-answer p {
  margin: 15px 0;
  color: #555;
  line-height: 1.6;
}

/* Active State */
.ought-faq-item.active .ought-faq-answer {
  max-height: 200px;
  padding: 10px 22px 20px;
  opacity: 1;
}

.ought-faq-item.active .ought-faq-icon {
  transform: rotate(180deg);
  color: #6d28d9;
}

/* Footer */
.ought-faq-footer {
  background: #f8f9fb;
  border-top: 1px solid #e0e0e0;
}


/* Main container */
        .ought-contact-ban-full-foreground {
            width: 100%;
            background: linear-gradient(90deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        
        /* Overlay container */
        .ought-contact-ban-full-foreground-overlay {
            padding: 60px 0;
            position: relative;
            z-index: 2;
        }
        
        /* Left box styling */
        .ought-contact-ban-left-box {
            padding: 20px;
        }
        
        /* Title styling */
        .ought-contact-ban-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--bs-secondary);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Subtitle styling */
        .ought-contact-ban-sub-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--bs-secondary);
            line-height: 1.3;
        }
        
        /* Right box styling */
        .ought-contact-ban-right-box {
            display: flex;
            align-items: center;
            padding: 20px;
        }
        
        /* Button container */
        .ought-contact-ban-link {
            margin-top: 10px;
        }
        
        /* Button styling */
        .ought-contact-ban-button {
            display: inline-flex;
            align-items: center;
            background-color: var(--bs-secondary);
            color: white;
            padding: 12px 24px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .ought-contact-ban-button:hover {
            background-color: var(--bs-primary);
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        /* Arrow styling */
        .ought-contact-ban-right-arrow {
            display: inline-block;
            width: 20px;
            height: 20px;
            margin-left: 10px;
            position: relative;
        }
        
        .ought-contact-ban-right-arrow::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            border-top: 2px solid currentColor;
            border-right: 2px solid currentColor;
            transform: translateY(-50%) rotate(45deg);
        }
        
        /* Background elements */
        .ought-contact-ban-background-element {
            position: absolute;
            opacity: 0.05;
            z-index: 1;
        }
        
        .ought-contact-ban-circle-1 {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background-color: #3498db;
            top: -150px;
            right: -50px;
        }
        
        .ought-contact-ban-circle-2 {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background-color: #2c3e50;
            bottom: -100px;
            right: 100px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .ought-contact-ban-full-foreground-overlay {
                padding: 40px 0;
            }
            
            .ought-contact-ban-sub-title {
                font-size: 1.5rem;
            }
            
            .ought-contact-ban-right-box {
                justify-content: flex-start;
                padding-top: 10px;
            }
        }
        
        @media (max-width: 576px) {
            .ought-contact-ban-sub-title {
                font-size: 1.3rem;
            }
            
            .ought-contact-ban-button {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

/* Custom styles for the floating contact bar */
        .ought-float-btn-container {
            position: fixed;
            bottom: 1rem;
            left: 1rem;
            z-index: 50;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .ought-float-btn {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            transform: scale(1);
            text-decoration: none;
        }
        
        .ought-float-btn:hover {
            transform: scale(1.1);
        }
        
        .ought-float-btn i {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .ought-float-btn:hover i {
            transform: rotate(6deg);
        }
        
        .ought-float-btn-whatsapp {
            background-color: #25D366;
        }
        
        .ought-float-btn-whatsapp:hover {
            background-color: #128C7E;
        }
        
        .ought-float-btn-email {
            background-color: #4285F4;
        }
        
        .ought-float-btn-email:hover {
            background-color: #1a73e8;
        }
        
        .ought-float-btn-phone {
            background-color: #EA4335;
        }
        
        .ought-float-btn-phone:hover {
            background-color: #d33426;
        }
        
        .ought-float-btn-text {
            color: white;
        }
        
        /* Responsive adjustments */
        @media (min-width: 768px) {
            .ought-float-btn {
                width: 4rem;
                height: 4rem;
            }
            
            .ought-float-btn i {
                font-size: 1.75rem;
            }
        }
        
        /* Optional scroll effect */
        .ought-float-btn-scroll-effect {
            opacity: 1;
            transition: opacity 0.3s ease;
        }





/* Client Page Styles */
    
        
        .ought-client-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .ought-client-card {
            background: white;
            border-radius: 0px;
            border:1px solid #e0e0e0;
            /*box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);*/
            transition: all 0.3s ease;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .ought-client-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .ought-client-logo-container {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            background: #f8f9fa;
            border-bottom: 1px solid #e9ecef;
        }
        
        .ought-client-logo {
            max-width: 100%;
            max-height: 120px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .ought-client-card:hover .ought-client-logo {
            transform: scale(1.05);
        }
        
        .ought-client-info {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .ought-client-name {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--bs-secondary);
        }
        
        .ought-client-industry {
            font-size: 0.9rem;
            color: var(--bs-primary);
            font-weight: 500;
            margin-bottom: 1rem;
        }
        
        .ought-client-description {
            color: var(--bs-secondary);
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }
        
        .ought-client-testimonial {
            background: #f8f9fa;
            border-left: 4px solid var(--bs-primary);
            padding: 1rem;
            font-style: italic;
            color: var(--bs-secondary);
            margin-top: auto;
        }
        
        .ought-client-testimonial-author {
            margin-top: 0.5rem;
            font-weight: 500;
            color: #2c3e50;
            font-style: normal;
        }
        
       
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
           
            .ought-client-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }           
           
        }