/* Modern Styles */

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #00B2EE;    /* Match V2G logo's bright blue */
    --secondary: #0066cc;  /* Darker complementary blue */
    --accent: #FF9800;     /* Warm orange accent */
    --text: #2c3e50;       /* Darker text for better contrast */
    --light: #ffffff;
    --dark: #1a1a1a;
    --gray: #f8f9fa;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --accent-gradient: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
}


.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9998;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.accept-cookies {
    background: #00B2EE;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accept-cookies:hover {
    background: #0c2e8a;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #00B2EE;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add animation delays for cascading effects */
.box:nth-child(1) { transition-delay: 0.1s; }
.box:nth-child(2) { transition-delay: 0.2s; }
.box:nth-child(3) { transition-delay: 0.3s; }

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Open Sans", sans-serif;
  transition: background-color 0.3s ease;
}

#header {
    padding: 15px 0;
    height: 80px;
    position: fixed;
    left: 0;
    top: 40px;
    right: 0;
    transition: all 0.3s ease;
    z-index: 997;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

#header.header-scrolled {
    top: 0;
}

#header.header-scrolled {
    padding: 12px 0;
    height: 70px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

#header #logo {
    float: left;
    padding: 0;
    margin: 0;
}

#header #logo img {
    padding: 0;
    margin: 0;
    max-height: 45px;
    transition: transform 0.3s ease;
    background: transparent;
}


#header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

#nav-menu-container {
    float: right;
    margin: 0;
}

.nav-menu > li {
    margin-left: 10px;
    float: left;
    position: relative;
    white-space: nowrap;
    padding: 10px 0;
}

.nav-menu a {
    padding: 10px 15px;
    text-decoration: none;
    display: inline-block;
    color: #555;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 15px;
    outline: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-menu li:hover > a, 
.nav-menu > .menu-active > a {
    color: #00B2EE;
}

.nav-menu .menu-has-children:hover > ul,
.nav-menu .menu-has-children.sfHover > ul {
    display: block;
}

.nav-menu .menu-has-children > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nav-menu .menu-has-children > a::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.3s ease;
    position: relative;
    right: auto;
}

@media (max-width: 768px) {
    .nav-menu > li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .nav-menu > li > a {
        text-align: center;
        justify-content: center;
        padding: 15px 20px;
        width: 100%;
        display: flex;
    }

    .nav-menu .menu-has-children > a::after {
        position: absolute;
        right: 20px;
    }
            
    .nav-menu .menu-has-children > a {
        justify-content: space-between;
        padding: 15px 20px;
    }

    .nav-menu .menu-has-children > a::after {
        margin-left: 10px;
    }
}

.nav-menu .menu-has-children:hover > a::after {
    transform: rotate(-180deg);
}

.nav-menu .menu-has-children > a:after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 14px;
    transition: transform 0.3s ease;
    position: static;
    transform: none;
}

.nav-menu .menu-has-children:hover > a:after {
    transform: rotate(-180deg);
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
    border-radius: 12px;
    min-width: 220px;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.nav-menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu ul li {
    position: relative;
    width: 100%;
}

.nav-menu ul li a {
    padding: 12px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--text);
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
    width: 100%;
    display: block;
}

.nav-menu ul li a:hover {
    color: var(--primary);
    background: rgba(0,178,238,0.1);
    padding-left: 25px;
}

a {
  color: #00B2EE;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #51d8af;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #00B2EE;
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: #00B2EE;
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #0c2e8a;
  color: #fff;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: linear-gradient(45deg, #00B2EE 0%, #0c2e8a 100%);
    padding: 8px 0;
    font-size: 14px;
    height: 40px;
    display: block;
    position: relative;
    z-index: 999;
}


#topbar .container {
    max-width: 1000px;
}

#topbar .contact-info a,
#topbar .contact-info {
    color: rgba(255, 255, 255, 0.9);
}

#topbar .contact-info a:hover {
    color: #fff;
}

#topbar .contact-info i {
    color: #fff;
    margin-right: 8px;
    font-size: 16px;
}

#topbar .social-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    transition: color 0.3s ease;
}

#topbar .social-links a:hover {
    color: #fff;
}


#header #logo h1 {
  font-size: 42px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

