.navbar {
    position: fixed;
    /* STICKY */
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    padding: 0 30px;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    backdrop-filter: blur(6px);
    z-index: 9999;
}

.logo {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    object-fit: contain;
    height: 50px;
    /* navbar size ke according */
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
    /* text-decoration:none; */
    /* color:black; */
    padding: 4px 8px;
}

.nav-links a.active {
    color: white;
    background: #1e88e5;
    border-radius: 6px;
}

.nav-links a:hover {
    color: #ff3c3c;
}

a:-webkit-any-link {
    color: #1b06a2;
    cursor: pointer;
    text-decoration: none;
}

a:hover {
    color: #ff3c3c;
}

.btn {
    background: #1b06a2;
    border: none;
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

:root {
    --red: #34259c;
    --dark: #121212;
    --gold: #d08a27;
    --navy: #0b2340
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: #ececec;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    padding: 0;

    /* background-image: url("/static/images/aibanner.jpg"); */
    background-size: cover;
    /* pura screen cover kare */
    background-position: center;
    /* center me rahe */
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.wrap {
    max-width: 1200px;
    margin: 18px auto;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
    overflow: hidden
}

/* Social Icone */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    color: white;
    background: #1e88e5;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ff6b00;
    transform: scale(1.1);
}

/* PAGE 1 */
.p1 {
    position: relative;
    min-height: 820px;
    background: url("/static/images/banner.jpg") center/cover no-repeat;
}

.p1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .35), rgba(255, 255, 255, .95) 45%)
}

.brand {
    position: absolute;
    top: 26px;
    left: 26px;
    background: #fff;
    padding: 16px 22px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25)
}

.brand .t1 {
    font-size: 34px;
    font-weight: 900;
    color: var(--red);
    line-height: 1
}

.brand .t2 {
    font-size: 30px;
    color: #333;
    line-height: 1.1
}

.p1c {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 820px;
    padding: 24px
}

.success {
    font-size: 120px;
    font-weight: 900;
    color: var(--red);
    margin: 0;
    line-height: .9;
    text-transform: uppercase;
    background: #ffffff00;
    padding: 8px 28px;
    border-radius: 10px
}

.subtitle {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin: 10px 0 8px
}

.desc {
    font-size: 28px;
    max-width: 980px;
    text-align: center;
    margin: 0 0 16px;
    color: #222
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: min(1020px, 100%)
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 16px 14px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .12)
}

.ico {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #ef1c25;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 8px
}

.card h3 {
    margin: 6px 0 6px;
    font-size: 28px
}

.card p {
    margin: 0;
    font-size: 20px;
    color: #333
}

.clients {
    background: #fff;
    padding: 14px 16px;
    text-align: center
}

.clients h2 {
    margin: 0;
    font-size: 64px
}

.clients p {
    margin: 6px 0 0;
    font-size: 26px
}

.addr {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 24px
}

/* PAGE 2 */
.p2top {
    position: relative;
    height: 420px;
    background: url("/static/images/newapproach.avif") center/cover no-repeat;
    color: #ffffff
}

.p2top::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45)
}

.p2list {
    position: absolute;
    z-index: 2;
    left: 30px;
    top: 28px;
    font-size: 44px;
    font-weight: 900;
    line-height: 1.3
}

.p2list a:-webkit-any-link {
    color: #cdc6c6;
    cursor: pointer;
    text-decoration: none;
}

.p2list a:-webkit-any-link:hover {
    color: red;
}

.approach {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 10px 22px;
    font-size: 56px;
    font-weight: 900
}

.approach2 {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 0px 0px;
    font-size: 34px;
    font-weight: 800;
}

.p2body {
    padding: 70px 28px 0;
    background: #f7f7f7
}

.about {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 24px
}

.about h3 {
    font-size: 52px;
    margin: 0 0 10px
}

.about p {
    font-size: 24px;
    margin: 0;
    color: #222
}

.mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px
}

.box {
    background: #fff;
    border: 2px solid #e7a746;
    border-radius: 10px;
    padding: 12px;
    text-align: center
}

.box h4 {
    margin: 6px 0;
    font-size: 24px
}

.box p {
    margin: 0;
    font-size: 18px
}

.quote {
    margin-top: 18px;
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 34px;
    font-weight: 700
}

.contact {
    background: #d08a27;
    padding: 12px;
    text-align: center;
    font-size: 22px;
    font-weight: 700
}

/* PAGE 3 */
.p3 {
    padding: 28px
}

.p3 h3 {
    font-size: 50px;
    margin: 0 0 10px
}

.p3 p {
    font-size: 22px;
    margin: 0 0 16px
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px
}

.step {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px
}

.n {
    font-size: 34px;
    font-weight: 900;
    color: var(--red)
}

.step h5 {
    margin: 4px 0 6px;
    font-size: 22px
}

.step p {
    margin: 0;
    font-size: 17px;
    color: #444
}

.cta {
    text-align: center;
    margin-top: 14px;
    font-size: 28px;
    font-weight: 900
}

/* About Page  */
.about-hero {
    /*height: 80vh;*/
    background: url("/static/images/about.jpg") center/cover no-repeat;
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /*color: white;*/
    /*text-align: center;*/
    /*min-height:350px;*/
    height:auto;
    padding:120px 20px 80px;
    background-position:center;
    margin-top:70px;
    min-height:calc(90vh - 70px);
}

.about-hero h1 {
    font-size: 55px;
    font-weight: 800;
}

.about-intro {
    text-align: center;
    padding: 70px 20px;
}

.about-intro h2 {
    font-size: 42px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px;
}

.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-feedback {
    background: #111;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.solutions {
    padding: 80px 60px;
    background: #f8f8f8;
    text-align: center;
}

.title h2 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111;
}

.title p {
    font-size: 28px;
    color: #444;
    max-width: 900px;
    margin: auto;
    line-height: 1.5;
}

/* GRID */
.solution-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* CARD */
.grid-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: 0.4s ease;
}

.grid-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* HOVER EFFECT */
.grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Service */
.what-hero {
    position: relative;
    height: 90vh;
    overflow: hidden;

    /* 3D Banner Background */
    /* background: url("/static/images/aibanner.jpg") center/cover no-repeat; */

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark + premium overlay */
.what-hero::before {
    content: "";
    position: absolute;
    /* inset:0; */
    background: linear-gradient(rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.35));
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 20px;
}

.hero-overlay p {
    font-size: 28px;
    font-weight: 400;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.what-hero h1 {
    font-size: 60px;
    font-weight: 800;
    max-width: 1000px;
}

.innovation {
    padding: 80px 20px;
    text-align: center;
    max-width: 900px;
    margin: auto;
    color: white;
    font-size: x-large;
    background-color: rgb(203, 30, 30);

}

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px;
}

.stat-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 60px;
}

h3 {
    display: block;
    font-size: 1.17em;
    margin-block-start: 0em;
    margin-block-end: -1m;
    margin-inline-start: 4px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

h2 {
    display: block;
    font-size: 1.5em;
    margin-block-start: -1.17em;
    margin-block-end: -0.17em;
    /* margin-inline-start: 148px; */
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
    margin-top: 17px;
}

.solution-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.solution-card img {
    width: 100%;
    height: 59%;
    object-fit: cover;
}

.solution-card h3 {
    padding: 15px;
}

.solution-card p {
    padding: 0 15px 20px;
}

.cta {
    background: #111;
    color: white;
    text-align: center;
    /* padding:80px; */
}


.ai-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 39px 50px;
    align-items: center;
    background-color: white;
}

