* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, Myriad Pro Font, sans-serif, montserrat;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #030202;
}


.introduction {
    margin-top: -350px;
    font-size: 20px;
    /*font-family: montserrat;*/
}
/* Styling Navbar */
#nav-bar
{
   position: sticky;
   top: 0;
   z-index: 10;
}
.navbar
{
    background-color: #ffffff;
    text-align: center;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    height: 60px;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-links {
  display: flex;
  gap: 20px;
}
.navbar .nav-link:hover {
  background-color: #ff5503;
  color: #030202;
  padding: 8px 10px;
  border-radius: 5px;
}
.logo {
    width: 150px;
    height: 100px;
}
.navbar-nav li {
    padding: 0 10px;
}
.navbar-nav li a {
    color: #030202 !important;
    font-weight: 600;
    float: right;
    text-align: center;
    line-height: 1;
}
.navbar-toggler:hover {
    background-color: #ff5503;
}
/* Show toggle button on small screens and position it top right */
/*@media (max-width: 768px) {
  .navbar-toggler {
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 999;
  }

  */
nav a {
    color: black;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}
/* Make the button larger on bigger screens */
@media (min-width: 768px) {
  .btn.btn-primary {
    padding: 16px 32px;
    font-size: 1.2rem;
    background: #ff5503
  }
}
/* Responsive adjustments (optional) */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        height: auto;

    }
    .nav-links {
        flex-direction: column;
        width: 100%;
    }
    .nav-link {
        width: 100%;

    }
    .navbar-toggler {
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 999;
  }
}


*/
/*
nav a:hover {
    text-decoration: underline;
    background: yellow;
}
*/


.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 10px;
}

.hero p {
    font-size: 20px;
    background: rgba(0,0,0,0.5);
    padding: 10px 20px;
    border-radius: 10px;
}

/* Sections */
.section {
    padding: 10px 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
}
.collage h3 {
    text-align: center;
    padding-top: 20px;
    margin-bottom: 30px;
    font-size: 28px;
}

/* ------ About */

.section-title {
    color: #ff5503;
    margin-top: 20px;
}

.about-container {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/*
.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}*/
.about-container img {
    flex: 1 1 45%;
    max-width: 100%;
    border-radius: 10px;
}
.about-us {
  display: flex;
  gap: 20px; /* space between columns */
  flex-wrap: wrap; /* optional: allows wrapping on smaller screens */
}
.about-us .column {
  flex: 1; /* makes columns take equal space */
  min-width: 300px; /* optional: ensures columns don't get too narrow */
}

.about-container p {
    flex: 1 1 45%;
    font-size: 18px;
}
.frame1 {
    margin-top: -480px;
    width: 1000px;
    height: 550px;
    margin-left: -210px;
    transform: rotate(-4deg);
}


/* Services */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.service-card {
     background-color: #ff5503;
    color: #ffffff; /* fixed typo from #fffff to #ffffff */
    padding: 1px;
    border-radius: 10px;
    flex: 1 1 calc(25% - 20px); /* 4 per row, adjust as needed */
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    min-height: 400px;
    /* Optional: to animate in */
    transition: transform 0.3s;

}
.offset-creative {
  scroll-margin-top: 80px; /* Adjust to your header height */
}
.offset-branding {
  scroll-margin-top: 20px; /* Adjust to your header height */
}
.offset-digital {
  scroll-margin-top: 20px; /* Adjust to your header height */
}
.offset-consultancy {
  scroll-margin-top: 20px; /* Adjust to your header height */
}


.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card-inner {
    display: flex;
    flex-direction: column;
    flex: 1; /* take up remaining space */
}
.card-content {
  display: flex;
    flex-direction: column;
    flex: 1; /* take remaining space after header and list */
    padding: 10px;
}
.card-content ul {
    padding-left: 20px;
    margin: 0 0 10px 0;
    list-style-type: disc;
}

.card-content li {
    margin-bottom: 5px;
}

.card-content .list {
   margin-left: 20px;
   flex: 1; /* Take available space */
  display: flex;
  flex-direction: column;
  overflow-y: auto; /* optional if content overflows */

}

/* Style Portfolio */
.portfolio-card {
     background-color: #ff5503;
    color: #ffffff; /* fixed typo from #fffff to #ffffff */
    padding: 1px;
    border-radius: 10px;
    flex: 1 1 calc(25% - 20px); /* 4 per row, adjust as needed */
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    min-height: 400px;
    max-width: 450px;
    /* Optional: to animate in */
    transition: transform 0.3s;

}

.portfolio-card:hover {
    transform: translateY(-5px);
    color: #ffffff;
}

.portfolio-card h3 {
    margin-bottom: 10px;
}

.portfolio-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}




/* Style for the link button */
.learn-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffffff; /* Blue background */
  color: #ff5503; /* White text */
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s;
  vertical-align: middle; /* Vertically align if needed */
  cursor: pointer; /* Pointer cursor on hover */
}