#header #logo h1 a {
  color: #00B2EE;
  line-height: 1;
  display: inline-block;
}

#header #logo h1 a span {
  color: #00B2EE;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
    #topbar {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
    }

    #intro .intro-content {
        margin: 0 20px;
        padding: 30px;
    }

    #intro .intro-content h2 span {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 28px;
    }

    #services .box {
        margin: 10px;
        padding: 20px;
    }

    .contact-info {
        text-align: center;
    }

    #header {
        height: 70px;
        padding: 15px 0;
    }

    .partners-container {
        width: 100%;
    }

    .clients-carousel .partner-item {
        height: 80px;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .clients-carousel img {
        max-height: 40px;
        width: auto;
        object-fit: contain;
    }

    #header #logo h1 {
        font-size: 34px;
    }

    #header #logo img {
        max-height: 40px;
    }
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
    width: 100%;
    height: 100vh;
    position: relative;
    background-image: url('../img/hero.avif');
    background-size: cover;
    background-position: center;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

@media (max-width: 768px) {
    #intro {
        background-image: url('../img/hero.avif');
        background-position: center;
        height: 80vh;
    }
}

@media (max-width: 480px) {
    #intro {
        height: 70vh;
    }
}

/* Add support for browsers that don't support AVIF */
@supports not (background-image: url('../img/hero.avif')) {
    #intro {
        background-image: url('../img/hero-bg.jpg');
    }
}

#intro .intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 620px;
}

#intro .intro-content h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#intro .intro-content span {
    color: #00ffff;
    font-size: clamp(18px, 4vw, 24px);
    display: block;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(0,0,0,0.3);
    padding: 10px 20px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

#intro .intro-content .btn-get-started,
#intro .intro-content .btn-projects {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 8px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#intro .intro-content .btn-get-started {
    background: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0,178,238,0.3);
}

#intro .intro-content .btn-get-started:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,178,238,0.4);
}

#intro .intro-content .btn-projects {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
}

#intro .intro-content .btn-projects:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    #intro::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.4);
        z-index: 1;
    }

    #intro .intro-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    #intro .intro-content .btn-get-started,
    #intro .intro-content .btn-projects {
        margin: 5px 0;
        width: 200px;
        text-align: center;
    }
}

#intro .intro-content .btn-get-started, #intro .intro-content .btn-projects {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
}

#intro .intro-content .btn-get-started {
  background: #0c2e8a;
  border: 2px solid #0c2e8a;
}

#intro .intro-content .btn-get-started:hover {
  background: none;
  color: #0c2e8a;
}

#intro .intro-content .btn-projects {
  background: #0066cc;
  border: 2px solid #0066cc;
  text-decoration: none;
}

#intro .intro-content .btn-projects:hover {
  background: #004d99;
  border-color: #004d99;
  color: #fff;
}

#intro #intro-carousel {
  z-index: 8;
}

#intro #intro-carousel::before {
  content: '';
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 7;
}

#intro #intro-carousel .item {
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 22px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 8px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
}

#mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1000;
}

#mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    margin: 6px 0;
    transition: all 0.3s ease;
    position: relative;
}

