

:root {
    --primary-blue: #185ebc;
    --light-blue: #609ae9;
    --dark-gray: #2e2e2e;
    --accent-green: #7d9276;
    --content-max-width: 100%;
    --container-max-width: 1920px;
    --white: #FFFFFF;
    /* Responsive font scale variables */
    --font-scale: 1;
}

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

   body {
       font-family: 'Poppins', sans-serif;

       background-color: var(--white);

       min-height: 100vh;
       overflow-x: hidden;
       position: relative;
        padding-top: 100px;

   }

 .container-fluid {
     padding: 0;
     max-width: 1920px;
     overflow-x: hidden;
 }
 
 /* Header Styles */
 .header {
     padding: 20px 0;
     background: white;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     transition: all 0.3s ease;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .header.scrolled {
     padding: 10px 0;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
 }

 .logo-svg {
     width: 120px;
     height: 80px;
     transition: all 0.3s ease;
 }

 .header.scrolled .logo-svg {
     width: 80px;
     height: 50px;
 }

 .navbar-nav .nav-link {
     font-weight: bold;
     font-size: 24px;
     margin: 0 15px;
     color: var(--primary-blue) !important;
     transition: color 0.3s ease;
     position: relative;
 }

 .navbar-nav .nav-link:first-child {
     color: var(--light-blue) !important;
 }

 .navbar-nav .nav-link:hover {
     opacity: 0.8;
 }

 /* Services Dropdown */
 .services-dropdown {
     position: absolute;
     top: 100%;
     left: 0;
     right: 0;
     width: 100vw;
     background: white;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
     opacity: 0;
     visibility: hidden;
     transform: translateY(-10px);
     transition: all 0.3s ease;
     z-index: 999;
 }

 .nav-item.services:hover .services-dropdown {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .services-dropdown .container {
     padding: 40px 15px;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
 }

 .service-item {
     text-align: center;
     padding: 20px;
     border-radius: 10px;
     transition: all 0.3s ease;
 }

 .service-item:hover {
     background: #f8f9fa;
     transform: translateY(-5px);
 }

 .service-icon {
     font-size: 48px;
     color: var(--primary-blue);
     margin-bottom: 15px;
 }

 .service-title {
     font-size: 18px;
     font-weight: 600;
     color: var(--primary-blue);
     margin-bottom: 10px;
 }

 .service-description {
     font-size: 14px;
     color: #666;
     line-height: 1.4;
 }

 .login-btn {
     background-color: var(--primary-blue);
     border: none;
     border-radius: 10px;
     padding: 8px 20px;
     color: white;
     font-weight: bold;
     font-size: 14px;
     transition: background-color 0.3s ease;
 }

 .login-btn:hover {
     background-color: #144a9a;
 }



   .container-main{
       width: 100%;
       position: relative;
       max-width: 1920px;
       margin: 0 auto;
       padding: 20px;
       display: flex;
       align-items: start;
       min-height: 100%;
   }

   

   /* Left Side - Tree and Text */
   .story-header {
       display: flex;
       align-items: start;
       gap: 40px;
       flex: 1;
       /* padding:0 10%; */
       justify-content: end;
       position: relative;
       padding: 0 0 0 0;

   }

   .tree-image {
       width: 280px;
       height: 250px;
       background-image: url('/assets/images/pages/our-story/tree.png');
       background-size: contain;
       background-repeat: no-repeat;
       background-position: center;
       flex-shrink: 0;
       margin-right:15%;
       position: relative;
   }

   .story-text-wrapper {
       position: absolute;
       display: flex;
       flex-direction: column;
       align-items: flex-start;
       justify-content: end;

       bottom: -5rem;
       right: -180px;
   }

   .our-text {
       font-size: 96px;
       font-weight: bold;
       color: var(--dark-gray);
       line-height: 1;
       margin-bottom: -10px;
       line-height: 0.9;
       position: relative;
       filter: brightness(0.8);

   }



   .story-text {
       font-size: 96px;
       font-weight: 700;
       color: var(--primary-blue);

       font-weight: bold;
       line-height: 0.9;
       position: relative;
       z-index: 0;
       filter: brightness(0.75);
   }

   /* Right Side - Video Section */
   .video-section {
       display: flex;
       flex-direction: column;
       align-items: center;
       gap: 30px;
       flex: 1;
       margin-top: 5rem;
   }


   .video-container {
       position: relative;
       background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
       border-radius: 20px;
       overflow: hidden;
       width: 100%;
       aspect-ratio: 1.58 / 1;
       margin-top: 0 !important;
       max-width: 500px;
   }

   .video-thumbnail {
       width: 100%;
       height: 100%;
       object-fit: cover;
       border-radius: 20px;
   }


   .video-label {
    position: absolute;
    top: 40%;
    right: 20px;
    color: white;
    font-size: 1rem;
    background: transparent;
    padding: 10px 15px;
    border-radius: 5px;
    transform: rotate(90deg) translateX(50%);
    transform-origin: right center;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: 1px;
}

   /* Watch Button */



   /* Watch Button */
.watch-btn {
    text-decoration: none;
    background-color: var(--primary-blue);
    border: none;
    outline: none;
    border-radius: 20px;
    padding: 20px 40px;
    color: white;
    font-weight: normal;
    margin-top: 30px;
    transition: background-color 0.3s ease;
    font-size: 18px;
    width: 50%; /* Full width of parent */
    max-width: 100%; /* Ensure it doesn't exceed parent */
    display: flex; /* Use flexbox for better alignment */
    align-items: center;
    justify-content: center;
    gap: 10px; /* Space between text and icon */
    cursor: pointer;
}

.watch-btn svg {
    width: 2rem;
    height: auto;
    flex-shrink: 0; /* Prevent SVG from shrinking */
}


   .watch-btn:hover {
       background-color: #124a9a;
       color: #FFF;
       cursor: pointer;
       /* transform: translateY(-2px); */
       box-shadow: 0 6px 30px rgba(0, 102, 204, 0.4);


   }

   .watch-btn span {
       display: inline-block;
   }

   .watch-btn svg {
       width: 20px;
       height: 20px;
       transition: transform 0.3s ease;
   }

   .watch-btn:hover svg {
       transform: translate(3px, -3px);
   }

   /* Responsive Design */
   @media (max-width: 968px) {
       .container-main{
           flex-direction: column;
           gap: 40px;
       }

       .story-header {
           width: 100%;
           justify-content: center;
       }

       .tree-image {
           width: 200px;
           height: 180px;
       }

       .our-text {
           font-size: 56px;
       }

       .story-text {
           font-size: 72px;
       }

       .video-section {
           width: 100%;
       }


   }

   @media (max-width: 640px) {
       .story-header {
           flex-direction: column;
           gap: 30px;
           text-align: center;
       }


       .our-text {
           font-size: 48px;
       }

       .story-text {
           font-size: 60px;
       }

       .watch-btn {
           padding: 14px 28px;
           font-size: 16px;
       }

       .video-container {
           max-width: 100%;
       }
   }

   /* Story Section Ended */

   /* All Over Start Section ************** */

   .section-start-heading {
       /* background: linear-gradient(to right, var(--dark-gray) 40%, white 30%); */
       background: transparent;
       /* padding: 60px 0; */
       /* height: 24rem; */
       height: calc(20px + (var(--chain-gap) * 12.5) - 1.9rem);
       display: flex;
       align-items: center;
       /* Critical: Ensure no overflow hidden */
       overflow: visible !important;
       position: relative;
   }

   .section-start-heading::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100vw;
            height: 100%;
            background: linear-gradient(
                to right, 
                var(--dark-gray) calc(50% - (var(--container-max-width) * 0.5) + (var(--container-max-width) * 0.4)),
                var(--white) calc(50% - (var(--container-max-width) * 0.5) + (var(--container-max-width) * 0.4))
            );
            z-index: -1;
    }

        @media (max-width: 1920px) {
            .section-start-heading::before {
                background: linear-gradient(
                    to right,
                    var(--dark-gray) 40%,
                    var(--white) 40%
                );
            }
        }


   .section-start-heading .container{
    padding:20px;

   }

   .start-heading {
       color: white;
       font-size: calc(4rem * var(--font-scale));
       font-weight: normal;
       line-height: 1.2;
       position: relative;
       margin: 0;
       /* Add these for debugging */
       display: block;
       overflow: visible !important;
       white-space: nowrap;

        position: relative;
        width: 40%;
   }

   .section-start-heading .chainwrapper-overview{
    position: absolute;
    right:0;
    top:0;
   }


   /* Ended Section Over Start **************  */

   /* Section Init ************** */
   .section-init {
       background-color: var(--dark-gray);
       /* height: 21rem; */
        height: calc(20px + (var(--chain-gap) * 9) + 2rem);

   }

   .init-w40 {
        width: 40%;
        position: relative;
   }

   .init-w40 .chainwrapper-start {
    position: absolute;
    right:0;
    top:0;
   }

   .init-w40 .chainwrapper-2016  {
    position: absolute;
    right:0;
    top:0;
   }

   .init-w40  .chainwrapper-2017{
    position: absolute;
     right:0;
    top:0;

   }

   .init-w40  .chainwrapper-2019 {
    position: absolute;
     right:0;
    top:0;

   }

   .init-w40  .chainwrapper-2020 {
    position: absolute;
     right:0;
    top:0;

   }

   .init-w40  .chainwrapper-2022 {
    position: absolute;
     right:0;
    top:0;

   }

   .init-w40  .chainwrapper-2024 {
    position: absolute;
     right:0;
    top:0;

   }

   .init-w40  .chainwrapper-2025 {
    position: absolute;
     right:0;
    top:0;

   }



   /* Section init Ended */


   /* Section Timeline Started */
   .section-2016 {
       position: relative;
       /* height: 25rem; */
       height: calc(calc(20px + (var(--chain-gap) * 20) + 2.5rem) - calc(20px + (var(--chain-gap) * 9) + 0.5rem));
       display: flex;
   }

   .section-2016 .container{
    display: flex;
    align-items: center;
   }

   .section-2016 .one {
       width: 30%;
       text-align: center;
       padding: 0 2rem;

       display: flex;
       flex-direction: column;

   }


 
   .section-2016 .two {
       width: 40%;
       padding: 0 8rem;
       /* padding:clamp(3rem, 4rem, 5rem); */

   }

   .section-2016 .three {
       width: 30%;
   }

   .timeline-heading {
       color: var(--dark-gray);
       font-family: 'Poppins', sans-serif;
       font-size: calc(2.8125rem * var(--font-scale));
       /* Base: 45px */
       font-style: normal;
       font-weight: 400;
       line-height: normal;

   }

   .timeline-subheading {
       color: var(--dark-gray);
       font-family: 'Poppins', sans-serif;
       font-size: calc(1.5625rem * var(--font-scale));
       /* Base: 25px */
       font-style: normal;
       font-weight: 400;
       line-height: normal;
   }


   .timeline-year {
       color: var(--dark-gray);
       font-size: calc(7rem * var(--font-scale));
       font-style: normal;
       font-weight: 700;
       line-height: normal;
   }

   /* section Timeline ended */



   /* Section 2017 Started */

   .section-2017 {
       background-color: var(--dark-gray);
       height: calc(calc(20px + (var(--chain-gap) * 33) + 1.5rem) - calc(20px + (var(--chain-gap) * 22) - 0.35rem) + 2rem);       
   }

   .section-2017 .container-main{

       display: flex;
       justify-content: end;
       align-items: center;
   }

   .section-2017 .heading {
       color: #FFF;
       font-size: calc(7rem * var(--font-scale));
       font-style: normal;
       font-weight: 700;
       line-height: normal;


   }

   /* Seciton 2017 Ended */



   /* Section 2019 Started */

   .section-2019 {
       /* height: calc(33rem * var(--font-scale)); */
       height: calc(calc(20px + (var(--chain-gap) * 50) - 0.9rem) - calc(20px + (var(--chain-gap) * 35) + 0.75rem) + 3rem);
   }



   .section-2019 .container-main{

       display: flex;
       justify-content: end;
       align-items: center;
   }

    .section-2019 .one {
       width: 40%;
       text-align: start;
       text-align: center;


   }


   .section-2019 .two {
       width: 30%;
       text-align: center;

   }

   .section-2019 .three {
       width: 30%;
       text-align: center;
       padding-bottom: 5rem;
   }


   .section-2019 .heading {
       color: var(--dark-gray);
       ;
       font-size: calc(7rem * var(--font-scale));
       font-style: normal;
       font-weight: 700;
       line-height: normal;


   }

   /* Seciton 2019 Ended */



   /* Section 2020 Started */

   .section-2020 {
       background-color: var(--dark-gray);
       height: calc(calc(20px + (var(--chain-gap) * 65) + 0.5rem) - calc(20px + (var(--chain-gap) * 51) - 1rem) + 4rem);
   }

   .section-2020 .container-main{

       display: flex;
       justify-content: end;
       align-items: center;
   }

    .section-2020 .one {
       width: 40%;
       text-align: start;
       text-align: center;


   }


   .section-2020 .two {
       width: 30%;
       text-align: center;

   }

   .section-2020 .three {
       width: 30%;
       text-align: center;
       padding-bottom:5rem;
   }



   .section-2020 .heading {
       color: #FFF;
       font-size: calc(7rem * var(--font-scale));
       font-style: normal;
       font-weight: 700;
       line-height: normal;


   }

   /* Seciton 2020 Ended */



   /* Seciton 2022 Started ************** */

   .section-2022 {
       /* background: linear-gradient(to right, var(--dark-gray) 40%, white 30%); */
       padding: 60px 0;
       background: transparent;
       height: calc(calc(20px + (var(--chain-gap) * 76) + 1rem) - calc(20px + (var(--chain-gap) * 66) + 1.5rem) + 2rem);
       display: flex;
       align-items: center;
       position: relative;
   }

   .section-2022::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100vw;
            height: 100%;
            background: linear-gradient(
                to right, 
                var(--dark-gray) calc(50% - (var(--container-max-width) * 0.5) + (var(--container-max-width) * 0.4)),
                var(--white) calc(50% - (var(--container-max-width) * 0.5) + (var(--container-max-width) * 0.4))
            );
            z-index: -1;
    }

        @media (max-width: 1920px) {
            .section-2022::before {
                background: linear-gradient(
                    to right,
                    var(--dark-gray) 40%,
                    var(--white) 40%
                );
            }
        }

   .section-2022 .container{
    display: flex;
    align-items: center;
   }

   .section-2022 .heading {
       color: white;
       font-size: calc(7rem * var(--font-scale));
       font-style: normal;
       font-weight: 700;
       line-height: normal;
   }


   /* Seciton 2022  Ended  **************  */



   /* Section Establish Started */
   .section-2024 {
        /* height: 28rem; */
        position: relative;
        /* background: linear-gradient(to right, white 40%, var(--dark-gray) 30%); */
        background: transparent;
        overflow: hidden;
        height: calc(calc(20px + (var(--chain-gap) * 92) + 1.8rem) - calc(20px + (var(--chain-gap) * 78) - 0.5rem) + 4rem);
   }

   .section-2024::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100vw;
            height: 100%;
            background: linear-gradient(
                to right, 
                white calc(50% - (var(--container-max-width) * 0.5) + (var(--container-max-width) * 0.4)),
                var(--dark-gray) calc(50% - (var(--container-max-width) * 0.5) + (var(--container-max-width) * 0.4))
            );
            z-index: -1;
    }

        @media (max-width: 1920px) {
            .section-2024::before {
                background: linear-gradient(
                    to right,
                    white 40%,
                    var(--dark-gray) 40%
                );
            }
        }

   .section-2024 .container{
    display: flex;
    align-items: center;
    padding:0;
   }

   .section-2024 img {
    display: block;  /* Removes the gap */
    width: 100%;
}

   .section-2024 .one {
       width: 50%;
       text-align: start;
   }

   .section-2024 .one .image-wrapper {
            position: relative;
        }