.learn-more-btn:hover {
  background-color: #030202; /* Darker blue on hover */
  text-decoration: none;
  color: #ffffff;
}

/* Style for the link button */
.section-btn {
  display: flex;
  justify-content: center; /* Horizontal centering */
  align-items: center;     /* Vertical centering */
  width: 300px;
  padding: 10px 20px;
  background-color: #ff5503; /* Blue background */
  color: #ffffff ; /* White text */
  text-decoration: none;
  margin-top: 20px;
  content-align: center;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
  cursor: pointer; /* Pointer cursor on hover */
}

.section-btn:hover {
  background-color: #030202; /* Darker blue on hover */
  text-decoration: none;
  color: #ffffff;
}





/*  ------ Portfolio  ------ */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.portfolio-item img {
    width: 250px;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s;
}



.portfolio-item:hover img {
    transform: scale(1.05);
    color: #ffffff;
}

/* ------------  Contact Form */


.contact-container {
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}
form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2em;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Style form labels */
form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
    color: #333;
}

/* Style input, select, and textarea elements */
.form-control {
    width: 100%;
    padding: 0.75em 1em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    font-family: arial;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0,123,255,0.5);
}
.contact-email {
     justify-content: center;
     display: flex;
     color: #ff5503;
}

/* Style the submit button */
.btn {
    padding: 0.75em 1.5em;
    font-size: 1em;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #ff5503;
    text-decoration: none;
    color: #ffffff;
}



/* Styling Carousel */
/* Carousel container */
.carousel {
position: relative;
width: 80%;
max-width: 600px;
margin: 50px auto;
margin-top: -40px;
overflow: hidden;
border-radius: 10px;
}

/* Slides wrapper */
.slides {
display: flex;
transition: transform 0.5s ease-in-out;
}

/* Each slide */
.slide {
min-width: 100%;
box-sizing: border-box;
}

/* Optional: add some style to images */
.slide img {
width: 100%;
display: block;
border-radius: 10px;
}

/* Dots navigation */
.dots {
text-align: center;
margin-top: 10px;
}

.dot {
display: inline-block;
height: 12px;
width: 12px;
margin: 0 4px;
background-color: #bbb;
border-radius: 50%;
cursor: pointer;
}

.dot.active {
background-color: #717171;
}

/* Styling Some of Our Clients Section */
/* Container for each logo strip */
.logo-section {
margin-bottom: 40px;
}

.section-title {
font-size: 1.2em;
margin-bottom: 10px;
font-weight: bold;
}

.logo-container {
    overflow: hidden;
    width: 100%;
    background: #fff;

    box-sizing: border-box;
    border-radius: 8px;
}

/* Scrolling logos */
.logo-marquee {
display: flex;
width: calc(200%); /* double width for seamless loop */
animation: scroll 20s linear infinite;
}

/* Optional: pause on hover */
.logo-marquee:hover {
animation-play-state: paused;
}

/* Individual logo styling */
.logo-client {
flex: 0 0 auto;
width: 150px;
margin: 0 15px;
display: flex;
align-items: center;
justify-content: center;
}

.logo-client img {
max-width: 100%;
height: auto;
display: block;
}

/* Animation for scrolling */
@keyframes scroll {
0% {
  transform: translateX(0);
}
100% {
  transform: translateX(-50%);
}
}




/* Footer */

footer {
    background-color: #222;
    color: #fff;
    text-align: left;
    padding: 20px;
}

/*
.footer-container {
    display: flex;
    margin-top: 10px;
    margin-bottom: 30px;
    text-align: centre;
}
*/
.row {
    display: flex;
    /* Optional: spacing between columns */
    gap: 20px;
    margin-left: 20px;
    /*justify-content: space-between;*/
    align-items: flex-start;
    flex: 1;
  }

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap; /* allows wrapping on smaller screens */
    box-sizing: border-box; /* Ensure padding doesn't overflow */
    margin-top: 10px;
    margin-bottom: 30px;
}


.footer-box {
    flex: 1 1 30%; /* allows boxes to grow/shrink with a base width */
    min-width: 200px; /* prevents boxes from becoming too narrow */
    padding: 10px;
     box-sizing: border-box;
}

.custom-hr {
    border: none; /* Remove default border */
    height: 3px; /* Set the thickness of the line */
    background-color: #ff5503; /* Set the color */
    width: 100%; /* Optional: set the width of the line */
    margin: 10px auto; /* Optional: center the line with top and bottom margin */
}

/* ----- About Page Styling ---*/
.highlight-orange {
    color: #ff5503;
}

.about-icon img {
    width: 50px;
    height: 40px
}
.about-text {
    margin-top: -45px;
    margin-left: 50px;
    line-height: 1.2;
}
.column {
    flex: 1;
    padding: 10px;
    margin-top: 10px;
    display: inline-block;
}

.about-us {
  display: flex;
  flex-direction: row; /* default: side-by-side for large screens */
  align-items: stretch;
}