/* Mobile Menu */
@media (max-width: 768px) {
    #mobile-nav-toggle {
        display: block;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
        border: none;
        background: transparent;
        padding: 0;
        width: 30px;
        height: 22px;
        cursor: pointer;
    }

    #mobile-nav-toggle span {
        display: block;
        width: 30px;
        height: 2px;
        background: var(--primary);
        margin: 4px 0;
        transition: 0.3s;
    }

    #nav-menu-container {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        height: calc(100vh - 70px);
        background: #fff;
        padding: 0;
        overflow-y: auto;
        z-index: 997;
    }

    #nav-menu-container.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .nav-menu {
        padding: 20px;
        margin: 0;
        list-style: none;
    }

    .nav-menu li {
        display: block;
        margin: 15px 0;
        padding: 0;
        width: 100%;
        transform: translateX(-10px);
        opacity: 0;
        animation: slideIn 0.3s ease forwards;
    }

    @keyframes slideIn {
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }

    .nav-menu li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        color: var(--text);
        font-size: 16px;
        font-weight: 400;
        background: white;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        transition: background-color 0.3s ease;
    }

    .nav-menu li a:hover,
    .nav-menu li.menu-active > a {
        background-color: #f7f7f7;
        color: var(--text);
    }

    .nav-menu .menu-has-children > a {
        justify-content: space-between;
    }

    .nav-menu .menu-has-children > a::after {
        content: '\f054';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 12px;
        color: #999;
    }

    .nav-menu .menu-has-children.submenu-active > a::after {
        transform: rotate(90deg);
    }

    .nav-menu ul {
        display: none;
        background: #f7f7f7;
    }

    .nav-menu ul li {
        margin: 8px 0;
        animation: none;
        transform: none;
        opacity: 1;
    }

    .nav-menu ul li a {
        padding: 12px 20px;
        font-size: 16px;
        background: rgba(0,178,238,0.02);
        border-radius: 8px;
    }

    .nav-menu ul li a:hover {
        background: rgba(0,178,238,0.05);
    }

    #mobile-nav-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    #mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    #mobile-nav-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    body.mobile-nav-active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 9997;
    }

    .nav-menu {
        display: block;
        margin: 0;
        padding: 0;
    }

    .nav-menu > li {
        float: none;
        margin: 0;
        padding: 0;
    }

    .nav-menu > li > a {
        padding: 15px;
        margin: 5px 0;
        display: block;
        border-radius: 12px;
        background: rgba(0,178,238,0.03);
        transition: all 0.3s ease;
        text-align: center;
        font-size: 16px;
    }

    .nav-menu > li > a:hover {
        background: rgba(0,178,238,0.1);
        transform: translateX(5px);
    }

    .nav-menu ul {
        position: static;
        display: none;
        margin: 5px 15px;
        padding: 10px;
        width: auto;
        background: rgba(255,255,255,0.5);
        border-radius: 12px;
        border: 1px solid rgba(0,178,238,0.1);
    }

    .nav-menu ul li a {
        padding: 10px 0;
    }

    .nav-menu .menu-has-children:hover > ul {
        display: none;
    }

    .nav-menu .menu-has-children.submenu-active > ul {
        display: block;
    }

    #mobile-nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    #mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    #mobile-nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 10px 16px;
  text-decoration: none;
  display: inline-block;
  color: #555;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  outline: none;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.nav-menu li:hover > a, .nav-menu > .menu-active > a {
  color: var(--primary);
  background: rgba(0,178,238,0.1);
  transform: translateY(-2px);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-menu li:hover > a::after,
.nav-menu > .menu-active > a::after {
  transform: scaleX(1);
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #00B2EE;
}

.nav-menu ul ul {
  margin: 0;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  color: #00B2EE;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
  /* display: inline-block; */
  text-align: center;
}

.section-header h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 62px;
  height: 3px;
  bottom: 0;
  left: 0;
  border-top: #00B2EE dashed 2px;
  right: 0;
  text-align: center;
  margin: 0 auto;
}

.section-header p {
  padding: 0;
  margin: 0;
  text-align: center;
}

/* About Section
--------------------------------*/
#about {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0,178,238,0.03) 0%, rgba(255,152,0,0.03) 100%);
}

#about .welcome-header {
    margin-bottom: 2rem;
}

#about .welcome-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

#about .welcome-header .lead {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

#about .about-card {
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

#about .about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

#about .card-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(0,178,238,0.08);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

#about .about-card:hover .card-number {
    color: rgba(0,178,238,0.25);
    transform: scale(1.1) translateX(-5px);
}

#about .card-content {
    position: relative;
    z-index: 1;
    padding-top: 1rem;
}

#about .values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#about .values-list li {
    padding: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

#about .values-list li:last-child {
    border: none;
}

#about .values-list li:hover {
    transform: translateX(5px);
}

#about .values-list li i {
    color: var(--accent);
    font-size: 24px;
    padding: 12px;
    background: rgba(255,152,0,0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

#about .values-list li:hover i {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

#about .value-content {
    flex: 1;
}

#about .value-content h4 {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

#about .value-content p {
    color: var(--text);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

#about .about-img {
    overflow: hidden;
    padding: 15px;
}

#about .about-img img {
    max-width: 100%;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