/* IMAGE STYLE */
.ai-image img {
    width: 105%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

/* TEXT STYLE */
.ai-content h3 {
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: 800;
}

.ai-content h4 {
    font-size: 20px;
    margin-top: 10px;
}

.ai-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

/* 🔥 AUTO OPPOSITE (ZIG ZAG MAGIC) */
.ai-section:nth-child(even) {
    direction: rtl;
}

.ai-section:nth-child(even) .ai-content {
    direction: ltr;
}

/* Contact */
.contact-hero {
    height: 80vh;
    /* background-color: #0f0f0e2b; */
    background: url("/static/images/contact.jpg") center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgb(2, 2, 2);
    text-align: center;
}

.contact-hero h1 {
    font-size: 60px;
    font-weight: 800;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.contact-form button {
    background: #0d1f3c;
    color: white;
    padding: 12px;
    border: none;
    font-weight: 600;
}

.contacts-info {
    font-size: 15px;
    /* line-height:1.8; */
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 28px;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
}

.testimonial-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px;
    background: #f5f5f5;
}

.testimonial-card {
    background: #cfdbe7;
    padding: 40px;
    border-radius: 10px;
}

.stars {
    font-size: 24px;
    margin-bottom: 20px;
    color: black;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.user {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user h4 {
    margin: 0;
    font-size: 20px;
    color: black;
}

.user span {
    color: #555;
}

/* Expertise*/
.expertise-hero {
    height: 120vh;
    background: url("/static/images/expertise1.jpg") center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 70px;
}

.expertise-hero h1 {
    font-size: 60px;
    font-weight: 800;
}

.expertise-intro {
    padding: 80px;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px;
}

.expertise-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.expertise-capabilities {
    background: #f5f5f5;
    padding: 70px;
    text-align: center;
}

.expertise-capabilities ul {
    max-width: 700px;
    margin: auto;
    line-height: 2;
    font-size: 20px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 50px;
}

.process-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.expertise-cta {
    background: #0d1f3c;
    color: white;
    text-align: center;
    padding: 12px;
}

/* Startup */
.startup-hero {
    height: 206vh;
    background: url("/static/images/startup.jpg") center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgb(183, 31, 31);
    text-align: center;
    margin-top: 5%;
}

.startup-hero h1 {
    font-size: 60px;
    font-weight: 800;
}

.startup-intro {
    padding: 80px;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.startup-cta h2 {
    margin-inline-start: 0px;
}

.startup-services {
    padding: 60px;
    background: #46cedd3d;
}

.startup-services h2 {
    padding-bottom: 3%;
    margin-inline-start: 0px;
    margin-block-end: -0.7em;
    text-align: center;
}

.startup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.startup-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.startup-process {
    padding: 70px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.startup-cta {
    background: #0d1f3c;
    color: white;
    text-align: center;
    padding: 80px;
}




.services {
    padding: 80px 10%;
}

.services-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-img img {
    width: 100%;
    border-radius: 10px;
}

.service-img {
    flex: 1;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.service-text p {
    margin-bottom: 15px;
}

.service-text ul {
    padding-left: 20px;
}

.service-text li {
    margin-bottom: 8px;
}

/* Flash Message */
.alert {
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.5s;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border-left: 5px solid #28a745;
    font-size: 34px;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    border-left: 5px solid #dc3545;
}

.footer{
background:#1f2a7c;
color:white;
padding:60px 8%;
}

.footer-container{
    display:flex;
    gap:40px;
    margin:0;
}

.footer-left{
width:35%;
}

.footer-left h2{
font-size:19px;
font-weight:700;
line-height:1.4;
margin-bottom:20px;
}

.footer-left p{
margin-bottom:25px;
}

.social-icons a{
font-size:30px;
margin-right:20px;
color:black;
background-color: white;
}

.footer-middle{
width:58%;
}

.footer-middle h3{
margin-bottom:20px;
}

.footer-middle p{
margin-bottom:15px;
line-height:1.5;
}

.contact-info{
display:flex;
gap:30px;
margin-top:15px;
}

.footer-right{
width:30%;
}

.footer-right h3{
margin-bottom:15px;
}

.footer-right input{
width:100%;
padding:15px;
border-radius:10px;
border:none;
margin-bottom:20px;
font-size:16px;
}

.footer-right button{
background:#3c4fb1;
border:none;
color:white;
padding:15px 30px;
border-radius:30px;
cursor:pointer;
font-size:16px;
}

.footer-right button:hover{
background:#2f3f9c;
}

.why-choose-us{
    background: #f8f9fc;
    padding: 70px 10%;
    text-align: center;
}

.why-choose-us h2{
    font-size: 42px;
    margin-bottom: 40px;
    color: #111;
}

.why-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
}

.why-card{
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
    font-size: 20px;
    font-weight: 500;
    transition: .3s;
}

.why-card:hover{
    transform: translateY(-8px);
    background: #0d6efd;
    color: white;
}

.menu-toggle{
    display: none;
}

.team {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: nowrap;
}

.team .col-md-4 {
    flex: 1;
    max-width: 320px;
}

.team img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.team img:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.team h5 {
    margin-top: 20px;
    font-size: 28px;
    font-weight: 700;
    color: #0d1b3e;
    margin-left: 68px;
}

.team p {
    font-size: 18px;
    color: #000;
    margin-left: 68px;
    margin-top: -40px;
}

.container h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #0d1b3e;
}
/* ================= MOBILE RESPONSIVE ================= */

@media (max-width:768px){

body{
overflow-x:hidden;
}

/* Navbar */

.navbar{
padding:15px;
flex-wrap:wrap;
height:auto;
}

.logo img{
height:40px;
}

.nav-links{
display:none;
flex-direction:column;
position:absolute;
top:80px;
left:0;
width:100%;
background:white;
padding:20px;
gap:15px;
box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.nav-links.active{
display:flex;
}

.menu-toggle{
display:block;
font-size:30px;
cursor:pointer;
color:#1b06a2;
}

.btn{
display:none;
}

/* Hero */

.success{
font-size:55px;
margin-top:100px !important;
}

.p1c{
    padding-top:100px;
}

.subtitle{
font-size:28px;
}

.desc{
font-size:18px;
}

.hero-overlay h1{
font-size:34px;
}

.hero-overlay p{
font-size:18px;
}

.expertise-hero{
    margin-top:70px;
    min-height:calc(30vh - 10px);
}

.about-hero{
    margin-top:70px;
    min-height:calc(60vh - 40px);
}

.startup-hero{
    height:80vh;
    padding:120px 20px 80px;
}

.what-hero,
.about-hero,
.contact-hero,
.expertise-hero{
height:auto;
padding:120px 20px 80px;
}

/* Grids */

.cards,
.steps,
.solution-grid,
.solutions-grid,
.services-grid,
.expertise-grid,
.process-grid,
.startup-grid,
.testimonial-section,
.mini{
grid-template-columns:1fr;
}

/* Sections */

.about,
.ai-section,
.contact-wrapper,
.service-row,
.footer-container{
display:flex;
flex-direction:column;
}

/* Images */

.ai-image img{
width:100%;
height:auto;
}

.solution-card img{
height:auto;
}

/* Footer */

.footer-left,
.footer-middle,
.footer-right{
width:100%;
}

.footer-container{
gap:30px;
padding:0;
}

/* Approach */

.p2top{
    height:300px;
}

.approach{
    font-size:32px;
    padding:10px 20px;
    width:auto;
    max-width:90%;
    text-align:center;
    bottom:40px;
}

.approach2{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:5px;
    font-size:18px;
    padding:8px 15px;
    width:90%;
    text-align:center;
    white-space:normal;
}

.startup-services h2{
    padding-bottom: 10%;
}

.team {
        flex-wrap: wrap;
        gap: 20px;
    }

    .team .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

}