@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900display+swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html,
body
{
    width: 100%;
    min-height: 100%;
}

#smooth-wrapper
{
    width: 100%;
    min-height: 100%;
    position: relative;
}

#smooth-content
{
    width: 100%;
    will-change: transform;
}

section
{
    padding: 100px;
}
.banner
{
    position: relative;
    min-height: 100vh;
    background: #002046;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
}
.banner h2
{
    font-size: 3em;
    color: #fff;
    font-weight: 500;
    line-height: 1.5em;
}
.banner h2 span
{
    font-size: 1.5em;
    font-weight: 700;
}
.banner h3
{
    font-size: 1.5em;
    color: #fff;
    font-weight: 500;

}

/* ── Hero section ── */
.hero-top
{
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    padding: 4rem 4rem 2.5rem;
}

.hero-bottom-slot
{
    width: 100%;
    min-height: 50vh;
}

.hero-text
{
    /* max-width: 900px; */
    opacity: 0;
}

.hero-line
{
    display: block;
    font-size: clamp(2.4rem, 5.5vw, 2.5rem);
    font-weight: 500;
    line-height: 1.40;
    letter-spacing: -0.02em;
    color: #fff;
}

.hero-dynamic-wrapper
{
    display: block;
    position: relative;
    color: #ffff00;
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* Character animation helpers (mirrors template1_hero) */
.char-mask
{
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 0.1em;
    margin-bottom: -0.1em;
}

.char-inner
{
    display: inline-block;
    will-change: transform;
}

 span
{
    color: #ffff00;
}

.link-styles {
    display: inline-flex;
    align-items: center;
    color:rgba(255, 255, 255, 1);
    background-color:rgba(17, 24, 39, 1);
    border-radius: 9999px;
    padding: 0.25rem;
    padding-right: 0.5rem;
    text-decoration: none;
}

.link-styles span {
    color:rgba(255, 255, 255, 1);
}

.link-styles:hover {
    color:rgba(229, 231, 235, 1);
}

.otw-left {
    padding: 0.125rem/* 2px */ 0.75rem/* 12px */;
    color:rgba(255, 255, 255, 1);
    font-size: 0.75rem/* 12px */;
    line-height: 1rem/* 16px */;
    font-weight: 600;
    line-height: 1.25rem/* 20px */;
    letter-spacing: 0.025em;
    background-color: rgba(33, 150, 243, 1);
    border-radius: 9999px;
}


.otw-right {
    margin-left: 1rem/* 16px */;
    padding-top: 0.125rem/* 2px */;
    padding-bottom: 0.125rem/* 2px */;
    line-height: 1.25rem/* 20px */;
}


.otw-svg {
    margin-left: 0.5rem/* 8px */;
    width: 1.25rem/* 20px */;
    height: 1.25rem/* 20px */;
    color: rgba(107, 114, 128, 1);
}

.btn
{
    position: relative;
    background: #2196f3;
    display: inline-block;
    color: #fff;
    margin-top: 20px;
    padding: 10px 30px;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
}
.btn:hover
{
    background: #ffff00;
    letter-spacing: 3px;
    font-weight: 600;
    color:rgb(54, 54, 54);
}
.btn-request
{
    position: relative;
    background: #002046;
    display: inline-block;
    color: #fff;
    margin-top: 100px;
    padding: 10px 30px;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
}
.btn-request:hover
{
    background: #ffff00;
    letter-spacing: 3px;
    font-weight: 600;
    color:rgb(54, 54, 54);
}
header
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* Explicit per-property transitions: background/padding keep original 0.5s;
       transform uses 200ms ease-out for the reveal (ease-in override lives on .js-nav-hidden) */
    transition: padding 0.5s, background-color 0.5s, box-shadow 0.5s, opacity 0.5s, filter 0.5s, transform 200ms ease-out;
    opacity: 0;
}
/* Navbar hidden state: slides upward when hero scrolls out of view */
header.js-nav-hidden
{
    transform: translateY(-100%) !important;
    /* Collapse uses ease-in so it feels sequential with the hero's exit */
    transition: padding 0.5s, background-color 0.5s, box-shadow 0.5s, opacity 0.5s, filter 0.5s, transform 250ms ease-in;
}
header.sticky
{
    background: #002046;
    padding: 20px 100px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

header .logo
{
    color: #f7f7f7;
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
}
header.sticky .logo
{
    color: #ffff00;
}
header ul
{
    position: relative;
    display: flex;

}
header ul li
{
    position: relative;
    list-style: none;
}
header ul li a
{
    position: relative;
    display: inline-block;
    margin: 0 15px;
    color: #f7f7f7;
    text-decoration: none;
    transition: 0.5s
}
.Name 
{
    color: #f7f7f7;
}
header.sticky ul li a
{
color: #fff;
}
.heading
{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: #111;
}
header ul li a:hover
{
    color: #ffff00;
    letter-spacing: 3px;
}
.heading h2
{

    font-weight: 600;
    font-size: 30px;
}
/* ── About section: two-zone layout with team animation ── */
.about {
    position: relative;
    width: 100%;
    height: 100svh;
    overflow: hidden;
    padding: 1rem;
    background: #002046;
}

.about-layout {
    display: flex;
    gap: 1rem;
    width: 100%;
    height: 100%;
}

.about-zone-a {
    flex: 0 0 33.333%;
    position: relative;
    height: 100%;
    z-index: 10;
}

.about-zone-b {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Team member styles (from template4) */
.about .team-member {
    position: relative;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(242, 245, 234, 0.35);
    border-radius: 1.5rem;
    will-change: transform;
    transform: translateY(125%);
}

.about .team-member-name-initial {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about .team-member-name-initial h1 {
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    font-size: 20rem;
    font-weight: 800;
    line-height: 0.8;
    color: #ffff00;
    will-change: transform;
    transform: scale(0);
}

.about .team-member-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(300%, -50%) scale(0.75) rotate(20deg);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background-color: #f2f5ea;
    border-radius: 1.5rem;
    will-change: transform;
    z-index: 10;
}

.about .team-member-img {
    aspect-ratio: 1;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.about .team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .team-member-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.about .team-member-info h1 {
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    font-size: 6.5rem;
    font-weight: 800;
    line-height: 0.8;
    color: #002046;
}

.about .team-member-info h1 span,
.about .team-member-info p {
    color: #002046;
}

.about .team-member-info p {
    text-transform: uppercase;
    font-family: "DM Mono", monospace;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
}

@media (max-width: 1000px) {
    .about {
        height: auto;
        min-height: 100svh;
    }
    .about-layout {
        flex-direction: column;
        align-items: center;
    }
    .about-zone-a {
        flex: none;
        width: 100%;
        max-width: 400px;
        min-height: 80svh;
    }
    .about-zone-b {
        flex: none;
        width: 100%;
    }
    .about .team-member {
        transform: translateY(0%) !important;
    }
    .about .team-member-name-initial h1 {
        font-size: 10rem;
        transform: scale(1) !important;
    }
    .about .team-member .team-member-card {
        transform: translate(-50%, -50%) scale(1) rotate(0deg) !important;
    }
    .about .team-member-info h1 {
        font-size: 5rem;
    }
    .az-text-container {
        padding: 1.5rem;
        font-size: 1.2rem;
    }
}

/* ── About Zone B: scroll-revealed text (mirrors template5 gradient sweep) ── */
.az-text-container {
    position: absolute;
    top: 5%;              /* az-refactor: expanded from 15% to fit all paragraphs */
    left: 8%;             /* az-refactor: slight increase for wider text area */
    width: 84%;           /* az-refactor: widened from 80% to reduce line wrapping */
    height: 90%;          /* az-refactor: expanded from 70% to prevent top/bottom clipping */
    overflow: hidden; /* overflow guarded — revisit if font size changes */
    /* az-refactor: align text container to visual bounding box */
    font-size: clamp(0.95rem, 1.4vw, 1.75rem); /* az-refactor: slightly reduced to fit all text within bounds */
    line-height: 1.35; /* az-refactor: tightened from 1.5 to reduce total text height */
    font-weight: 500;
    font-family: 'Inter', -apple-system, sans-serif;
    display: flex;
    flex-direction: column; /* az-refactor: stack SplitText .line divs vertically for cascading reveal */
    justify-content: center; /* az-refactor: vertical centering (was align-items in row mode) */
    align-items: flex-start; /* az-refactor: left-align text lines */
}

.az-text-container .line {
    display: block;
    background: linear-gradient(to right, #ffffff 50%, #4a4a4a 50%);
    background-size: 200% 100%;
    background-position: 100% 0%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* az-refactor: paragraph spacing inside reveal container */
.az-text-container p {
    margin: 0 0 0.5em; /* az-refactor: reduced from 0.75em to fit within bounds */
    width: 100%;
    max-width: none; /* az-refactor: prevent any inherited max-width constraint */
}
.content
{
    display: flex;
    justify-content: center;
}
.contentBx
{
    padding-right: 30px;
    padding-left: 40px;
}
.contentBx h3
{
    font-size: 24px;
    margin-bottom: 10px;
}

.requests {
    display: flex;
    justify-content:space-around;
}

img
{
   max-width: 100%;
}
video
{
   max-width: 100%;
}
.columns
{
    column-count: 4;
    margin: 30px;
 text-align: center;
 list-style: none;
 text-decoration: none;
}
.columns li
{
    list-style-type: none;
}
.columns li img
{

    margin: 30px 20px;
    cursor: pointer;
}

.columns ul li img src:hover
{
    color: #fff;
}
.w50
{
    min-width: 50%;
}
.content .w50
{
    text-align: justify;
    padding-left: 30px;
}
.services
{
    background: #002046;
    overflow: hidden;
    padding-bottom: 0;
}
.services-header
{
    position: relative;
    width: 100%;
    padding: 0 2rem;
    background-color: #002046;
    will-change: transform;
}
.services-header img
{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.services-header:nth-child(1),
.services-header:nth-child(3)
{
    transform: translateX(100%);
}
.services-header:nth-child(2)
{
    transform: translateX(-100%);
    z-index: 2;
}
.heading .white
{
color: #fff;
}
.services span
{
color: #ffff00;
}
.services .content
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.services .content .servicesBx
{
    padding: 40px 20px;
    background: #00295a;
    color: #fff;
    max-width: 300px;
    margin: 20px;
    text-align: center;
    transition: 0.5s;
    
}
.services .content .servicesBx:hover
{
    background: #165b94;
    max-width: 305px;
}
.services .content .servicesBx img
{
    max-width: 80px;
    filter: invert(1);
}
.services .content .servicesBx  h2
{
    font-size: 20px;
    font-weight: 600;
}

/* ── Services-copy: layout + scroll-reveal animation ───────────────────── */
.services-copy {
    padding: 2rem 0 2rem;
    background: #002046;
}

.services-copy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-block {
    margin-bottom: 6.25rem;
    opacity: 0;
    transform: translateY(60px);
    will-change: opacity, transform;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-content {
    max-width: 60%;
}

.service-title {
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.service-description {
    margin-bottom: 2rem;
    max-width: 45ch;
    color: #bbbbbb;
}

.sub-services-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2.5rem;
}

.sub-service-link {
    text-decoration: none;
    color: #bbbbbb;
    transition: color 0.3s ease;
}

.sub-service-link:hover {
    color: #ffffff;
}

@media (max-width: 992px) {
    .services-copy-container {
        padding: 0 1.5rem;
    }
    .service-content {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .services-copy {
        padding: 4rem 0;
    }
    .service-block {
        margin-bottom: 4rem;
    }
    .service-content {
        max-width: 100%;
    }
    .sub-services-group {
        gap: 1rem 1.5rem;
    }
}
/* ── End services-copy ──────────────────────────────────────────────────── */

.work .content
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.w50 span
{
    color: red;
    font-size: 24px;
    font-weight: 400;
    line-height: 1em;
}
.project-container{
    width: 100%;
    height:730px;
    background:#ffffff;
    border-radius:20px;
    box-shadow:2px 2px 12px rgba(0,0,0,0.2);
    display: flex;
    position: relative;
    justify-content:space-evenly;
    align-items: center;
    flex-direction: column;
  }

  .project-item {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
  }
  .project-container video{
    height:280px;
    padding-right: 3rem;
  }
  .project-text{
    width: 700px;
    padding-left: 1rem;
  }

  hr.solid-line {
    border-top: 3px solid #bbb;
    border-bottom: 3px solid #bbb;
    
  }
  /* .project-text p:nth-child(1){
    color:#403e3e;
    font-family: myriad pro;
    font-weight:bold;
    font-size:23px;
    line-height:0px;
  }
  .project-text p:nth-child(2){
    color:#3e3d3d;
    font-size:13px;
    font-family: myriad pro;
    font-weight:bold;
    line-height:5px;
  }
  .project-text p:nth-child(3),project-text p:nth-child(4){
    color:#7e7d7d;
    font-family:calibri;
    font-size:16px;
  } */
  .project-text button{
    width:120px;
    height: 40px;
    color:#ffffff;
    outline:none;
    border:none;
    font-family: calibri;
    background-color:#262525;
}
.btn-links
{
    position: relative;
    background: #002046;
    display: inline-block;
    color: #fff;
    margin-top: 10px;
    padding: 10px 30px;
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
}
.btn-links:hover
{
    background: #ffff00;
    letter-spacing: 3px;
    font-weight: 600;
    color:rgb(54, 54, 54);
}

.more-projects {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}
/* .testimonial
{
    background: #f7f7f7;
}
.testimonial .heading span
{
    color: red;
        font-size: 40px;
        font-weight: 300;
        line-height: 1em;
}
.testimonial .content
{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.testimonial .content .testimonialBx
{
    max-width:calc(50% - 40px);
    padding: 60px 40px;
    margin: 20px;
    background: #2196f3;
}
.testimonial .content .testimonialBx p
{
    color: #fff;
    font-style: italic;
    font-size: 16px;
    font-weight: 300;
}
.testimonial .content .testimonialBx h3
{
    margin-top: 40px;
    text-align: end;
    color: #fff;
    font-weight: 600;
    line-height: 1em;
}
.testimonial .content .testimonialBx h3 span
{
    font-size: 14px;
    font-weight: 400;
} */
.heading.white
{
    color: #fff;
}
.heading.white span
{

        color: red;
        font-size: 40px;
        font-weight: 300;
        line-height: 1em;

}
.work .heading span
{
    color: red;
        font-size: 40px;
        font-weight: 300;
        line-height: 1em;
}
.contact
{
    background: #002046;
    padding-top: 0;
}
.contact .heading white span
{
    color: red;
        font-size: 40px;
        font-weight: 300;
        line-height: 1em;
}
.formBx
{
    min-width: 60%;
}
.formBx form
{
    display: flex;
    flex-direction: column;
}
.formBx form h3,
.contactinfo h3
{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}
.formBx form input,
.formBx form textarea
{
    margin-bottom: 20px;
    padding: 15px;
    font-size: 16px;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    background: #00295a;
    resize: none;
}
.formBx form textarea
{
    min-height: 200px;
}
.formBx form input::placeholder,
.formBx form textarea::placeholder
{
    color: #999;
}
.formBx form input[type="submit"]
{
    max-width: 100px;
    background: #2196f3;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    color: #fff;
}
.formBx form input[type="submit"]:hover
{
    background: #d6d600;
    letter-spacing: 3px;
    font-weight: 600;
}
.contactinfo
{
    min-width: 40%;
}
.contactinfoBx
{
    position: relative;
}
.contactinfoBx .box
{
    position: relative;
    padding: 20px 0;
    display: flex;
}
.contactinfo .box .icon
{
    min-width: 40px;
    padding-top: 4px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}
.contactinfo .box .text
{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;
}
.contactinfoBx .box .text h3
{
    font-weight: 500;
    color: #2196f3;
    margin-bottom: 0;
}
.btn-socials
{
    position: relative;
    background: #002046;
    display: inline-block;
    color: #fff;
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
}
.btn-socials:hover
{
    letter-spacing: 3px;
    font-weight: 600;
    color: #ffff00;
}

/* ── Contact section: marquee + two-column layout + scroll-reveal ──────── */

/* Marquee banner */
.contact-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    padding: 0.6em 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #002046;
}

.contact-marquee span {
    display: inline-block;
    flex-shrink: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    color: #ffff00;
    font-size: clamp(3rem, 8vw, 6rem);
    text-transform: uppercase;
    animation: contact-marquee-scroll 80s linear infinite;
}

@keyframes contact-marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Two-column layout */
.contact-section-layout {
    width: 100%;
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
}

.contact-details-col {
    flex: 0 0 50%;
    padding: 1em 3em;
}

.contact-form-col {
    flex: 1;
    padding: 1em 3em;
}

/* Contact details */
.contact-list-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-list-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 3.5vw, 48px);
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    width: fit-content;
    white-space: nowrap;
    transition: color 0.3s ease;
    cursor: pointer;
}

.contact-list-link.cursor-default {
    cursor: default;
}

.contact-list-link:hover {
    color: #ffff00;
}

.contact-link-strike {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: clamp(3px, 0.4vw, 6px);
    background-color: currentColor;
    transform-origin: left center;
    transform: scaleX(0);
    z-index: 1;
    pointer-events: none;
}

.contact-intro {
    font-size: clamp(2rem, 3vw, 40px);
    line-height: 1.5;
    color: #fff;
    font-weight: 400;
    margin-bottom: 1.5rem;
    padding-top: 0.8em;
}

.contact-item {
    padding: 4em 0 0 0;
}

.contact-item h3 {
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-item span,
.contact-social-links a {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-social-links a:hover {
    color: #ffff00;
}

.contact-social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-link-divider {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.contact-info-row {
    display: flex;
    gap: 4em;
}

/* Form styles */
.contact-form-col form {
    display: flex;
    flex-direction: column;
}

.contact-form-row {
    display: flex;
    gap: 2rem;
    margin: 2em 0 !important;
}

.contact-form-col input,
.contact-form-col textarea {
    width: 100%;
    padding: 0.4em 0;
    font-size: clamp(18px, 2vw, 24px);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    outline: none;
    color: #fff;
    resize: none;
    font-family: 'Poppins', sans-serif;
    transition: border-bottom-color 0.3s ease;
}

.contact-form-col input:focus,
.contact-form-col textarea:focus {
    border-bottom-color: #ffff00;
}

.contact-form-col textarea {
    min-height: 150px;
}

.contact-form-col input::placeholder,
.contact-form-col textarea::placeholder {
    color: #999;
}

.contact-form-submit {
    justify-content: flex-start;
}

.submit-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3rem, 5vw, 60px);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
    margin-top: 1em;
    transition: color 0.3s ease;
}

.submit-btn i {
    font-size: clamp(3rem, 5vw, 60px);
}

.submit-btn:hover {
    color: #ffff00;
}

/* Animation initial states (GSAP will animate these) */
.contact-heading {
    opacity: 0;
    transform: translateY(30px);
    will-change: opacity, transform;
}

.contact-details-col,
.contact-form-col {
    opacity: 0;
    transform: translateY(40px);
    will-change: opacity, transform;
}

/* Contact responsive */
@media (max-width: 768px) {
    .contact-section-layout {
        flex-direction: column;
    }
    .contact-details-col,
    .contact-form-col {
        flex: none;
        width: 100%;
        padding: 1em 0;
    }
    .contact-info-row {
        flex-direction: column;
        gap: 0;
    }
    .contact-form-row {
        flex-direction: column;
        gap: 0;
    }
    .contact-form-row input,
    .contact-form-row textarea {
        margin-bottom: 1rem;
    }
    .contact-marquee span {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
}
/* ── End contact section ───────────────────────────────────────────────── */

.copyright
{
    background: #002655;
    color: #fff;
    text-align: center;
    padding: 10px;
}
.copyright span
{
    color: #ffff00;
}
.scroll
{
    text-align: center;
    color: #444;
   
}

#center
{
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}
.mouse
{
    display: inline-block;
    width: 28px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid rgb(255, 255, 255);
}
.mouse:after
{
    
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffff00;
    animation: move 1.3s ease-out infinite forwards;
}
@keyframes move{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(10px);
    }
    100%{
        transform: translateY(0);
    }
  
}
.caption{
    display: flex;
    color: #ffff00;
    top: 10px;
}

@media (max-width: 991px)
{
    header,
    header.sticky
{
    padding: 20px 50px;
    z-index: 1000;
}
.menu
{
    position: fixed;
    top: 75px;
    left: -100%;
    display: block;
    padding: 100px 50px;
    text-align: center;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: 0.5s;
    z-index: 999;
    border-top: 1px solid rgba(0,0,0,0.2);
}
.menu.active
{
    left: 0;
}
header ul li a
{
    color: #111;
    font-size: 24px;
    margin: 10px;
}
.toggle
{
    width: 40px;
    height: 40px;
    background: url(https://res.cloudinary.com/ramadevsign/image/upload/v1611166938/burgermenu_white_qk91bm.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    cursor: pointer;
}
.toggle.active
{
    background: url(https://res.cloudinary.com/ramadevsign/image/upload/v1611166938/burger_menu_close_white_kbsapk.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px;
    cursor: pointer;  
}
header.sticky
{
    filter:invert(1);
}
section
{
    padding: 100px 50px;
}
.banner
{
    padding: 0;
}
.hero-top
{
    padding: 3rem 2.5rem 2rem;
}
.banner h2
{
    font-size: 1.5em;
}
.banner h3
{
    font-size: 1em;
}
.btn
{
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
}
.heading h2
{
    font-size: 24px;
}
.contentBx h3
{
    font-size: 20px;
}
.w50
{
    margin-bottom: 20px;
}
.services .content .servicesBx
{
    margin: 10px;
}
.work .content .workBx
{
    width: 100%;
    padding: 10px;
}  
.testimonial .content .testimonialBx
{
    max-width: calc(100% - 20px);
    padding: 40px 20px;
    margin: 10px;
    background: #2196f3;
}
.testimonial .content .testimonialBx h3
{
    margin: 20px;
}
.contactinfo
{
    margin: 20px 0;
}
}

@media (max-width: 768px)
{
    header,
    header.sticky
    {
        padding: 20px 20px;
        z-index: 1000;
    }
    section
    {
        padding: 50px 20px;
    }
    .about
    {
        display:flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .content {
        width: 100%;
        font-size: small;
        align-items: center;
    }
    .content .contentBx
    {   
        position: relative;
        overflow-wrap: break-word;
        word-wrap: break-word;
        text-align: center;
        padding-right: 10px;
        padding-left: 10px;
        
    }
    .contentBx p
    {
        display:inline-block;
        width:auto;
    }
    .w50
    {
        display:none;
    }
    .btn-request
{
    position: relative;
    background: #002046;
    display: inline-block;
    color: #fff;
    margin-top: 50px;
    padding: 10px 30px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
}

.requests {
    display: flex;
    flex-direction: column;
}
    .project-container{
		top: 0px;
		flex-direction: column;
		width:100%;
		height: auto;
		padding: 30px 0px;
		align-items: center;
	}
    .project-item {
        top: 0;
        flex-direction: column;
        width: auto;
        align-items: center;
    }
    .project-item video{
        padding: 1rem;
    } 
	.project-text{
		width:90%;
		text-align: center;
	}
    .contact .content {
        width: 100%;
        display: inline-block;
    }
    
}

@media (max-width: 426px) {
    .banner {
        background-color: #002046;
        padding: 0;
    }

    .hero-top {
        padding: 2rem 1.5rem 1.5rem;
        text-align: center;
    }

    .banner h2
{
    font-size: 1em;
    color: #fff;
    font-weight: 300;
    line-height: 1.5em;
}
.banner h2 span
{
    font-size: 1em;
    font-weight: 700;
}
.banner h3
{
    font-size: 1em;
    color: #fff;
    font-weight: 500;
   
}

.link-styles {
    display: inline-flex;
    align-items: center;
    color:rgba(255, 255, 255, 1);
    background-color:rgba(17, 24, 39, 1);
    border-radius: 9999px;
    padding: 0.25rem;
    padding-right: 0.5rem;
    text-decoration: none;
}

.link-styles span {
    color:rgba(255, 255, 255, 1);
}

.link-styles:hover {
    color:rgba(229, 231, 235, 1);
}

.otw-left {
    font-size: 8px;
    padding: 0.125rem/* 2px */ 0.75rem/* 12px */;
    color:rgba(255, 255, 255, 1);
    font-size: 0.75rem/* 12px */;
    line-height: 1rem/* 16px */;
    font-weight: 500;
    line-height: 1rem/* 20px */;
    letter-spacing: 0.025em;
    background-color: rgba(33, 150, 243, 1);
    border-radius: 9999px;
}


.otw-right {
    margin-left: 1rem/* 16px */;
    padding-top: 0.125rem/* 2px */;
    padding-bottom: 0.125rem/* 2px */;
    line-height: 1rem/* 20px */;
}


.otw-svg {
    margin-left: 0.5rem/* 8px */;
    width: 1rem/* 20px */;
    height: 1rem/* 20px */;
    color: rgba(107, 114, 128, 1);
}
}

/* Mobile notification banner — hidden by default, shown via mobile media query */
.mobile-notification-banner {
    display: none;
}

/* ── Mobile-only: section restrictions + notification banner ──────────────
 * Breakpoint: max-width: 768px (matches project's primary mobile breakpoint)
 * Visible on mobile: .banner (hero) and .contact (contact section) only.
 * All other sections are hidden. Banner is fixed at top with z-index: 1001
 * (above header at 1000, below loader at 9999).
 * padding-top on body and header top offset compensate for the 50px banner.
 * ────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    /* Hide sections not required on mobile */
    .about,
    .services,
    .contact-marquee {
        display: none;
    }

    /* Push page content below the fixed notification banner */
    body {
        padding-top: 50px;
    }

    /* Offset fixed header so it sits below the notification banner */
    header,
    header.sticky {
        top: 50px;
    }

    /* Notification banner layout and styling */
    .mobile-notification-banner {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 50px;
        background: #002046;
        border-bottom: 2px solid #ffff00;
        z-index: 1001;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 1rem;
        text-align: center;
    }

    .mobile-notification-banner span {
        color: #ffff00;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.4;
    }
}