@media (max-width: 768px) {
    #about .about-img {
        height: auto;
        padding: 10px;
    }
    #about .about-img img {
        margin-left: 0;
        padding-bottom: 20px;
    }
    #about .welcome-header h2 {
        font-size: 2rem;
    }
}

#about .about-card h3 {
    color: var(--text);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

#about .about-img {
    height: 100%;
    display: flex;
    align-items: stretch;
}

#about .about-img img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

#about .about-header h2 {
    color: var(--primary);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#about .about-header .lead {
    color: var(--text);
    font-size: 18px;
    margin-bottom: 25px;
}

#about .about-mission h3 {
    color: var(--accent);
    font-weight: 600;
    font-size: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

#about .feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

#about .feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 16px;
}

#about .feature-list li i {
    color: var(--primary);
    font-size: 18px;
}

#about .highlight-text {
    background: linear-gradient(135deg, rgba(0,178,238,0.1) 0%, rgba(255,152,0,0.1) 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 15px;
}

#about .highlight-text i {
    color: var(--accent);
    font-size: 24px;
}

#about .core-values h4 {
    color: var(--primary);
    font-weight: 600;
    font-size: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

#about .values-list {
    list-style: none;
    padding: 0;
}

#about .values-list li {
    padding: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

#about .values-list li:last-child {
    border-bottom: none;
}

#about .values-list li i {
    margin-top: 3px;
}

#about .values-list li i {
    color: var(--accent);
    font-size: 18px;
}

/* Services Section
--------------------------------*/
/* Service Pages Specific Styles */
#service-hero {
    padding: 120px 0 60px;
    background: #fff;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

#service-hero .container {
    max-width: 1200px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateY(0deg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-left: 20px;
}

@media (max-width: 991px) {
    #service-hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-image-wrapper {
        margin-left: 0;
        margin-top: 40px;
    }
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    max-width: 500px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(2deg);
    box-shadow: 0 20px 40px rgba(0,178,238,0.2);
}

.hero-image-wrapper:hover img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        padding: 10px;
        margin-top: 30px;
    }
    
    .hero-image-wrapper img {
        max-width: 100%;
    }
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

#service-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #002395;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-rendering: optimizeLegibility;
}

#service-hero .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 35px;
    max-width: 600px;
}

#service-hero .hero-cta .btn-primary {
    background: #F57C00;
    background: linear-gradient(135deg, #F57C00 0%, #EF6C00 100%);
    border: none;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(245,124,0,0.2);
    transition: all 0.3s ease;
}

#service-hero .hero-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,124,0,0.3);
}

#service-hero .hero-cta .btn-primary i {
    transition: transform 0.3s ease;
}

#service-hero .hero-cta .btn-primary:hover i {
    transform: translateX(5px);
}

#service-hero .aws-partner-badge {
    margin: 0 auto;
    max-width: 350px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#service-hero .aws-partner-badge img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    #service-hero h1 {
        font-size: 3rem;
    }
    
    #service-hero .aws-partner-badge {
        margin: 40px auto 0;
    }
}

#service-hero .lead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

#service-hero .hero-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

#service-hero .hero-features {
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

#service-hero .hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#service-hero .hero-features li:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

#service-hero .hero-features li i {
    color: #00B2EE;
    font-size: 18px;
    background: rgba(0,178,238,0.1);
    padding: 8px;
    border-radius: 50%;
}

.aws-partnership {
    padding: 80px 0;
    background: #d84315; /* More muted base orange */
    background: linear-gradient(135deg, #d84315 0%, #F57C00 100%); /* Adjusted gradient */
    color: #fff;
    position: relative;
    overflow: hidden;
}

.aws-partnership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.aws-partnership h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
}

.aws-partnership p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
}

.aws-partnership .container {
    position: relative;
    z-index: 1;
}

.partnership-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.partnership-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.aws-practices {
    padding: 80px 0;
    background: #fff;
}

.practice-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,178,238,0.1);
}

.practice-card img {
    border-radius: 10px;
    margin-bottom: 20px;
}

.practice-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text);
}

.practice-card p {
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.8;
    margin: 0;
}