.section-2024 .one .image-wrapper  {
    position: absolute;
    width: 50%;
    bottom: 0rem;
}


   .section-2024 .two {
       width: 30%;
       text-align: start;
       padding-top:calc(6rem * var(--font-scale));

   }

   

   .section-2024 .three {
       width: 20%;
       text-align: center;
       padding-top:calc(6rem * var(--font-scale));

   }

   .establish-heading {
       color: white;
       font-size: calc(4rem * var(--font-scale));
       /* Base: 45px */
       font-style: normal;
       font-weight: 400;
       line-height: normal;
   }

   .establish-subheading {
       color: white;
       font-size: calc(1.5625rem * var(--font-scale)); 
       /* Base: 25px */
       font-style: normal;
       font-weight: 400;
       line-height: normal;
   }


   .establish-year {
       color: white;
       font-size: calc(7rem * var(--font-scale));
       font-style: normal;
       font-weight: 700;
       line-height: normal;
   }

   /* section Establish ended */



   /* Seciton 2025 Started ************** */

   .section-2025 {
        height: 21rem;
        background: linear-gradient(to right, var(--dark-gray) 40%, white 30%);
        padding: 60px 0;
        display: flex;
        align-items: center;
   }


   .section-2025 .one {
       width: 30%;
       text-align: start;


   }

   .section-2025 .two {
       width: 40%;
       text-align: center;

   }

   .section-2025 .three {
       width: 30%;
       text-align: center;
   }


   .section-2025 .heading {
       color: var(--dark-gray);
       font-size: calc(7rem * var(--font-scale));
       font-style: normal;
       font-weight: 700;
       line-height: normal;
   }


   /* Seciton 2025  Ended  **************  */