/* Set proportions for large screens: 3:2 ratio */
.column_y {
  flex: 2;
  display: flex;
  justify-content: center; /* optional, to center images */
  align-items: center;     /* optional, to center images vertically */
  padding: 10px;           /* optional, spacing */
}

.column_x {
  flex: 3;
  padding: 10px;           /* optional, spacing */
}

/* Responsive styles for small screens */
@media (max-width: 768px) {
  .about-us {
    flex-direction: column; /* stack vertically */
  }
  /* Make sure column_y appears on top */
  .column_y {
    order: 0; /* first */
  }
  .column_x {
    order: 1; /* second */
  }
}




* {
  box-sizing: border-box;
}


.about-us1 {
  display: flex;
  flex-direction: row;
  align-items: flex-start; /* or center as needed */
}

.card1 {
    border-left: 4px solid #ff5503;
    margin-top: 20px;
    margin-bottom: 2px;
    border-radius: 5px;
    height: 70px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    box-sizing: border-box;
    max-height 500px;
}


/* Add delay for each card to animate sequentially */
.card1:nth-child(1) {
  animation-delay: 0s;
}
.card1:nth-child(2) {
  animation-delay: 0.2s;
}
.card1:nth-child(3) {
  animation-delay: 0.4s;
}
.card1:nth-child(4) {
  animation-delay: 0.6s;
}
.card1:nth-child(5) {
  animation-delay: 0.8s;
}
/* Keyframes for sliding in from left */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}



/* Small screens: reverse the column order */
@media (max-width: 600px) {
  .about-us1 {
    flex-direction: column-reverse;
  }

  /* Optional: make images and text responsive if needed */
  .column_2 img {
    height: auto;
    max-width: 100%;
  }
}



}
/* Make text inside responsive */
.about-text2 {
  font-size: 15px;
  line-height: 1.4;
  margin-left: 5px;
  margin-top: 10px;
}
/* Responsive adjustments for small screens */
@media (max-width: 768px) {
  /* Stack columns vertically */
  .about-us2 {
    flex-direction: column;
  }

  /* Make cards full width */
  .card1 {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Adjust image size if needed */
  .column_y img {
    max-height: 250px;
  }
}



.about-img {
    width: 100%;
    height: 70% ;
    padding: 20px;
    margin-top: 50px;
}
.colored-box {
    background-color: #ff5503;
    padding: 0px;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 100px;
    margin-top: -25px;
    color: #ffffff;
    font-size: 50px;
    line-height: 1;
    justify-content: center;
    display: flex;
    align-items: center;
}
.colored-box:hover {
  transform: scale(1.05);    /* Slightly enlarge on hover */
}
.about-text4 {
    margin-top: 5px;
    display: inline-block;
    margin-right: 10px;
    text-align: center;
}
.about-text5 {
 text-align: center;
 color: #ff5503;
}

.frame2 {
    margin-top: -380px;
    width: 50px;
    height: 560px;
    margin-left: -10px;
    transform: rotate(5deg);
}
.frame3 {
    margin-top: -480px;
    width: 450px;
    height: 550px;
    margin-left: -510px;
    transform: rotate(5deg);
}
/*
.frame2 {
    margin-top: -950px;
    margin-left: -10px;
    min-width: 300px;

    height: 400px;
    transform: rotate(170deg);
}
*/
.about-text2 {
    margin-top: -30px;
    margin-left: 30px;
    line-height: 1.2;
}
.about-text3 {
    margin-top: 8px;
    margin-left: 30px;
    line-height: 1.2;
}

.frame3 {
    margin-top: -650px;
    margin-left: -10px;
    width: 850px;
    height: 280px;
    transform: rotate(160deg);
}





/* ------ Services Section --------- */

.collage {
    background: #FBCEB1;
    border-radius: 5px;
    margin-bottom: 10px;
}
.collage-container {
    padding: 5px;
    border-radius: 5px;
    margin-top: -20px;
}
/* Basic styles for the collage section */
.collage-section {
  padding: 40px 20px;
  background-color: #f5f5f5; /* Optional background */
  text-align: center;
}

/* Style for the title */
.section-title {
  font-size: 2em;
  margin-bottom: 20px;
}

/* Container for images, using CSS Grid for a flexible layout */
.collage-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

/* Style for images */
.collage-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s;
}

/* Optional: hover effect */
.collage-image:hover {
  transform: scale(1.05);
}

/* ------ Style Insights Section -----*/
.insights-container {
    background: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 10px;
    margin-top: -10px;
}
.insights-text  {
    margin-left: 20px;
    margin-top: -20px;
}

/* ---Styling CRS Section ----*/
csr-container

/* Fix dropdown (select) visibility issue */
select.form-control {
    height: auto !important;
    min-height: 45px;
    padding: 10px 12px;
    line-height: 1.4;
}

/* Ensure dropdown options are not clipped */
.form-group {
    overflow: visible !important;
}

/* Prevent parent form clipping dropdown */
form {
    overflow: visible !important;
}