.aws-services {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0,178,238,0.03) 0%, rgba(255,152,0,0.03) 100%);
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,178,238,0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,178,238,0.1) 0%, rgba(255,152,0,0.1) 100%);
    border-radius: 12px;
}

.service-icon i {
    font-size: 28px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: var(--accent);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text);
    line-height: 1.4;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 20px;
}

.service-card .btn-primary {
    background: #F57C00;
    background: linear-gradient(135deg, #F57C00 0%, #EF6C00 100%);
    border: none;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245,124,0,0.2);
}

.blog-hero,
.post-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0,178,238,0.12) 0%, rgba(255,152,0,0.10) 100%);
    overflow: hidden;
}

.blog-hero .lead,
.post-hero .lead {
    font-size: 1.15rem;
    color: var(--text);
    margin-top: 18px;
    max-width: 720px;
}

.blog-listing {
    padding: 80px 0;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.08);
}

.blog-card-body {
    padding: 32px;
}

.blog-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text);
}

.blog-card .blog-card-meta {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 18px;
}

.blog-card p {
    color: var(--text);
    opacity: 0.85;
    line-height: 1.75;
    margin-bottom: 22px;
}

.blog-card .btn-primary {
    padding: 12px 26px;
}

.blog-card-meta,
.post-meta {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 14px;
}

.blog-card-meta span,
.post-meta span {
    display: inline-block;
    margin-right: 16px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.post-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.post-share {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 0.95rem;
}

.post-share a {
    color: var(--primary);
    text-decoration: none;
}

.post-share a:hover {
    text-decoration: underline;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0,178,238,0.12);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.post-section {
    padding: 75px 0;
}

.post-section h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--text);
}

.post-section p,
.post-section li {
    color: var(--text);
    line-height: 1.8;
}

.post-section ul {
    margin-top: 20px;
    padding-left: 20px;
}

.post-section ul li {
    margin-bottom: 12px;
}

.post-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.post-service-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.post-service-card h4 {
    margin-bottom: 12px;
    color: var(--text);
}

.post-service-card p {
    margin: 0;
    opacity: 0.8;
}

.post-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
}

.post-cta h2 {
    font-size: 2.4rem;
    margin-bottom: 18px;
}

.post-cta p {
    color: rgba(255,255,255,0.92);
    max-width: 700px;
    margin-bottom: 30px;
}

.post-cta .btn-light {
    border-radius: 30px;
    padding: 14px 32px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .post-hero,
    .blog-hero {
        padding: 80px 0 50px;
        text-align: center;
    }

    .blog-card-body {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .aws-practices, .aws-services {
        padding: 60px 0;
    }
    
    .practice-card, .service-card {
        margin-bottom: 20px;
    }
}

.aws-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.aws-cta {
    position: relative;
}

.aws-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.aws-cta .container {
    position: relative;
    z-index: 2;
}

.aws-cta h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0;
}

.aws-cta .btn-light {
    background: #fff;
    color: var(--primary);
    padding: 12px 32px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.aws-cta .btn-light:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,152,0,0.3);
}

.aws-cta .btn-light i {
    transition: transform 0.3s ease;
}

.aws-cta .btn-light:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .aws-cta {
        padding: 32px 0;
    }
    
    .aws-cta h2 {
        font-size: 1.6rem;
    }
}

#service-features {
    padding: 80px 0;
}

#service-features .feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

#service-features .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

#service-features .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

#service-features .feature-icon i {
    font-size: 24px;
    color: #fff;
}

@media (max-width: 768px) {
    #service-hero {
        padding: 100px 0 40px;
        text-align: center;
    }

    #service-hero h1 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    #service-hero .lead {
        font-size: 1.25rem;
    }

    #service-hero .lead::after {
        left: 50%;
        transform: translateX(-50%);
    }

    #service-overview h2,
    #why-choose h2 {
        font-size: 2.2rem;
    }

    #service-hero .hero-features {
        text-align: left;
    }

    #service-hero img {
        margin-top: 40px;
    }

    #service-overview .service-grid {
        grid-template-columns: 1fr;
    }
}
#services {
  padding: 60px 0 0 0;
}

#services .service-card {
    background: var(--light);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0.95));
    overflow: hidden;
}

#services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,178,238,0.15);
    border-color: var(--primary);
}