/* Font scale adjustments for different screen sizes */
@media (max-width: 1920px) {
    :root {
        --font-scale: 1;
    }

      .section-2022 .container-main{
        padding-left:9rem;
    }
   
}

@media (max-width: 1800px) {
    :root {
        --font-scale: 0.9;
    }

      .section-2022 .container-main{
        padding-left:5vw;
    }

    .watch-btn {
    width: 60%; /* Full width of parent */
}

   
}


@media (max-width: 1590px) {
    :root {
        --font-scale: 0.8;
    }

      .section-2022 .container-main{
        padding-left:3rem;
    }
    
    .section-2017 .container-main{

        align-items: start;
    }

    .section-2019 .three {

        text-align: end;
    }


    .tree-image {
       margin-right:20%;
   }


.watch-btn {
    width: 70%; /* Full width of parent */
}



}

@media (max-width: 1900px) {
    .section-2025 .three {
        text-align: end;
    }
}

@media (max-width: 1200px) {
    :root {
        --font-scale: 0.7;
    }

    .section-2016 .one {
        width: 40%;
    }

        .section-2016 .two {
        width: 100%;
    }
        .section-2016 .three {
        width: 30%;
    }
    
    .section-2022 .container-main{
        align-items: end;
    }
    .section-2022 .heading{
        
        position: absolute;
        bottom:-2rem;
        } 

    .section-2024 {
        position: relative;
        background: transparent;
        overflow: hidden;
        padding: 0; /* Remove padding to allow full height usage */
        min-height: 400px; /* Ensure minimum height */
        display: flex;
        align-items: flex-end; /* Align all content to bottom */
    }



    .section-2024 .one {
        width: 100%;
        display: flex;
        align-items: flex-end; /* Align image to bottom */
        justify-content: center; /* Center image horizontally if needed */
    }

    .section-2024 .one img {
        position: absolute;
        bottom: -2rem;
    }

    .section-2024 .two {
        width: 30%;
        text-align: center;
    }

    .section-2024 .three {
        width: 20%;
        padding: 0;
    }
    

     .section-2025 .three {
        width: 100%;
        text-align: end;
        padding-top:5rem;
    }

      .tree-image {
       margin-right:40%;
   }
}



