
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
    --white: #ffffff;
    --gray: #6b7280;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}
/* #progress-container{
	top: 95px !important;
} */
.google-captcha-notice {
    display: none;
}
.custom-navbar, .ekit-template-content-header {
    position: fixed;
    width: 100%;
    background: #fff;
	z-index: 98;
}
/* Default: Submenus open to the right */
.custom-navbar li ul li ul {
    /* left: auto !important; */
    /* right: 100% !important; */
    position: static !important;
}


.footer-grid {
	/* grid-template-columns: 2fr 2fr 2fr !important; */
    grid-template-columns: 1.5fr 1.5fr 2fr 1.5fr !important;
}

/* Hide Services and Insights in child theme */
.portfolio-menu-section {
    display: none !important;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
	.footer-grid > div:last-child {
        grid-column: span 1 !important;
    }
}

/* Basic dropdown styles */
.menu-item-has-children > ul {
    display: none;
    position: absolute;
    background: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    z-index: 9999;
}

.menu-item-has-children:hover > ul {
    display: block;
}

.menu-item-has-children {
    position: relative;
}


/* Inspired Section */

.contact-banner {
    padding: 80px 0 0;
    text-align: center;
}
/* Innovation Service Section */
.contact-banner .innovation-service {
    padding: 40px 0;
	background: #F6F6F6;
    max-width: 1170px;
    margin: 0 auto;
	border-radius: 2px; 
}

.contact-banner .innovation-service h2 {
    font-weight: 600;
    margin: 10px 0;
}

.contact-banner .innovation-service p {
    margin: 0 auto;
}

/* Work Banner Section */
.contact-banner .work-banner {
    background: linear-gradient(90deg, #E2001B 0%, #7B1FA2 60%);
    padding: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 250px;
    position: relative;
    overflow: hidden;
}
.contact-banner .container{
    padding: 0;
}
/* Decorative Background Icons */
.contact-banner .work-banner::before,
.contact-banner .work-banner::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 75px;
    height: 75px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    transform: translateY(-50%);
}

.contact-banner .work-banner::before {
    left: 20px;
	/* background-color: #E2001BA3; */
    /* background-blend-mode: multiply; */
    background-image: url('../D-color-pattern.png');
}

.contact-banner .work-banner::after {
    right: 20px;
    background-image: url('../top_right_icon_colored-opt.png');
}

/* Work Banner Heading */
.contact-banner .work-banner h2, .contact-banner .work-banner h3 {
    color: #fff;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Contact Button */
.contact-banner .contact-button {
    background: #fc0;
    color: #000;
    padding: 12px 24px;
    border-radius: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
	font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-banner .contact-button:hover {
    background: #ffcc00;
    text-decoration: none;
    color: #000;
}

/* Arrow Image */
.contact-banner .arrow-img {
    width: 15px;
    height: auto;
    vertical-align: middle;
    background: transparent;
    margin-left: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-banner .work-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
	.contact-banner .container{
		padding: 0 20px;
	}
	.contact-banner .innovation-service{
		padding: 20px 10px;
	}
    .contact-banner .work-banner::before,
    .contact-banner .work-banner::after {
        width: 60px;
        height: 60px;
    }
	.contact-banner {
		padding: 50px 0 0;
	}
}
/* Trending Section */
.trending-section {
    background: white;
    padding: 80px 20px;
	padding-top: 0;
}

.trending-container {
    max-width: 1170px;
    margin: 0 auto;
}

.trending-heading {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 40px;
    text-align: center;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.trending-card {
    background: white;
    overflow: hidden;
}
.trending-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-content {
    padding: 0 0 20px;
}

.trending-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #1A1A1A;
    margin-bottom: 40px;
    line-height: 40px;
	height: 80px;
}

.trending-link {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
	background: #252525;
	color: #fff !important;
    text-decoration: none !important;
    border-radius: 2px;
	padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
/* Responsive Styles */
@media (max-width: 1024px) {
    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
	.trending-section{
		padding: 50px 40px 0;
	}
    .trending-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
	.trending-title{
		margin-bottom: 10px;
		height: auto;
	}
	.heromobile-ai-img {
        display: none;
    }
}

@media (max-width: 480px) {
    .trending-heading {
        margin-bottom: 30px;
    }

	.contact-banner .contact-button{
		padding: 5px 10px;
	}
	.trending-title {
      margin-bottom: 10px;
		height: auto;
    }
	.trending-link{
		padding: 5px 10px;
	}
}
.faq-wrap-main {
    max-width: 1170px;
    margin: 0 auto !important;
}
.faq-wrap-main  .faq-agile-text-banner {
    margin-bottom: 50px;
    color: #1A1A1A;
}
.img-overlay {
  position: relative;
  overflow: hidden;
}

.img-overlay::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 128, 128, 0); /* initially transparent */
  transition: background-color 0.3s ease;
  z-index: 1;
}

/* .img-overlay:hover::after { */
  /* background-color: rgba(128, 128, 128, 0.5); */
/* } */

/* Style the dots to be below the carousel */
.owl-dots {
    text-align: center;
    position: absolute;
    bottom: -30px; /* Adjust this value to your preference */
    left: 0;
    width: 100%;
    z-index: 1;
}

/* Style for each dot */
.owl-dot {
    display: inline-block;
    margin: 1px;
    background: #bbb !important;
    width: 6px;
    height: 6px;
    transition: background-color 0.3s ease;
}

.owl-dot.active {
    background: #E2001B !important; /* Change this color to your active dot color */
    width: 24px !important;
}

.project-btn {
   font-family: 'JetBrains Mono';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 20px;
    margin-top: 15px;
    border: 1px solid white;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    width: 50px; /* Initial width - just enough for the arrow */
    transition: all 0.3s ease-in-out;
}

.project-btn .btn-text {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    white-space: nowrap;
}

.project-btn .btn-arrow {
    width: 20px;
    height: auto;
    transition: all 0.3s ease-in-out;
}

.project-btn:hover {
    width: 100%;
    justify-content: center; /* Center the text horizontally */
    gap: 10px;
    text-decoration: none;    /* Remove underline */
}

.project-btn:hover .btn-text {
    display: inline;
    opacity: 1;
    color: white;             
    text-decoration: none;    /* Ensure no underline on text element */
    text-align: center;       /* Optional: center text in the element */
}
.cloud-common-section-content{
	margin: 100px 0 20px;
}