#services .service-card:hover .card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0,178,238,0.2) 0%, rgba(255,152,0,0.2) 100%);
}

#services .service-card:hover .card-icon i {
    transform: rotate(360deg);
}

#services .service-card:hover h3 {
    color: var(--primary);
}

#services .service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,178,238,0.05) 0%, rgba(255,152,0,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#services .service-card:hover::after {
    opacity: 1;
}

#services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 20px 20px 0 0;
}

#services .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

#services .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,178,238,0.1);
}

#services .box:hover::before {
    opacity: 0.03;
}

#services .box .title,
#services .box .description {
    position: relative;
    z-index: 1;
}

#services .box:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,152,0,0.1);
}

#services .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,178,238,0.1) 0%, rgba(255,152,0,0.1) 100%);
}

#services .card-icon i {
    font-size: 32px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.5s ease;
}

#services .service-card h3 {
    color: var(--text);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

#services .service-card p {
    color: var(--text);
    opacity: 0.8;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

#services .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,178,238,0.1) 0%, rgba(12,46,138,0.1) 100%);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

#services .box:hover::before {
    transform: translateY(0);
}

#services .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,178,238,0.1);
    border-color: rgba(0,178,238,0.3);
}

#services .box .title {
    font-weight: 600;
    font-size: 1.2rem;
    margin: 20px 0;
    color: var(--text-color);
}

#services .box .description {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

#services .box:hover {
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
}

#services .box .icon {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px;
}

#services .box .icon i {
  color: #444;
  font-size: 44px;
  transition: 0.5s;
  line-height: 0;
  margin-top: 0px;
}

#services .box .icon i:before {
  background: #0c2e8a;
  background: linear-gradient(45deg, #00B2EE 0%, #405ece 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#services .box h4 {
  margin-left: 100px;
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 22px;
  display: block;
  width: 100%;
  text-align: center;
  float: left;
  margin: 0;
}

#services .box h4 a {
  color: #444;
}

#services .box p {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  display: block;
  margin: 0;
  padding-top: 15px;
}

@media (max-width: 767px) {
  #services .box .box {
    margin-bottom: 20px;
  }
  #services .box .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }
  #services .box h4, #services .box p {
    margin-left: 0;
    text-align: center;
  }
}

/* Clients Section
--------------------------------*/
/* Partners Section */
#clients {
    padding: 60px 0;
    background: #fff;
}

.partners-container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

.partners-carousel {
    padding: 20px 0;
    position: relative;
}

.clients-carousel {
    display: block;
}

.clients-carousel .partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.clients-carousel img {
    max-height: 50px;
    width: auto !important;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    margin: 0 auto;
    object-fit: contain;
}

.clients-carousel img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.clients-carousel .owl-dots {
    display: none;
}

.clients-carousel .owl-nav {
    display: none;
}

@media (max-width: 768px) {
    .clients-carousel .owl-nav {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }
    
    .clients-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--accent-gradient) !important;
        color: white !important;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 10px rgba(255,152,0,0.2);
        transition: all 0.3s ease;
    }
    
    .clients-carousel .owl-nav button:hover {
        transform: scale(1.1);
    }
    
    .clients-carousel .owl-nav button::after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 18px;
    }
    
    .clients-carousel .owl-nav button.owl-prev::after {
        content: "\f104";
    }
    
    .clients-carousel .owl-nav button.owl-next::after {
        content: "\f105";
    }
}

.clients-carousel:hover .owl-stage {
    animation-play-state: paused;
}

.clients-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.clients-carousel .owl-item {
    display: flex;
    justify-content: center;
    min-height: 100px;
}

#clients .owl-nav, #clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#clients .owl-dot.active {
  background-color: #00B2EE;
}

/* Our Portfolio Section
--------------------------------*/
#portfolio {
  background: linear-gradient(45deg, #00B2EE -132%, #0c2e8a 100%);
  padding: 90px 50px;
  color: #ffffff9c;
}

#portfolio .portfolio-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

#portfolio .portfolio-item {
  overflow: hidden;
  position: relative;
  padding: 0;
  vertical-align: middle;
  text-align: center;
}