@media (max-width: 992px) {
    :root {
        --font-scale: 0.6;
    }


    .section-start-heading {
        background: var(--dark-gray);
        height: auto;
        text-align: center;
    }

    .start-heading {
        width: 100%;
    }

    .section-init {
        display: none;
    }



    .section-2016 {
        height: auto;
        text-align: center;
    }

    .section-2016 .one {
        width: 100%;
    }

    .section-2016 .two {
        width: 100%;
    }

    .section-2016 .three {
        width: 100%;
    }


    .section-2017 {
        height: auto;
    }

     .section-2017 .container-main{
        justify-content: center;
        align-items: center;
    }

    .section-2017 .heading {
        text-align: center;

    }

    .section-2016 .container-main{
        justify-content: center;
    }

    .section-2019 {
        height: auto;
    }

    .section-2019 .one {
        width: 100%;
        display: none;

        text-align: center;

    }

    .section-2019 .two {
        width: 100%;
        display: none;
        text-align: center;

    }

    .section-2019 .three {
        width: 100%;
        text-align: center;
        padding-bottom: 0rem;

    }

    .section-2020 {
        height: auto;
        background-color: var(--dark-gray);
    }

    .section-2020 .one {
        width: 100%;
        text-align: center;
        display: none;

    }


    .section-2020 .two {
        width: 100%;
        text-align: center;
        display: none;

    }

    .section-2020 .three {
        width: 100%;
        text-align: center;
        padding-bottom: 0rem;
    }

    .section-2022 {
        background-color: var(--white);
        text-align: center;
        padding:0;

    }

    .section-2022 .container{
        align-items: center;
        padding:0;

    }

    .section-2022 .heading {
        color: var(--dark-gray);
        position: relative;

    }

    .section-2024 {
        background-color: var(--dark-gray);
    }

    .section-2024 .one {
        width: 100%;
    }

    .section-2024 .two {
        width: 100%;
        text-align: center;
    }

    .section-2024 .three {
        width: 100%;
        padding: 0;
    }

    .section-2025 {
        height: auto;
        background: var(--white);
    }



    .section-2025 .one {
        width: 100%;
        text-align: start;
        display: none;



    }

    .section-2025 .two {
        width: 100%;
        text-align: center;
        display: none;

    }

    .section-2025 .three {
        width: 100%;
        text-align: center;
    }

    .story-text-wrapper {
       bottom: -3rem;
       right: -140px;
   }
   .tree-image{
    margin-right: 0;
   }

   .story-header{
    justify-content: center;
   }


}

