/* Section Title Responsive Sizes */
.section-title-animated {
    position: relative;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 18px;
    color: #2c3e50;
}

/* Animated underline */
.section-title-animated::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0099cc, #00bfff);
    animation: underline-move 2s ease-in-out infinite;
}

/* Keyframes */
@keyframes underline-move {
    0% {
        width: 0%;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 0%;
        left: 100%;
    }
}

/* Responsive font sizes */
@media (min-width: 481px) {
    .section-title-animated {
        font-size: 20px;
    }
}

@media (min-width: 577px) {
    .section-title-animated {
        font-size: 22px;
    }
}

@media (min-width: 769px) {
    .section-title-animated {
        font-size: 26px;
    }
}

@media (min-width: 993px) {
    .section-title-animated {
        font-size: 30px;
    }
}

@media (min-width: 1201px) {
    .section-title-animated {
        font-size: 32px;
    }
}

/* What We Do Title Responsive */
.what-we-do-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 24px;
}

@media (min-width: 481px) {
    .what-we-do-title {
        font-size: 20px;
    }
}

@media (min-width: 577px) {
    .what-we-do-title {
        font-size: 22px;
    }
}

@media (min-width: 769px) {
    .what-we-do-title {
        font-size: 26px;
    }
}

@media (min-width: 993px) {
    .what-we-do-title {
        font-size: 30px;
    }
}

@media (min-width: 1201px) {
    .what-we-do-title {
        font-size: 32px;
    }
}

/* Enhanced Inner Headline Hero Section */
#inner-headline {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.4); */
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 60px 0;
}

.hero-heading {
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
}

.heading-underline {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #26c6da, #00acc1, #0097a7);
    margin: 0 auto 35px;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

.hero-tag {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    color: #f8f9fa;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Enhanced Animation Styles */
.animate-slide-up {
    animation: slideUpFade 1.2s ease-out;
}

.animate-grow {
    animation: growWidth 1.5s ease-out 0.4s both;
}

.animate-fade {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.float-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.circle-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    right: 8%;
    animation: floatSlow 8s ease-in-out infinite;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 10%;
    animation: floatMedium 6s ease-in-out infinite 2s;
}

.circle-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 15%;
    animation: floatFast 4s ease-in-out infinite 1s;
}

.circle-4 {
    width: 60px;
    height: 60px;
    top: 30%;
    left: 5%;
    animation: floatSlow 7s ease-in-out infinite 3s;
}

.circle-5 {
    width: 90px;
    height: 90px;
    bottom: 10%;
    left: 20%;
    animation: floatMedium 5s ease-in-out infinite 1.5s;
}

/* Enhanced Keyframes */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes growWidth {
    from {
        opacity: 0;
        width: 0;
    }

    to {
        opacity: 1;
        width: 120px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes floatMedium {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(-180deg);
    }
}

@keyframes floatFast {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

/* Enhanced Responsive Design */
.hero-heading {
    font-size: 64px;
}

.hero-tag {
    font-size: 24px;
}

.hero-desc {
    font-size: 19px;
}

@media (max-width: 1200px) {
    .hero-heading {
        font-size: 56px;
    }
}

@media (max-width: 992px) {
    .hero-heading {
        font-size: 48px;
    }

    .hero-tag {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 36px;
    }

    .hero-tag {
        font-size: 18px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .circle-1,
    .circle-2,
    .circle-3,
    .circle-4,
    .circle-5 {
        display: none;
    }
}

@media (max-width: 576px) {
    #inner-headline {
        min-height: 55vh;
    }

    .hero-heading {
        font-size: 28px;
    }

    .hero-tag {
        font-size: 16px;
    }

    .hero-desc {
        font-size: 14px;
        padding: 0 10px;
    }

    .heading-underline {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 24px;
    }

    .hero-tag {
        font-size: 14px;
    }

    .hero-desc {
        font-size: 13px;
    }
}

/* ===== Service Card Style ===== */
.service-card {
    background: #f8f9fa;
    padding: 18px;
    border-radius: 8px;
    height: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Icon colors */
.icon-box {
    font-size: 30px;
    margin-bottom: 12px;
}

.icon-box.blue {
    color: #007bff;
}

.icon-box.green {
    color: #28a745;
}

.icon-box.cyan {
    color: #17a2b8;
}

/* Explore Section */
.explore-section {
    padding: 50px 30px;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.explore-section h3 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 20px;
}

.explore-section p {
    color: #495057;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 481px) {
    .explore-section h3 {
        font-size: 22px;
    }

    .explore-section p {
        font-size: 15px;
    }
}

@media (min-width: 577px) {
    .explore-section {
        padding: 25px 15px;
    }

    .explore-section h3 {
        font-size: 24px;
    }

    .explore-section p {
        font-size: 16px;
    }
}

@media (min-width: 769px) {
    .explore-section {
        padding: 30px 20px;
        margin: 30px 0;
    }

    .explore-section h3 {
        font-size: 28px;
    }

    .explore-section p {
        font-size: 17px;
    }
}

@media (min-width: 993px) {
    .explore-section h3 {
        font-size: 32px;
    }

    .explore-section p {
        font-size: 18px;
    }
}

@media (min-width: 1201px) {
    .explore-section h3 {
        font-size: 36px;
    }

    .explore-section p {
        font-size: 19px;
    }
}

/* Hero Margin Responsive */
.hero-margin {
    margin-top: 0;
}

@media (min-width: 992px) {
    .hero-margin {
        margin-top: 50px;
    }
}

/* Explore Text Responsive */
.explore-text {
    color: #495057;
    font-size: 14px;
    line-height: 1.6;
    margin: 20px auto 0;
    max-width: 900px;
}

@media (min-width: 481px) {
    .explore-text {
        font-size: 15px;
    }
}

@media (min-width: 577px) {
    .explore-text {
        font-size: 16px;
    }
}

@media (min-width: 769px) {
    .explore-text {
        font-size: 17px;
    }
}

@media (min-width: 993px) {
    .explore-text {
        font-size: 18px;
    }
}

@media (min-width: 1201px) {
    .explore-text {
        font-size: 19px;
    }
}

/* What We Do Section */
.what-we-do-section {
    background: white;
    padding: 50px 40px;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .what-we-do-section {
        padding: 30px 20px;
        margin: 30px 0;
    }
}

@media (max-width: 576px) {
    .what-we-do-section {
        padding: 25px 15px;
    }
}

/* Get in Touch Button */
.get-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.get-btn-warning {
    background: linear-gradient(90deg, #26c6da, #00acc1, #0097a7);
    color: #ffffff;
    border: none;
}

.get-btn-warning:hover {
    background: linear-gradient(90deg, #26c6da, #00acc1, #0097a7);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    text-decoration: none;
}

.get-btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .get-btn {
        font-size: 14px;
        padding: 10px 25px;
    }

    .get-btn-lg {
        padding: 12px 30px;
        font-size: 16px;
    }
}