#portfolio .portfolio-item h2 {
  color: #ffffff;
  font-size: 16px;
  margin: 0;
  text-transform: capitalize;
  font-weight: 700;
  background: #00000085;
  border: 1px solid #fff;
  padding: 25px;
  /* background: linear-gradient(45deg, #e91e6357 0%, #405ece91 100%); */
}

#portfolio .portfolio-item img {
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  width: 100%;
}

#portfolio .portfolio-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#portfolio .portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}

#portfolio .portfolio-info {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Testimonials Section
--------------------------------*/
#testimonials {
  padding: 60px 0;
}

#testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 250px;
  /* box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08); */
}

@media (max-width: 767px) {
  #testimonials .testimonial-item {
    margin: 30px 10px;
  }
}

#testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

#testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

#testimonials .testimonial-item .quote-sign-left {
  margin-top: -15px;
  padding-right: 10px;
  display: inline-block;
  width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
  margin-bottom: -15px;
  padding-left: 10px;
  display: inline-block;
  max-width: 100%;
  width: 37px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  background: #f1f1f1;
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 15px 15px 0 15px;
  padding: 22px 15px;
  font-size: 15px;
  color: #686868;
}

#testimonials .owl-nav, #testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: #00B2EE;
}
p.help-block,
p.help-block ul{
    float: left; 
    margin: 0;
    padding: 0;
}
p.help-block li {
    float: left; 
    margin: 10px 0 0 0;
    padding: 0;
    list-style:none;
    color:red;
}
/* Call To Action Section
--------------------------------*/
#call-to-action {
    background: var(--gradient);
    padding: 60px 0;
}

#service-contact {
    background: linear-gradient(135deg, rgba(0,178,238,0.03) 0%, rgba(255,152,0,0.03) 100%);
    padding: 60px 0;
}

.service-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,178,238,0.1);
}

.service-form .form-control {
    border: 1px solid rgba(0,178,238,0.2);
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.service-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,178,238,0.1);
}

.service-form textarea.form-control {
    resize: vertical;
}

.service-form .btn-primary {
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 600;
    background: var(--accent-gradient);
    border: none;
    transition: all 0.3s ease;
}

.service-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,152,0,0.2);
}

#call-to-action .cta-btn {
    background: transparent;
    border: 2px solid var(--light);
    color: var(--light);
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#call-to-action .cta-btn:hover {
    background: var(--light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#call-to-action .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

#call-to-action .cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: all 0.3s ease;
  margin: 10px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #fff;
  color: #00B2EE;
}

/* Our Team Section
--------------------------------*/
#team {
  background: #fff;
  padding: 60px 0 0 0;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
}

#team .member .pic {
  overflow: hidden;
  text-align: center;
}

#team .member .pic img {
  max-width: 100%;
  border-bottom: 4px solid #00B2EE;
  padding: 20px 20px 0;
}

#team .member .details {
  background: #fff;
  color: #00B2EE;
  padding: 15px 0;
  border-radius: 0 0 3px 3px;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

#team .member .social {
  margin-top: 5px;
  padding: 6px;
  text-align: center;
}

#team .member .social a {
  color: #081e5b;
  margin: 2px 6px;
  border: 1px solid #081e5b;
  width: 42px;
  display: inline-block;
  opacity: .4;
}
#team .member .social a:hover{
  color: #081e5b;
  margin: 2px 6px;
  border: 1px solid #081e5b;
  opacity: 1;
}
#team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/* Contact Section
--------------------------------*/
#contact {
    padding: 40px 0;
}

#contact .contact-info {
    text-align: center;
    max-width: 300px;
}

#contact .contact-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

#contact .contact-info address,
#contact .contact-info p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

#contact .contact-info a {
    color: var(--primary);
    transition: color 0.3s ease;
}

#contact .contact-info a:hover {
    color: var(--accent);
}

#contact .form-control {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 12px 15px;
}

#contact .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,178,238,0.1);
}

#contact textarea.form-control {
    min-height: 120px;
}

#contact button[type="submit"] {
    padding: 12px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    background: var(--accent-gradient);
    border: none;
    box-shadow: 0 5px 15px rgba(255,152,0,0.2);
    transition: all 0.3s ease;
}

#contact button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,152,0,0.3);
}