@media (max-width: 768px) {
    :root {
        --font-scale: 0.5;
    }
}

@media (max-width: 576px) {
    :root {
        --font-scale: 0.4;
    }
}

/* Base styles for get-in-touch-section */
.get-in-touch-section {
    background-color: var(--white);
    padding: 4rem 0;
    min-height: 50vh;
    width: 100%;
}

.get-in-touch-section .container-main{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Main Heading */
.main-heading {
    color: #2e2e2e;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    width: 100%; /* Add full width */
    text-align: center; /* Center the text */
}

/* Sub Heading */
.sub-heading {
    color: #2e2e2e;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    margin-left: 14rem;
    width: 100%; /* Add full width */
    text-align: center; /* Center the text */

}

/* Action Section */
.action-section {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Use flex-end instead of end */
    gap: 1rem;
    width: 100%; /* Make it full width */
    padding-right: 2rem; /* Add some padding from the edge */
}

/* Get in Touch Button */
.get-touch-btn {
     background-color: var(--primary-blue) !important;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 1rem;
    border-radius: 12px !important;
    border: none;
    text-transform: none;
    letter-spacing: 0.5px;
}

.get-touch-btn:hover {
    background-color: #357abd;
    color:#FFF;
    cursor: pointer;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
    transition:  0.2s ease;

}

.get-touch-btn:focus {
    background-color: var(--primary-blue);
}

/* Phone Number */
.phone-number {
    color: #4a90e2;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}

.phone-number:hover{
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-heading,
    .sub-heading {
        font-size: 2.5rem;
    }
    
    .sub-heading {
        margin-left: 0;
        text-align: center;
    }
    
    .action-section {
        justify-content: center;
        padding-right: 0;
    }


    .story-text-wrapper {
        align-items: start;
        left:150px;
    }
}


/* Mobile */
@media (max-width: 800px) {
    .get-in-touch-section {
        padding: 2rem 0;
        min-height: 40vh;
    }
    
    .get-in-touch-section .content-wrapper-last {
        padding: 1rem 0.5rem;
    }
    
    .main-heading {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .sub-heading {
        font-size: 2rem;
        margin-bottom: 1rem;
        margin-left: 0;
        text-align: center;
    }
    
    .action-section {
        margin-right: 0;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .get-touch-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
        width: 100%;
        max-width: 250px;
    }
    
    .phone-number {
        font-size: 0.9rem;
    }
}

/* Tablets */
@media (min-width: 801px) and (max-width: 1024px) {
    .get-in-touch-section {
        padding: 3rem 0;
        min-height: 45vh;
    }
    
    .get-in-touch-section .content-wrapper-last {
        padding: 1.5rem 1rem;
    }
    
    .main-heading {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }
    
    .sub-heading {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        margin-left: 8rem;
    }
    
    .action-section {
        margin-right: 4rem;
        gap: 1.2rem;
    }
    
    .get-touch-btn {
        font-size: 0.95rem;
        padding: 0.7rem 1.8rem;
    }
    
    .phone-number {
        font-size: 0.95rem;
    }
}

/* Small Monitors / Netbooks */
@media (min-width: 1025px) and (max-width: 1280px) {
    .get-in-touch-section {
        padding: 3.5rem 0;
        min-height: 47vh;
    }
    
    .get-in-touch-section .content-wrapper-last {
        padding: 1.8rem 1rem;
    }
    
    .main-heading {
        font-size: 3.2rem;
        margin-bottom: 1.8rem;
    }
    
    .sub-heading {
        font-size: 3.2rem;
        margin-bottom: 1.8rem;
        margin-left: 10rem;
    }
    
    .action-section {
        margin-right: 6rem;
        gap: 1.1rem;
    }
    
    .get-touch-btn {
        font-size: 0.98rem;
        padding: 0.72rem 1.9rem;
    }
    
    .phone-number {
        font-size: 0.98rem;
    }
}

/* Laptops */
@media (min-width: 1281px) and (max-width: 1366px) {
    .get-in-touch-section {
        padding: 3.8rem 0;
        min-height: 48vh;
    }
    
    .get-in-touch-section .content-wrapper-last {
        padding: 1.9rem 1rem;
    }
    
    .main-heading {
        font-size: 3rem;
        margin-bottom: 1.9rem;
    }
    
    .sub-heading {
        font-size: 3rem;
        margin-bottom: 1.9rem;
        margin-left: 12rem;
    }
    
    .action-section {
        margin-right: 7rem;
        gap: 1rem;
    }
    
    .get-touch-btn {
        font-size: 0.99rem;
        padding: 0.73rem 1.95rem;
    }
    
    .phone-number {
        font-size: 0.99rem;
    }
}

@media (min-width: 1367px) and (max-width: 1440px) {
    .get-in-touch-section {
        padding: 3.9rem 0;
        min-height: 49vh;
    }
    
    .get-in-touch-section .content-wrapper-last {
        padding: 1.95rem 1rem;
    }
    
    .main-heading {
        font-size: 3.7rem;
        margin-bottom: 1.95rem;
    }
    
    .sub-heading {
        font-size: 3.7rem;
        margin-bottom: 1.95rem;
        margin-left: 13rem;
    }
    
    .action-section {
        margin-right: 7.5rem;
        gap: 1rem;
    }
    
    .get-touch-btn {
        font-size: 1rem;
        padding: 0.74rem 1.98rem;
    }
    
    .phone-number {
        font-size: 1rem;
    }
}

@media (min-width: 1441px) and (max-width: 1536px) {
    .get-in-touch-section {
        padding: 4rem 0;
        min-height: 49.5vh;
    }
    
    .get-in-touch-section .content-wrapper-last {
        padding: 2rem 1rem;
    }
    
    .main-heading {
        font-size: 3.8rem;
        margin-bottom: 2rem;
    }
    
    .sub-heading {
        font-size: 3.8rem;
        margin-bottom: 2rem;
        margin-left: 13.5rem;
    }
    
    .action-section {
        margin-right: 7.7rem;
        gap: 1rem;
    }
    
    .get-touch-btn {
        font-size: 1rem;
        padding: 0.745rem 1.99rem;
    }
    
    .phone-number {
        font-size: 1rem;
    }
}

@media (min-width: 1537px) and (max-width: 1600px) {
    .get-in-touch-section {
        padding: 4rem 0;
        min-height: 50vh;
    }
    
    .get-in-touch-section .content-wrapper-last {
        padding: 2rem 1rem;
    }
    
    .main-heading {
        font-size: 3.9rem;
        margin-bottom: 2rem;
    }
    
    .sub-heading {
        font-size: 3.9rem;
        margin-bottom: 2rem;
        margin-left: 13.8rem;
    }
    
    .action-section {
        margin-right: 7.8rem;
        gap: 1rem;
    }
    
    .get-touch-btn {
        font-size: 1rem;
        padding: 0.75rem 2rem;
    }
    
    .phone-number {
        font-size: 1rem;
    }
}

@media (min-width: 1601px) and (max-width: 1680px) {
    .get-in-touch-section {
        padding: 4rem 0;
        min-height: 50vh;
    }
    
    .get-in-touch-section .content-wrapper-last {
        padding: 2rem 1rem;
    }
    
    .main-heading {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
    
    .sub-heading {
        font-size: 4rem;
        margin-bottom: 2rem;
        margin-left: 14rem;
    }
    
    .action-section {
        margin-right: 8rem;
        gap: 1rem;
    }
    
    .get-touch-btn {
        font-size: 1rem;
        padding: 0.75rem 2rem;
    }
    
    .phone-number {
        font-size: 1rem;
    }
}

/* Full HD and HD+ */
@media (min-width: 1681px) and (max-width: 1920px) {
    .get-in-touch-section {
        padding: 4rem 0;
        min-height: 50vh;
    }
    
    .get-in-touch-section .content-wrapper-last {
        padding: 2rem 1rem;
    }
    
    .main-heading {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
    
    .sub-heading {
        font-size: 4rem;
        margin-bottom: 2rem;
        margin-left: 14rem;
    }
    
    .action-section {
        margin-right: 8rem;
        gap: 1rem;
    }
    
    .get-touch-btn {
        font-size: 1rem;
        padding: 0.75rem 2rem;
    }
    
    .phone-number {
        font-size: 1rem;
    }
}