#contact button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,152,0,0.2);
}

@media (min-width: 768px) {
  #contact .contact-address, #contact .contact-phone, #contact .contact-email {
    padding: 0;
    text-align: left;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
  }
}

#contact #google-map {
  height: 290px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  #contact #google-map {
    margin-top: 20px;
  }
}

#contact .form #sendmessage {
  color: #00B2EE;
  border: 1px solid #00B2EE;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form-group {
    position: relative;
    margin-bottom: 25px;
}

#contact form {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,178,238,0.1);
    margin: 0 auto;
    max-width: 90%;
    position: relative;
    overflow: hidden;
}

#contact form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

#contact .form-control {
    border: 1px solid rgba(0,178,238,0.2);
    border-radius: 8px;
    padding: 15px;
    background: #fff;
    transition: all 0.3s ease;
    font-size: 16px;
}

#contact .form-control:focus {
    box-shadow: none;
    border-color: #00B2EE;
}

#contact .form-control::placeholder {
    color: #999;
    opacity: 0.7;
}

#contact textarea.form-control {
    min-height: 120px;
    border: 2px solid rgba(0,178,238,0.2);
    padding: 15px;
    border-radius: 8px;
}

#contact button[type="submit"] {
    padding: 12px 40px;
    border-radius: 30px;
    background: var(--accent-gradient);
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

#contact button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,152,0,0.2);
}

#contact .form button[type="submit"]:hover {
  background: #081e5b;
}

/*--------------------------------------------------------------
# Floating Contact
--------------------------------------------------------------*/
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.btn-floating {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn-floating.whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-floating.email {
    background-color: #059669;
    color: white;
}

.btn-floating i {
    font-size: 24px;
}

.btn-floating.whatsapp:hover {
    background-color: #22c35e;
}

.btn-floating.email:hover {
    background-color: #047857;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #000;
    padding: 40px 0 20px;
    color: #fff;
    position: relative;
}

#footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

#footer .footer-section {
    padding-right: 20px;
}

#footer .footer-logo-img {
    max-width: 150px;
    margin-bottom: 20px;
}

#footer .footer-description {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

#footer .footer-social {
    display: flex;
    gap: 15px;
}

#footer .social-link {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

#footer .social-link:hover {
    color: var(--primary);
}

#footer h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

#footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-links li {
    margin-bottom: 12px;
}

#footer .footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

#footer .footer-links a:hover {
    color: var(--primary);
}

#footer .footer-contact p {
    color: #999;
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#footer .footer-contact i {
    color: var(--primary);
    font-size: 16px;
}

#footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

#footer .copyright {
    color: #999;
    font-size: 14px;
}

@media (max-width: 768px) {
    #footer .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    #footer .footer-section {
        padding-right: 0;
    }
}
/* AWS Service Popups */
.aws-popup {
    position: relative;
    background: #fff;
    padding: 0;
    width: auto;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 15px;
    overflow: hidden;
}

.aws-popup-content {
    position: relative;
}

.popup-header {
    background: var(--gradient);
    padding: 30px;
    color: #fff;
    text-align: center;
}

.popup-header i {
    font-size: 40px;
    margin-bottom: 15px;
}

.popup-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.popup-body {
    padding: 30px;
}

.popup-body h4 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.popup-body p {
    color: var(--text);
    margin-bottom: 25px;
}

.popup-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.popup-body ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text);
}

.popup-body ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent);
    position: absolute;
    left: 0;
}

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

.benefit-item {
    text-align: center;
    padding: 20px;
    background: rgba(0,178,238,0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(0,178,238,0.1);
}

.benefit-item i {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 10px;
}

.benefit-item span {
    display: block;
    color: var(--text);
    font-weight: 500;
}

.popup-footer {
    padding: 20px 30px;
    background: rgba(0,0,0,0.02);
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.popup-footer .btn {
    padding: 12px 30px;
}

/* Magnific Popup Customization */
.mfp-bg {
    background: rgba(0,0,0,0.85);
}

.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
    transform: translateY(0);
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
    transform: translateY(-20px);
}

.owl-carousel .owl-item img {
    display: block;
    width: auto;
    height: 70px;
    margin: 0 auto;
}
